Commit 79b19ec0 authored by mru's avatar mru

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.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22314 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 630fa4ae
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment