mirror of https://git.ffmpeg.org/ffmpeg.git
use filter name when graph parser add filters
Originally committed as revision 23147 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ed395eb421
commit
03c3bb5c5a
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue