summaryrefslogtreecommitdiffstats
path: root/libavfilter/defaults.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-05-10 07:58:11 +0200
committerAnton Khirnov <anton@khirnov.net>2012-05-15 06:53:22 +0200
commit4a1ac8c43fcf526b249c3409f1ba54755143a224 (patch)
tree1f2172bbbe39203734671fb31e802431ead9554d /libavfilter/defaults.c
parent4c64fed37ce0964c45d3699ccf5ac55b077a8291 (diff)
downloadffmpeg-streaming-4a1ac8c43fcf526b249c3409f1ba54755143a224.zip
ffmpeg-streaming-4a1ac8c43fcf526b249c3409f1ba54755143a224.tar.gz
lavfi: move buffer management function to a separate file.
Diffstat (limited to 'libavfilter/defaults.c')
-rw-r--r--libavfilter/defaults.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/libavfilter/defaults.c b/libavfilter/defaults.c
index 7230da0..ec61480 100644
--- a/libavfilter/defaults.c
+++ b/libavfilter/defaults.c
@@ -27,15 +27,6 @@
#include "internal.h"
#include "formats.h"
-/* TODO: buffer pool. see comment for avfilter_default_get_video_buffer() */
-void ff_avfilter_default_free_buffer(AVFilterBuffer *ptr)
-{
- if (ptr->extended_data != ptr->data)
- av_freep(&ptr->extended_data);
- av_free(ptr->data[0]);
- av_free(ptr);
-}
-
/**
* default config_link() implementation for output video links to simplify
* the implementation of one input one output video filters */
OpenPOWER on IntegriCloud