Rename avfilter_destroy_graph() to avfilter_graph_destroy(), for better

consistency with the rest of the API.

Originally committed as revision 17623 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini
2009-02-26 22:02:09 +00:00
parent f56995b4a6
commit d7dbe55823
3 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@
#include "avfilter.h"
#include "avfiltergraph.h"
void avfilter_destroy_graph(AVFilterGraph *graph)
void avfilter_graph_destroy(AVFilterGraph *graph)
{
for(; graph->filter_count > 0; graph->filter_count --)
avfilter_destroy(graph->filters[graph->filter_count - 1]);