diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-08 12:32:39 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-11-08 12:32:39 +0000 |
commit | 24de0edbd589b7cb0da51260073a1a28bb6a2619 (patch) | |
tree | f808dd5e52a5cd81742f76e2b722e4dde981792c /libavfilter/avfilter.h | |
parent | 7b3937360efd16ae87fa44fc4633a74913b5ac4d (diff) | |
download | ffmpeg-24de0edbd589b7cb0da51260073a1a28bb6a2619.tar.gz |
Rename avfilter_destroy() as avfilter_free().
The new name is shorter and more consistent with the FFmpeg API, and
sounds less evil.
Originally committed as revision 25707 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 544c2e93f3..18feadcb60 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -25,7 +25,7 @@ #include "libavutil/avutil.h" #define LIBAVFILTER_VERSION_MAJOR 1 -#define LIBAVFILTER_VERSION_MINOR 58 +#define LIBAVFILTER_VERSION_MINOR 59 #define LIBAVFILTER_VERSION_MICRO 0 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ @@ -786,11 +786,11 @@ int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *in int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque); /** - * Destroy a filter. + * Free a filter context. * - * @param filter the filter to destroy + * @param filter the filter to free */ -void avfilter_destroy(AVFilterContext *filter); +void avfilter_free(AVFilterContext *filter); /** * Insert a filter in the middle of an existing link. |