| 3808 | |
| 3809 | |
| 3810 | typedef 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 | |
| 3821 | void av_register_bitstream_filter(AVBitStreamFilter *bsf); |
| 3822 | AVBitStreamFilterContext *av_bitstream_filter_init(const char *name); |
nothing calls this directly
no outgoing calls
no test coverage detected