Commit 9ea97721 authored by Stefano Sabatini's avatar Stefano Sabatini

Make query_formats() increment the scaler_count after each scaler

insertion.

Originally committed as revision 21124 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 999c23a1
......@@ -132,7 +132,7 @@ static int query_formats(AVFilterGraph *graph, AVClass *log_ctx)
char scale_args[256];
/* couldn't merge format lists. auto-insert scale filter */
snprintf(inst_name, sizeof(inst_name), "auto-inserted scaler %d",
scaler_count);
scaler_count++);
scale =
avfilter_open(avfilter_get_by_name("scale"),inst_name);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment