Revision 08f8b51f libavfilter/avfilter.c
libavfilter/avfilter.c | ||
---|---|---|
104 | 104 |
int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt, |
105 | 105 |
unsigned in, unsigned out) |
106 | 106 |
{ |
107 |
av_log(link->dst, AV_LOG_INFO, "auto-inserting filter '%s'\n", |
|
108 |
filt->name); |
|
107 |
av_log(link->dst, AV_LOG_INFO, "auto-inserting filter '%s' " |
|
108 |
"between the filter '%s' and the filter '%s'\n", |
|
109 |
filt->name, link->src->name, link->dst->name); |
|
109 | 110 |
|
110 | 111 |
link->dst->inputs[link->dstpad] = NULL; |
111 | 112 |
if(avfilter_link(filt, out, link->dst, link->dstpad)) { |
Also available in: Unified diff