[FFmpeg-cvslog] r22314 - trunk/libavfilter/defaults.c
mru
subversion
Mon Mar 8 04:41:19 CET 2010
Author: mru
Date: Mon Mar 8 04:41:19 2010
New Revision: 22314
Log:
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.
Modified:
trunk/libavfilter/defaults.c
Modified: trunk/libavfilter/defaults.c
==============================================================================
--- trunk/libavfilter/defaults.c Mon Mar 8 03:36:27 2010 (r22313)
+++ trunk/libavfilter/defaults.c Mon Mar 8 04:41:19 2010 (r22314)
@@ -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);
More information about the ffmpeg-cvslog
mailing list