diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-08 03:41:19 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-08 03:41:19 +0000 |
commit | 1250fcc862ac58097133977e363ecb5c41530e6d (patch) | |
tree | 6a83efcc9b691741533b271afe74e4b2b7b10aba | |
parent | de63bfecd211037e2bb4553653ddcec4a43d9d8f (diff) | |
download | ffmpeg-1250fcc862ac58097133977e363ecb5c41530e6d.tar.gz |
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
-rw-r--r-- | libavfilter/defaults.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/defaults.c b/libavfilter/defaults.c index 3484e0e6d5..85fdffba44 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); |