1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

Better instance name for parsed filters

Commited in SoC by Vitor Sessak on 2008-04-06 18:19:09

Originally committed as revision 13291 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak
2008-05-24 20:39:05 +00:00
parent ee75692a5f
commit 58a2d7a5c2

View File

@@ -47,9 +47,9 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
AVFilterContext *filt; AVFilterContext *filt;
AVFilter *filterdef; AVFilter *filterdef;
char tmp[20]; char inst_name[30];
snprintf(tmp, 20, "%d", index); snprintf(inst_name, sizeof(inst_name), "Parsed filter %d", index);
if(!(filterdef = avfilter_get_by_name(name))) { if(!(filterdef = avfilter_get_by_name(name))) {
av_log(&log_ctx, AV_LOG_ERROR, av_log(&log_ctx, AV_LOG_ERROR,
@@ -57,7 +57,7 @@ static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
return NULL; return NULL;
} }
if(!(filt = avfilter_open(filterdef, tmp))) { if(!(filt = avfilter_open(filterdef, inst_name))) {
av_log(&log_ctx, AV_LOG_ERROR, av_log(&log_ctx, AV_LOG_ERROR,
"error creating filter '%s'\n", name); "error creating filter '%s'\n", name);
return NULL; return NULL;