Skip to content
Snippets Groups Projects
Commit 03c3bb5c authored by Baptiste Coudurier's avatar Baptiste Coudurier
Browse files

use filter name when graph parser add filters

Originally committed as revision 23147 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent ed395eb4
No related branches found
No related tags found
No related merge requests found
......@@ -82,7 +82,7 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
AVFilter *filt;
char inst_name[30];
snprintf(inst_name, sizeof(inst_name), "Parsed filter %d", index);
snprintf(inst_name, sizeof(inst_name), "Filter %d %s", index, filt_name);
filt = avfilter_get_by_name(filt_name);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment