diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-19 12:01:25 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-19 23:15:34 +0200 |
commit | c78a85adf4a153914233e02b4d44f9414bc579d7 (patch) | |
tree | 6e1375a7780c5f80e63b464ab45a8b00433a0c0b /libavfilter | |
parent | c000a9f78390b71812c7ee5187bbccc3c2d79b1e (diff) | |
download | ffmpeg-c78a85adf4a153914233e02b4d44f9414bc579d7.tar.gz |
vsrc_buffer: document av_vsrc_buffer_add_video_buffer_ref()
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vsrc_buffer.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libavfilter/vsrc_buffer.h b/libavfilter/vsrc_buffer.h index 34fec0e61a..5307eadb70 100644 --- a/libavfilter/vsrc_buffer.h +++ b/libavfilter/vsrc_buffer.h @@ -29,6 +29,13 @@ #include "avfilter.h" -int av_vsrc_buffer_add_video_buffer_ref(AVFilterContext *buffer_filter, AVFilterBufferRef *picref); +/** + * Add video buffer data in picref to buffer_src. + * + * @param buffer_src pointer to a buffer source context + * @return >= 0 in case of success, a negative AVERROR code in case of + * failure + */ +int av_vsrc_buffer_add_video_buffer_ref(AVFilterContext *buffer_src, AVFilterBufferRef *picref); #endif /* AVFILTER_VSRC_BUFFER_H */ |