mirror of https://git.ffmpeg.org/ffmpeg.git
Remove unused var (dead code leftover?).
Commited in SoC by Vitor Sessak on 2008-02-10 09:55:55 Originally committed as revision 12049 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ac8a116e87
commit
5b7c403353
|
@ -94,8 +94,6 @@ 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(link->dst, AV_LOG_INFO, "auto-inserting filter '%s'\n",
|
av_log(link->dst, AV_LOG_INFO, "auto-inserting filter '%s'\n",
|
||||||
filt->filter->name);
|
filt->filter->name);
|
||||||
|
|
||||||
|
@ -113,7 +111,7 @@ 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((formats = link->out_formats))
|
if(link->out_formats)
|
||||||
avfilter_formats_changeref(&link->out_formats,
|
avfilter_formats_changeref(&link->out_formats,
|
||||||
&filt->outputs[out]->out_formats);
|
&filt->outputs[out]->out_formats);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue