FFmpeg
|
#include <bsf.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... | |
const char* AVBitStreamFilter::name |
Definition at line 112 of file bsf.h.
Referenced by bsf_list_item_name(), LLVMFuzzerTestOneInput(), log_slave(), show_bsfs(), show_help_bsf(), and write_packets_from_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 119 of file bsf.h.
Referenced by extract_extradata_support(), LLVMFuzzerTestOneInput(), and show_help_bsf().
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 130 of file bsf.h.
Referenced by ff_stream_add_bitstream_filter(), log_slave(), and show_help_bsf().