diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-05-05 09:26:52 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-05-06 16:18:10 +0200 |
commit | 317b2b7e92126a86e36e0f2bd3fa254625b2bb45 (patch) | |
tree | c4a5580f536c5901ea0a1b18ea8f39ee4949d2d1 /libavfilter/src_buffer.c | |
parent | 8ad1964ec5339684599c2b014ca18b777fd50c29 (diff) | |
download | ffmpeg-317b2b7e92126a86e36e0f2bd3fa254625b2bb45.tar.gz |
lavfi: remove av_buffersrc_buffer.
It is no longer used anywhere.
Furthermore, the header it was declared in was not installed,
so it can not be considered part of the public API.
Diffstat (limited to 'libavfilter/src_buffer.c')
-rw-r--r-- | libavfilter/src_buffer.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavfilter/src_buffer.c b/libavfilter/src_buffer.c index 15c30d6505..c6929f6486 100644 --- a/libavfilter/src_buffer.c +++ b/libavfilter/src_buffer.c @@ -294,12 +294,6 @@ int av_vsrc_buffer_add_video_buffer_ref(AVFilterContext *buffer_filter, return av_buffersrc_add_ref(buffer_filter, picref, 0); } -int av_buffersrc_buffer(AVFilterContext *s, AVFilterBufferRef *buf) -{ - return av_buffersrc_add_ref(s, buf, AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT | - AV_BUFFERSRC_FLAG_NO_COPY); -} - #if CONFIG_AVCODEC #include "avcodec.h" |