FFmpeg 7.1.1
|
#include <libavcodec/codec.h>
Data Fields | |
const char * | name |
Name of the codec implementation. | |
const char * | long_name |
Descriptive name for the codec, meant to be more human readable than name. | |
enum AVMediaType | type |
enum AVCodecID | id |
int | capabilities |
Codec capabilities. | |
uint8_t | max_lowres |
maximum value for lowres supported by the decoder | |
attribute_deprecated const AVRational * | supported_framerates |
Deprecated codec capabilities. | |
attribute_deprecated enum AVPixelFormat * | pix_fmts |
attribute_deprecated const int * | supported_samplerates |
attribute_deprecated enum AVSampleFormat * | sample_fmts |
const AVClass * | priv_class |
AVClass for the private context. | |
const AVProfile * | profiles |
array of recognized profiles, or NULL if unknown, array is terminated by {AV_PROFILE_UNKNOWN} | |
const char * | wrapper_name |
Group name of the codec implementation. | |
attribute_deprecated const AVChannelLayout * | ch_layouts |
Array of supported channel layouts, terminated with a zeroed layout. | |
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 194 of file codec.h.
Referenced by main(), and open_output_file().
const char* AVCodec::long_name |
enum AVMediaType AVCodec::type |
enum AVCodecID AVCodec::id |
Definition at line 201 of file codec.h.
Referenced by main().
int AVCodec::capabilities |
Codec capabilities.
see AV_CODEC_CAP_*
Definition at line 206 of file codec.h.
Referenced by open_audio().
uint8_t AVCodec::max_lowres |
attribute_deprecated const AVRational* AVCodec::supported_framerates |
Deprecated codec capabilities.
attribute_deprecated enum AVPixelFormat* AVCodec::pix_fmts |
attribute_deprecated const int* AVCodec::supported_samplerates |
attribute_deprecated enum AVSampleFormat* AVCodec::sample_fmts |
Definition at line 219 of file codec.h.
Referenced by check_sample_fmt(), open_output_file(), 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>").
attribute_deprecated const AVChannelLayout* AVCodec::ch_layouts |
Array of supported channel layouts, terminated with a zeroed layout.
Definition at line 241 of file codec.h.
Referenced by select_channel_layout().