diff options
author | Anatoly Nenashev <nenashev_as@mail.ru> | 2011-01-07 10:16:00 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2011-01-07 10:16:00 +0000 |
commit | ee77f986a2f7af4ae1fb0f07d302828e08a1a2f7 (patch) | |
tree | 3e70e5270458fef6669bf8c2b1c8857b825f2199 /ffmpeg.c | |
parent | 65cd45a88c4a657b4ae0c81b753bb0d065a4e25a (diff) | |
download | ffmpeg-ee77f986a2f7af4ae1fb0f07d302828e08a1a2f7.tar.gz |
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
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |