diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-06-26 00:41:33 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-07-03 01:32:16 +0200 |
commit | bb6effe0598d1ab1114d3f8a230fda5f66e81b17 (patch) | |
tree | 9b9ad7981384c8c3e2aa200f5fd58b3ad3919b54 /libavfilter/avcodec.h | |
parent | ab7dbdc92c449d6c26cc164d149395bd753c0e53 (diff) | |
download | ffmpeg-bb6effe0598d1ab1114d3f8a230fda5f66e81b17.tar.gz |
lavfi: remove vsrc_buffer.h API
The vsrc_buffer.h is not installed since commit 0b3b95813576, so there is
no point into keeping it around.
The buffersrc.h API, which is more powerful, should be used instead.
Diffstat (limited to 'libavfilter/avcodec.h')
-rw-r--r-- | libavfilter/avcodec.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libavfilter/avcodec.h b/libavfilter/avcodec.h index b7965da102..867b014488 100644 --- a/libavfilter/avcodec.h +++ b/libavfilter/avcodec.h @@ -30,7 +30,6 @@ #include "libavcodec/avcodec.h" // AVFrame #include "avfilter.h" -#include "vsrc_buffer.h" /** * Copy the frame properties of src to dst, without copying the actual @@ -119,15 +118,4 @@ int avfilter_fill_frame_from_buffer_ref(AVFrame *frame, int av_buffersrc_add_frame(AVFilterContext *buffer_src, const AVFrame *frame, int flags); -/** - * Add frame data to buffer_src. - * - * @param buffer_src pointer to a buffer source context - * @param flags a combination of AV_VSRC_BUF_FLAG_* flags - * @return >= 0 in case of success, a negative AVERROR code in case of - * failure - */ -int av_vsrc_buffer_add_frame(AVFilterContext *buffer_src, - const AVFrame *frame, int flags); - #endif /* AVFILTER_AVCODEC_H */ |