|
@@ -104,8 +104,9 @@ int avfilter_link(AVFilterContext *src, unsigned srcpad, |
|
|
int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt, |
|
|
int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt, |
|
|
unsigned in, unsigned out) |
|
|
unsigned in, unsigned out) |
|
|
{ |
|
|
{ |
|
|
av_log(link->dst, AV_LOG_INFO, "auto-inserting filter '%s'\n", |
|
|
|
|
|
filt->name); |
|
|
|
|
|
|
|
|
av_log(link->dst, AV_LOG_INFO, "auto-inserting filter '%s' " |
|
|
|
|
|
"between the filter '%s' and the filter '%s'\n", |
|
|
|
|
|
filt->name, link->src->name, link->dst->name); |
|
|
|
|
|
|
|
|
link->dst->inputs[link->dstpad] = NULL; |
|
|
link->dst->inputs[link->dstpad] = NULL; |
|
|
if(avfilter_link(filt, out, link->dst, link->dstpad)) { |
|
|
if(avfilter_link(filt, out, link->dst, link->dstpad)) { |
|
|