[FFmpeg-cvslog] r12748 - trunk/libavfilter/avfiltergraph.c
vitor
subversion
Fri Apr 4 22:09:33 CEST 2008
Author: vitor
Date: Fri Apr 4 22:09:32 2008
New Revision: 12748
Log:
Remove some unwanted todos
Commited in SoC by Vitor Sessak on 2008-04-03 16:32:37
Modified:
trunk/libavfilter/avfiltergraph.c
Modified: trunk/libavfilter/avfiltergraph.c
==============================================================================
--- trunk/libavfilter/avfiltergraph.c (original)
+++ trunk/libavfilter/avfiltergraph.c Fri Apr 4 22:09:32 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-cvslog
mailing list