Commit 4074ff90 authored by vitor's avatar vitor

Remove unused var (dead code leftover?).

Commited in SoC by Vitor Sessak on 2008-02-10 09:55:55


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12049 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 68fb1534
...@@ -94,8 +94,6 @@ int avfilter_link(AVFilterContext *src, unsigned srcpad, ...@@ -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, ...@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment