mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge remote-tracking branch 'qatar/master'
* qatar/master: lavfi doxy: add buffer{src,sink}.h to the main lavfi doxy group Conflicts: libavfilter/buffersink.h libavfilter/buffersrc.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
baaa6d6785
@ -21,11 +21,18 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
|
* @ingroup lavfi_buffersink
|
||||||
* memory buffer sink API for audio and video
|
* memory buffer sink API for audio and video
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "avfilter.h"
|
#include "avfilter.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @defgroup lavfi_buffersink Buffer sink API
|
||||||
|
* @ingroup lavfi
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
#if FF_API_AVFILTERBUFFER
|
#if FF_API_AVFILTERBUFFER
|
||||||
/**
|
/**
|
||||||
* Get an audio/video buffer data from buffer_sink and put it in bufref.
|
* Get an audio/video buffer data from buffer_sink and put it in bufref.
|
||||||
@ -190,4 +197,8 @@ int av_buffersink_get_frame(AVFilterContext *ctx, AVFrame *frame);
|
|||||||
*/
|
*/
|
||||||
int av_buffersink_get_samples(AVFilterContext *ctx, AVFrame *frame, int nb_samples);
|
int av_buffersink_get_samples(AVFilterContext *ctx, AVFrame *frame, int nb_samples);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
#endif /* AVFILTER_BUFFERSINK_H */
|
#endif /* AVFILTER_BUFFERSINK_H */
|
||||||
|
@ -22,12 +22,19 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
|
* @ingroup lavfi_buffersrc
|
||||||
* Memory buffer source API.
|
* Memory buffer source API.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "libavcodec/avcodec.h"
|
#include "libavcodec/avcodec.h"
|
||||||
#include "avfilter.h"
|
#include "avfilter.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @defgroup lavfi_buffersrc Buffer source API
|
||||||
|
* @ingroup lavfi
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -146,4 +153,8 @@ int av_buffersrc_add_frame_flags(AVFilterContext *buffer_src,
|
|||||||
AVFrame *frame, int flags);
|
AVFrame *frame, int flags);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @}
|
||||||
|
*/
|
||||||
|
|
||||||
#endif /* AVFILTER_BUFFERSRC_H */
|
#endif /* AVFILTER_BUFFERSRC_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user