[FFmpeg-cvslog] r26252 - trunk/ffmpeg.c
cehoyos
subversion
Fri Jan 7 11:16:01 CET 2011
Author: cehoyos
Date: Fri Jan 7 11:16:00 2011
New Revision: 26252
Log:
Fix lowres > 0 with --enable-avfilter..
Patch by Anatoly Nenashev, anatoly d nenashev a ovsoft d ru
Modified:
trunk/ffmpeg.c
Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c Fri Jan 7 00:14:27 2011 (r26251)
+++ trunk/ffmpeg.c Fri Jan 7 11:16:00 2011 (r26252)
@@ -3274,6 +3274,8 @@ static void opt_input_file(const char *f
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;
More information about the ffmpeg-cvslog
mailing list