You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
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
This commit is contained in:
@@ -33,9 +33,6 @@ void avfilter_destroy_graph(AVFilterGraph *graph)
|
|||||||
av_freep(&graph->filters);
|
av_freep(&graph->filters);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @todo insert in sorted order
|
|
||||||
*/
|
|
||||||
void avfilter_graph_add_filter(AVFilterGraph *graph, AVFilterContext *filter)
|
void avfilter_graph_add_filter(AVFilterGraph *graph, AVFilterContext *filter)
|
||||||
{
|
{
|
||||||
graph->filters = av_realloc(graph->filters,
|
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;
|
graph->filters[graph->filter_count - 1] = filter;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* @todo search intelligently, once we insert in order
|
|
||||||
*/
|
|
||||||
AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name)
|
AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
Reference in New Issue
Block a user