FFmpeg 5.1.6
|
#include <libavcodec/codec.h>
Data Fields | |
const char * | name |
Name of the codec implementation. More... | |
const char * | long_name |
Descriptive name for the codec, meant to be more human readable than name. More... | |
enum AVMediaType | type |
enum AVCodecID | id |
int | capabilities |
Codec capabilities. More... | |
uint8_t | max_lowres |
maximum value for lowres supported by the decoder More... | |
const AVRational * | supported_framerates |
array of supported framerates, or NULL if any, array is terminated by {0,0} More... | |
enum AVPixelFormat * | pix_fmts |
array of supported pixel formats, or NULL if unknown, array is terminated by -1 More... | |
const int * | supported_samplerates |
array of supported audio samplerates, or NULL if unknown, array is terminated by 0 More... | |
enum AVSampleFormat * | sample_fmts |
array of supported sample formats, or NULL if unknown, array is terminated by -1 More... | |
const AVClass * | priv_class |
AVClass for the private context. More... | |
const AVProfile * | profiles |
array of recognized profiles, or NULL if unknown, array is terminated by {FF_PROFILE_UNKNOWN} More... | |
const char * | wrapper_name |
Group name of the codec implementation. More... | |
const AVChannelLayout * | ch_layouts |
Array of supported channel layouts, terminated with a zeroed layout. More... | |
const char* AVCodec::name |
Name of the codec implementation.
The name is globally unique among encoders and among decoders (but an encoder and a decoder can share the same name). This is the primary way to find a codec from the user perspective.
Definition at line 203 of file codec.h.
Referenced by main().
const char* AVCodec::long_name |
enum AVMediaType AVCodec::type |
enum AVCodecID AVCodec::id |
Definition at line 210 of file codec.h.
Referenced by main().
int AVCodec::capabilities |
Codec capabilities.
see AV_CODEC_CAP_*
Definition at line 215 of file codec.h.
Referenced by open_audio().
uint8_t AVCodec::max_lowres |
const AVRational* AVCodec::supported_framerates |
enum AVPixelFormat* AVCodec::pix_fmts |
array of supported pixel formats, or NULL if unknown, array is terminated by -1
Definition at line 218 of file codec.h.
Referenced by open_output_file().
const int* AVCodec::supported_samplerates |
array of supported audio samplerates, or NULL if unknown, array is terminated by 0
Definition at line 219 of file codec.h.
Referenced by select_sample_rate().
enum AVSampleFormat* AVCodec::sample_fmts |
array of supported sample formats, or NULL if unknown, array is terminated by -1
Definition at line 220 of file codec.h.
Referenced by check_sample_fmt(), and open_output_file().
const AVClass* AVCodec::priv_class |
const AVProfile* AVCodec::profiles |
const char* AVCodec::wrapper_name |
Group name of the codec implementation.
This is a short symbolic name of the wrapper backing this codec. A wrapper uses some kind of external implementation for the codec, such as an external library, or a codec implementation provided by the OS or the hardware. If this field is NULL, this is a builtin, libavcodec native codec. If non-NULL, this will be the suffix in AVCodec.name in most cases (usually AVCodec.name will be of the form "<codec_name>_<wrapper_name>").
const AVChannelLayout* AVCodec::ch_layouts |
Array of supported channel layouts, terminated with a zeroed layout.
Definition at line 246 of file codec.h.
Referenced by select_channel_layout().