diff options
author | jstebbins <[email protected]> | 2015-06-01 21:00:26 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-06-01 21:00:26 +0000 |
commit | ec8e83d8e32ebd43a5a7c2c4f5f5ca637a3f6140 (patch) | |
tree | 9feea25e2e9a0e91fd59a26d204f015a74946c70 /libhb | |
parent | bece93e844c52a08623b1e8f89d7346069ad282a (diff) |
decomb: fix color distortion in last row of image
Prevent blending uninitialized lines of data into last row.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7261 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/decomb.c | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/libhb/decomb.c b/libhb/decomb.c index 60aa95f1a..bca344e21 100644 --- a/libhb/decomb.c +++ b/libhb/decomb.c @@ -2025,7 +2025,9 @@ static int hb_decomb_init( hb_filter_object_t * filter, // Make segment sizes an even number of lines int height = hb_image_height(init->pix_fmt, init->geometry.height, 0); - pv->segment_height[0] = (height / pv->cpu_count) & ~1; + // Each segment must begin on the even "parity" row. + // I.e. each segment of each plane must begin on an even row. + pv->segment_height[0] = (height / pv->cpu_count) & ~3; pv->segment_height[1] = hb_image_height(init->pix_fmt, pv->segment_height[0], 1); pv->segment_height[2] = hb_image_height(init->pix_fmt, pv->segment_height[0], 2); @@ -2093,8 +2095,8 @@ static int hb_decomb_init( hb_filter_object_t * filter, * Final segment */ thread_args->segment_height[pp] = - (hb_image_height(init->pix_fmt, init->geometry.height, pp) - - thread_args->segment_start[pp] + 3) & ~3; + ((hb_image_height(init->pix_fmt, init->geometry.height, pp) + + 3) & ~3) - thread_args->segment_start[pp]; } else { thread_args->segment_height[pp] = pv->segment_height[pp]; } @@ -2515,6 +2517,28 @@ static void hb_decomb_close( hb_filter_object_t * filter ) filter->private_data = NULL; } +// Fill rows above height with copy of last row to prevent color distortion +// during blending +static void fill_stride(hb_buffer_t * buf) +{ + int pp, ii; + + for (pp = 0; pp < 3; pp++) + { + uint8_t * src, * dst; + + src = buf->plane[pp].data + (buf->plane[pp].height - 1) * + buf->plane[pp].stride; + dst = buf->plane[pp].data + buf->plane[pp].height * + buf->plane[pp].stride; + for (ii = 0; ii < 3; ii++) + { + memcpy(dst, src, buf->plane[pp].stride); + dst += buf->plane[pp].stride; + } + } +} + static int hb_decomb_work( hb_filter_object_t * filter, hb_buffer_t ** buf_in, hb_buffer_t ** buf_out ) @@ -2532,6 +2556,7 @@ static int hb_decomb_work( hb_filter_object_t * filter, /* Store current frame in yadif cache */ *buf_in = NULL; + fill_stride(in); store_ref(pv, in); // yadif requires 3 buffers, prev, cur, and next. For the first |