FFmpeg
|
#include <avcodec.h>
Data Fields | |
const char * | name |
enum AVCodecID * | codec_ids |
A list of codec ids supported by the filter, terminated by AV_CODEC_ID_NONE. More... | |
const AVClass * | priv_class |
A class for the private data, used to declare bitstream filter private AVOptions. More... | |
int | priv_data_size |
int(* | init )(AVBSFContext *ctx) |
int(* | filter )(AVBSFContext *ctx, AVPacket *pkt) |
void(* | close )(AVBSFContext *ctx) |
const char* AVBitStreamFilter::name |
Definition at line 5724 of file avcodec.h.
Referenced by av_bsf_get_by_name(), av_bsf_init(), av_interleaved_write_frame(), log_slave(), and show_bsfs().
enum AVCodecID* AVBitStreamFilter::codec_ids |
A list of codec ids supported by the filter, terminated by AV_CODEC_ID_NONE.
May be NULL, in that case the bitstream filter works with any codec id.
Definition at line 5731 of file avcodec.h.
Referenced by av_bsf_init().
const AVClass* AVBitStreamFilter::priv_class |
A class for the private data, used to declare bitstream filter private AVOptions.
This field is NULL for bitstream filters that do not declare any options.
If this field is non-NULL, the first member of the filter private data must be a pointer to AVClass, which will be set by libavcodec generic code to this class.
Definition at line 5742 of file avcodec.h.
Referenced by av_bitstream_filter_filter(), av_bsf_alloc(), av_bsf_free(), bsf_child_next(), and ff_stream_add_bitstream_filter().
int AVBitStreamFilter::priv_data_size |
Definition at line 5752 of file avcodec.h.
Referenced by av_bsf_alloc().
int(* AVBitStreamFilter::init)(AVBSFContext *ctx) |
Definition at line 5753 of file avcodec.h.
Referenced by av_bsf_init().
int(* AVBitStreamFilter::filter)(AVBSFContext *ctx, AVPacket *pkt) |
Definition at line 5754 of file avcodec.h.
Referenced by av_bsf_receive_packet().
void(* AVBitStreamFilter::close)(AVBSFContext *ctx) |
Definition at line 5755 of file avcodec.h.
Referenced by av_bsf_free().