mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
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:
@ -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]);
|
||||
|
Reference in New Issue
Block a user