]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Remove some unwanted todos
authorvitor <vitor@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 4 Apr 2008 20:09:32 +0000 (20:09 +0000)
committervitor <vitor@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 4 Apr 2008 20:09:32 +0000 (20:09 +0000)
Commited in SoC by Vitor Sessak on 2008-04-03 16:32:37

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12748 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavfilter/avfiltergraph.c

index 5df3d2e423f5c72e7e8e6e2aea3b0997b85c759a..3f5724630fb7411f8747d5f797f58652c0a6e48a 100644 (file)
@@ -33,9 +33,6 @@ void avfilter_destroy_graph(AVFilterGraph *graph)
     av_freep(&graph->filters);
 }
 
-/**
- * @todo insert in sorted order
- */
 void avfilter_graph_add_filter(AVFilterGraph *graph, AVFilterContext *filter)
 {
     graph->filters = av_realloc(graph->filters,
@@ -43,9 +40,6 @@ void avfilter_graph_add_filter(AVFilterGraph *graph, AVFilterContext *filter)
     graph->filters[graph->filter_count - 1] = filter;
 }
 
-/*
- * @todo search intelligently, once we insert in order
- */
 AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name)
 {
     int i;