FFmpeg 5.1.6
|
This struct describes the properties of a single codec described by an AVCodecID. More...
#include <libavcodec/codec_desc.h>
Data Fields | |
enum AVCodecID | id |
enum AVMediaType | type |
const char * | name |
Name of the codec described by this descriptor. More... | |
const char * | long_name |
A more descriptive name for this codec. More... | |
int | props |
Codec properties, a combination of AV_CODEC_PROP_* flags. More... | |
const char *const * | mime_types |
MIME type(s) associated with the codec. More... | |
const struct AVProfile * | profiles |
If non-NULL, an array of profiles recognized for this codec. More... | |
This struct describes the properties of a single codec described by an AVCodecID.
Definition at line 38 of file codec_desc.h.
enum AVCodecID AVCodecDescriptor::id |
Definition at line 39 of file codec_desc.h.
enum AVMediaType AVCodecDescriptor::type |
Definition at line 40 of file codec_desc.h.
const char* AVCodecDescriptor::name |
Name of the codec described by this descriptor.
It is non-empty and unique for each codec descriptor. It should contain alphanumeric characters and '_' only.
Definition at line 46 of file codec_desc.h.
const char* AVCodecDescriptor::long_name |
int AVCodecDescriptor::props |
Codec properties, a combination of AV_CODEC_PROP_* flags.
Definition at line 54 of file codec_desc.h.
const char* const* AVCodecDescriptor::mime_types |
MIME type(s) associated with the codec.
May be NULL; if not, a NULL-terminated array of MIME types. The first item is always non-NULL and is the preferred MIME type.
Definition at line 60 of file codec_desc.h.
const struct AVProfile* AVCodecDescriptor::profiles |
If non-NULL, an array of profiles recognized for this codec.
Terminated with FF_PROFILE_UNKNOWN.
Definition at line 65 of file codec_desc.h.