Commit 718920d3 authored by vitor's avatar vitor

Remove some unwanted todos

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
parent 97bd6135
......@@ -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;
......
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