#include <string.h>
#include "avcodec.h"
#include "libavutil/atomic.h"
#include "libavutil/mem.h"
Go to the source code of this file.
|
AVBitStreamFilter * | av_bitstream_filter_next (const AVBitStreamFilter *f) |
| If f is NULL, return the first registered bitstream filter, if f is non-NULL, return the next registered bitstream filter after f, or NULL if f is the last one. More...
|
|
void | av_register_bitstream_filter (AVBitStreamFilter *bsf) |
| Register a bitstream filter. More...
|
|
AVBitStreamFilterContext * | av_bitstream_filter_init (const char *name) |
| Create and initialize a bitstream filter context given a bitstream filter name. More...
|
|
void | av_bitstream_filter_close (AVBitStreamFilterContext *bsfc) |
| Release bitstream filter context. More...
|
|
int | av_bitstream_filter_filter (AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int keyframe) |
| Filter bitstream. More...
|
|