diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-05-10 02:37:14 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-05-10 08:26:04 +0200 |
commit | 72fbc9685c08baae7ab9996642707eaab873b6f1 (patch) | |
tree | 0c426beddbea6dc7532c9c83d82835af6f898d7b | |
parent | ee9a4dff4ad76f989c3b5925f76770996506faf4 (diff) | |
download | ffmpeg-72fbc9685c08baae7ab9996642707eaab873b6f1.tar.gz |
avconv: use current syntax for the scale filter
-rw-r--r-- | avconv_filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/avconv_filter.c b/avconv_filter.c index 1d8044d70b..da8949c43f 100644 --- a/avconv_filter.c +++ b/avconv_filter.c @@ -246,7 +246,7 @@ static int configure_output_video_filter(FilterGraph *fg, OutputFilter *ofilter, char args[255]; AVFilterContext *filter; - snprintf(args, sizeof(args), "%d:%d:flags=0x%X", + snprintf(args, sizeof(args), "%d:%d:0x%X", codec->width, codec->height, (unsigned)ost->sws_flags); |