diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-26 22:02:09 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-26 22:02:09 +0000 |
commit | d7dbe55823d7b4741889463c0e73703a172bbffb (patch) | |
tree | 0e2debe527275aa133ec7f74d47b2ace1bb65927 /libavfilter/avfiltergraph.h | |
parent | f56995b4a69a3797043f2de078ec0eb85352a4b3 (diff) | |
download | ffmpeg-d7dbe55823d7b4741889463c0e73703a172bbffb.tar.gz |
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
Diffstat (limited to 'libavfilter/avfiltergraph.h')
-rw-r--r-- | libavfilter/avfiltergraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h index 88820ac7f4..fcc53ba018 100644 --- a/libavfilter/avfiltergraph.h +++ b/libavfilter/avfiltergraph.h @@ -64,6 +64,6 @@ int avfilter_graph_config_formats(AVFilterGraph *graphctx); /** * Free a graph and destroy its links. */ -void avfilter_destroy_graph(AVFilterGraph *graph); +void avfilter_graph_destroy(AVFilterGraph *graph); #endif /* AVFILTER_AVFILTERGRAPH_H */ |