提交 e3065c8b 编写于 作者: V Vitor Sessak

Need to be careful when dealing with references.

Commited in SoC by Bobby Bingham on 2007-12-20 23:38:49

Originally committed as revision 12029 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 07d0bba5
...@@ -99,6 +99,8 @@ int avfilter_link(AVFilterContext *src, unsigned srcpad, ...@@ -99,6 +99,8 @@ 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)
{ {
AVFilterFormats *formats;
av_log(NULL, AV_LOG_INFO, "auto-inserting filter '%s'\n", av_log(NULL, AV_LOG_INFO, "auto-inserting filter '%s'\n",
filt->filter->name); filt->filter->name);
...@@ -116,10 +118,9 @@ int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt, ...@@ -116,10 +118,9 @@ int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
/* if any information on supported colorspaces already exists on the /* if any information on supported colorspaces already exists on the
* link, we need to preserve that */ * link, we need to preserve that */
if(link->out_formats) { if((formats = link->out_formats))
filt->outputs[out]->out_formats = link->out_formats; avfilter_formats_changeref(&link->out_formats,
link->out_formats = NULL; &filt->outputs[out]->out_formats);
}
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册