[FFmpeg-cvslog] ffmpeg_filter: use frame dimensions instead of decoder context dimensions.
Michael Niedermayer
git at videolan.org
Wed Dec 19 21:52:19 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Dec 19 20:58:44 2012 +0100| [04a530f7d3fc15124c2f9bc261f319e0181701e6] | committer: Michael Niedermayer
ffmpeg_filter: use frame dimensions instead of decoder context dimensions.
avoids regression from the h264-mt frame size change code.
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=04a530f7d3fc15124c2f9bc261f319e0181701e6
---
ffmpeg_filter.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ffmpeg_filter.c b/ffmpeg_filter.c
index f550bd4..65c580c 100644
--- a/ffmpeg_filter.c
+++ b/ffmpeg_filter.c
@@ -583,8 +583,8 @@ static int configure_input_video_filter(FilterGraph *fg, InputFilter *ifilter,
av_bprint_init(&args, 0, 1);
av_bprintf(&args,
"video_size=%dx%d:pix_fmt=%d:time_base=%d/%d:"
- "pixel_aspect=%d/%d:sws_param=flags=%d", ist->st->codec->width,
- ist->st->codec->height, ist->st->codec->pix_fmt,
+ "pixel_aspect=%d/%d:sws_param=flags=%d", ist->resample_width,
+ ist->resample_height, ist->st->codec->pix_fmt,
tb.num, tb.den, sar.num, sar.den,
SWS_BILINEAR + ((ist->st->codec->flags&CODEC_FLAG_BITEXACT) ? SWS_BITEXACT:0));
if (fr.num && fr.den)
More information about the ffmpeg-cvslog
mailing list