Commit ee77f986 authored by Anatoly Nenashev's avatar Anatoly Nenashev Committed by Carl Eugen Hoyos

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
parent 65cd45a8
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment