]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/graphparser.c
vf_crop: remove mathematical constants now redundant.
[ffmpeg] / libavfilter / graphparser.c
index f38c6cfcae8c96930e48f43f0453d139ba219656..bd3022e0350fafd7de756581bb6316479764c8e6 100644 (file)
@@ -99,7 +99,7 @@ static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int ind
     char tmp_args[256];
     int ret;
 
-    snprintf(inst_name, sizeof(inst_name), "Parsed filter %d %s", index, filt_name);
+    snprintf(inst_name, sizeof(inst_name), "Parsed_%s_%d", filt_name, index);
 
     filt = avfilter_get_by_name(filt_name);