[SCM] libav/experimental: avfilter: make avfilter_default_free_video_buffer() static

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:03:31 UTC 2013


The following commit has been merged in the experimental branch:
commit 1250fcc862ac58097133977e363ecb5c41530e6d
Author: Måns Rullgård <mans at mansr.com>
Date:   Mon Mar 8 03:41:19 2010 +0000

    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

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);

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list