diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:09:32 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:09:32 +0000 |
commit | 2ad720679c4a0b4b16cef25d3913f45b674cf7e3 (patch) | |
tree | f7821d38d63eedc697ae360c6ec9361441cc6135 /libavfilter | |
parent | 10bff7139a313c1b794da63e7cd6c7ee47b9b808 (diff) | |
download | ffmpeg-2ad720679c4a0b4b16cef25d3913f45b674cf7e3.tar.gz |
Remove some unwanted todos
Commited in SoC by Vitor Sessak on 2008-04-03 16:32:37
Originally committed as revision 12748 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfiltergraph.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 5df3d2e423..3f5724630f 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -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; |