|
|
@ -22,11 +22,18 @@ |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @file |
|
|
|
* @file |
|
|
|
|
|
|
|
* @ingroup lavfi_buffersrc |
|
|
|
* Memory buffer source API. |
|
|
|
* Memory buffer source API. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
#include "avfilter.h" |
|
|
|
#include "avfilter.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* @defgroup lavfi_buffersrc Buffer source API |
|
|
|
|
|
|
|
* @ingroup lavfi |
|
|
|
|
|
|
|
* @{ |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
#if FF_API_AVFILTERBUFFER |
|
|
|
#if FF_API_AVFILTERBUFFER |
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Add a buffer to a filtergraph. |
|
|
|
* Add a buffer to a filtergraph. |
|
|
@ -71,4 +78,8 @@ int av_buffersrc_write_frame(AVFilterContext *ctx, const AVFrame *frame); |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
int av_buffersrc_add_frame(AVFilterContext *ctx, AVFrame *frame); |
|
|
|
int av_buffersrc_add_frame(AVFilterContext *ctx, AVFrame *frame); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* @} |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
#endif /* AVFILTER_BUFFERSRC_H */ |
|
|
|
#endif /* AVFILTER_BUFFERSRC_H */ |
|
|
|