From ee77f986a2f7af4ae1fb0f07d302828e08a1a2f7 Mon Sep 17 00:00:00 2001 From: Anatoly Nenashev Date: Fri, 7 Jan 2011 10:16:00 +0000 Subject: [PATCH] Fix lowres > 0 with --enable-avfilter.. Fixes issue 2072 and issue 2421. Patch by Anatoly Nenashev, anatoly d nenashev a ovsoft d ru Originally committed as revision 26252 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ffmpeg.c b/ffmpeg.c index 7e2d82afd8..08a50d541b 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -3274,6 +3274,8 @@ static void opt_input_file(const char *filename) dec->flags |= CODEC_FLAG_EMU_EDGE; frame_height >>= dec->lowres; frame_width >>= dec->lowres; + dec->height = frame_height; + dec->width = frame_width; } if(me_threshold) dec->debug |= FF_DEBUG_MV;