[FFmpeg-cvslog] mpegvideo_enc: Fix chroma edge size
Michael Niedermayer
git at videolan.org
Mon May 14 12:28:28 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon May 14 11:26:44 2012 +0200| [4991cbafaf0383a936ebc08da38e2339f3928ce5] | committer: Michael Niedermayer
mpegvideo_enc: Fix chroma edge size
Fixes ticket1303
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4991cbafaf0383a936ebc08da38e2339f3928ce5
---
libavcodec/mpegvideo_enc.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c
index 6313168..12c507a 100644
--- a/libavcodec/mpegvideo_enc.c
+++ b/libavcodec/mpegvideo_enc.c
@@ -1827,11 +1827,11 @@ static av_always_inline void encode_mb_internal(MpegEncContext *s,
ptr_y = ebuf;
s->dsp.emulated_edge_mc(ebuf + 18 * wrap_y, ptr_cb, wrap_c, 8,
mb_block_height, mb_x * 8, mb_y * 8,
- s->width >> 1, s->height >> 1);
+ (s->width+1) >> 1, (s->height+1) >> 1);
ptr_cb = ebuf + 18 * wrap_y;
s->dsp.emulated_edge_mc(ebuf + 18 * wrap_y + 8, ptr_cr, wrap_c, 8,
mb_block_height, mb_x * 8, mb_y * 8,
- s->width >> 1, s->height >> 1);
+ (s->width+1) >> 1, (s->height+1) >> 1);
ptr_cr = ebuf + 18 * wrap_y + 8;
}
More information about the ffmpeg-cvslog
mailing list