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;
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to