You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
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:
@@ -82,7 +82,7 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
|
|||||||
AVFilter *filt;
|
AVFilter *filt;
|
||||||
char inst_name[30];
|
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);
|
filt = avfilter_get_by_name(filt_name);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user