MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / AVBitStreamFilter

Class AVBitStreamFilter

libavcodec/avcodec.h:3810–3819  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3808
3809
3810typedef struct AVBitStreamFilter {
3811 const char *name;
3812 int priv_data_size;
3813 int (*filter)(AVBitStreamFilterContext *bsfc,
3814 AVCodecContext *avctx, const char *args,
3815 uint8_t **poutbuf, int *poutbuf_size,
3816 const uint8_t *buf, int buf_size, int keyframe);
3817 void (*close)(AVBitStreamFilterContext *bsfc);
3818 struct AVBitStreamFilter *next;
3819} AVBitStreamFilter;
3820
3821void av_register_bitstream_filter(AVBitStreamFilter *bsf);
3822AVBitStreamFilterContext *av_bitstream_filter_init(const char *name);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected