Browse Source

use filter name when graph parser add filters

Originally committed as revision 23147 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Baptiste Coudurier 16 years ago
parent
commit
03c3bb5c5a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/graphparser.c

+ 1
- 1
libavfilter/graphparser.c View File

@@ -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);




Loading…
Cancel
Save