[SCM] libav/experimental: fix different UMV handling for mpeg4 vs. h263 - patch by Michael Niedermayer <michaelni at gmx.at>
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 15:30:46 UTC 2013
The following commit has been merged in the experimental branch:
commit ef093645ef508f755ac80ef62cf774e376fe1eb8
Author: Michael Niedermayer <michaelni at gmx.at>
Date: Thu Jan 10 00:46:40 2002 +0000
fix different UMV handling for mpeg4 vs. h263 - patch by Michael Niedermayer <michaelni at gmx.at>
Originally committed as revision 249 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index ec16e78..edd7872 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -403,15 +403,16 @@ void MPV_frame_end(MpegEncContext *s)
{
/* draw edge for correct motion prediction if outside */
if (s->pict_type != B_TYPE) {
-#if 1
+ if(s->avctx->codec->id!=CODEC_ID_MPEG4){
draw_edges(s->current_picture[0], s->linesize, s->mb_width*16, s->mb_height*16, EDGE_WIDTH);
draw_edges(s->current_picture[1], s->linesize/2, s->mb_width*8, s->mb_height*8, EDGE_WIDTH/2);
draw_edges(s->current_picture[2], s->linesize/2, s->mb_width*8, s->mb_height*8, EDGE_WIDTH/2);
-#else
+ }else{
+ /* OpenDivx, but i dunno how to distinguish it from mpeg4 */
draw_edges(s->current_picture[0], s->linesize, s->width, s->height, EDGE_WIDTH);
draw_edges(s->current_picture[1], s->linesize/2, s->width/2, s->height/2, EDGE_WIDTH/2);
draw_edges(s->current_picture[2], s->linesize/2, s->width/2, s->height/2, EDGE_WIDTH/2);
-#endif
+ }
}
}
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list