mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
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,
|
||||
unsigned in, unsigned out)
|
||||
{
|
||||
AVFilterFormats *formats;
|
||||
|
||||
av_log(link->dst, AV_LOG_INFO, "auto-inserting filter '%s'\n",
|
||||
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
|
||||
* link, we need to preserve that */
|
||||
if((formats = link->out_formats))
|
||||
if(link->out_formats)
|
||||
avfilter_formats_changeref(&link->out_formats,
|
||||
&filt->outputs[out]->out_formats);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user