Commit bd4fbea3 authored by vitor's avatar vitor

Remove unused check

Commited in SoC by Vitor Sessak on 2008-04-03 16:38:51


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12750 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6cae22ad
...@@ -44,9 +44,6 @@ AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name) ...@@ -44,9 +44,6 @@ AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name)
{ {
int i; int i;
if(!name)
return NULL;
for(i = 0; i < graph->filter_count; i ++) for(i = 0; i < graph->filter_count; i ++)
if(graph->filters[i]->name && !strcmp(name, graph->filters[i]->name)) if(graph->filters[i]->name && !strcmp(name, graph->filters[i]->name))
return graph->filters[i]; return graph->filters[i];
......
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