From 1250fcc862ac58097133977e363ecb5c41530e6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Mon, 8 Mar 2010 03:41:19 +0000 Subject: avfilter: make avfilter_default_free_video_buffer() static This function is not referenced outside this file and has no prototype. Feel free to flame if this is wrong. Originally committed as revision 22314 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/defaults.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter') diff --git a/libavfilter/defaults.c b/libavfilter/defaults.c index 3484e0e..85fdffb 100644 --- a/libavfilter/defaults.c +++ b/libavfilter/defaults.c @@ -23,7 +23,7 @@ #include "avfilter.h" /* TODO: buffer pool. see comment for avfilter_default_get_video_buffer() */ -void avfilter_default_free_video_buffer(AVFilterPic *pic) +static void avfilter_default_free_video_buffer(AVFilterPic *pic) { av_free(pic->data[0]); av_free(pic); -- cgit v1.1