summaryrefslogtreecommitdiff
path: root/avconv_filter.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2013-05-10 02:37:14 +0200
committerLuca Barbato <lu_zero@gentoo.org>2013-05-10 08:26:04 +0200
commit72fbc9685c08baae7ab9996642707eaab873b6f1 (patch)
tree0c426beddbea6dc7532c9c83d82835af6f898d7b /avconv_filter.c
parentee9a4dff4ad76f989c3b5925f76770996506faf4 (diff)
avconv: use current syntax for the scale filter
Diffstat (limited to 'avconv_filter.c')
-rw-r--r--avconv_filter.c2
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);