From 24de0edbd589b7cb0da51260073a1a28bb6a2619 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Mon, 8 Nov 2010 12:32:39 +0000 Subject: 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 --- libavfilter/graphparser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/graphparser.c') diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 1bce3bcbb5..4266e8134d 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -118,7 +118,7 @@ static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int ind } if ((ret = avfilter_graph_add_filter(ctx, *filt_ctx)) < 0) { - avfilter_destroy(*filt_ctx); + avfilter_free(*filt_ctx); return ret; } -- cgit v1.2.3