[FFmpeg-soc] [soc]: r2083 - libavfilter/avfiltergraph.c
vitor
subversion at mplayerhq.hu
Thu Apr 3 18:32:38 CEST 2008
Author: vitor
Date: Thu Apr 3 18:32:37 2008
New Revision: 2083
Log:
Remove some unwanted todos
Modified:
libavfilter/avfiltergraph.c
Modified: libavfilter/avfiltergraph.c
==============================================================================
--- libavfilter/avfiltergraph.c (original)
+++ libavfilter/avfiltergraph.c Thu Apr 3 18:32:37 2008
@@ -33,9 +33,6 @@ void avfilter_destroy_graph(AVFilterGrap
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(AVFilterG
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;
More information about the FFmpeg-soc
mailing list