FFmpeg
Data Fields
AVCodec Struct Reference

AVCodec. More...

#include <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 attribute_deprecated AVRationalsupported_framerates
 Deprecated codec capabilities. More...
 
attribute_deprecated enum AVPixelFormatpix_fmts
 
const attribute_deprecated int * supported_samplerates
 
attribute_deprecated enum AVSampleFormatsample_fmts
 
const AVClasspriv_class
 AVClass for the private context. More...
 
const AVProfileprofiles
 array of recognized profiles, or NULL if unknown, array is terminated by {AV_PROFILE_UNKNOWN} More...
 
const char * wrapper_name
 Group name of the codec implementation. More...
 
const attribute_deprecated AVChannelLayoutch_layouts
 Array of supported channel layouts, terminated with a zeroed layout. More...
 

Detailed Description

AVCodec.

Examples
decode_audio.c, decode_filter_audio.c, decode_filter_video.c, decode_video.c, demux_decode.c, encode_audio.c, encode_video.c, extract_mvs.c, hw_decode.c, mux.c, qsv_decode.c, qsv_transcode.c, transcode.c, transcode_aac.c, vaapi_encode.c, and vaapi_transcode.c.

Definition at line 187 of file codec.h.

Field Documentation

◆ name

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.

Examples
transcode.c.

Definition at line 194 of file codec.h.

Referenced by avcodec_get_name(), avcodec_open2(), avcodec_string(), choose_pixel_fmt(), context_to_name(), cuvid_test_capabilities(), dec_open(), dec_thread_set_name(), dshow_cycle_formats(), enc_alloc(), find_codec(), find_codec_by_name(), hw_device_setup_for_decode(), hw_device_setup_for_encode(), main(), multiview_setup(), new_stream_video(), omx_encode_init(), open_output_file(), ost_add(), ost_bind_filter(), print_codecs(), print_codecs_for_id(), print_stream_maps(), set_encoder_id(), show_codecs(), and thread_set_name().

◆ long_name

const char* AVCodec::long_name

Descriptive name for the codec, meant to be more human readable than name.

You should use the NULL_IF_CONFIG_SMALL() macro to define it.

Definition at line 199 of file codec.h.

Referenced by print_codecs().

◆ type

enum AVMediaType AVCodec::type

◆ id

enum AVCodecID AVCodec::id

◆ capabilities

int AVCodec::capabilities

◆ max_lowres

uint8_t AVCodec::max_lowres

maximum value for lowres supported by the decoder

Definition at line 207 of file codec.h.

Referenced by ff_decode_preinit(), LLVMFuzzerTestOneInput(), and stream_component_open().

◆ supported_framerates

const attribute_deprecated AVRational* AVCodec::supported_framerates

Deprecated codec capabilities.

Deprecated:
use avcodec_get_supported_config()

Definition at line 213 of file codec.h.

Referenced by av_codec_init_static(), ff_default_get_supported_config(), and main().

◆ pix_fmts

attribute_deprecated enum AVPixelFormat* AVCodec::pix_fmts

◆ supported_samplerates

const attribute_deprecated int* AVCodec::supported_samplerates

◆ sample_fmts

attribute_deprecated enum AVSampleFormat* AVCodec::sample_fmts

◆ priv_class

const AVClass* AVCodec::priv_class

◆ profiles

const AVProfile* AVCodec::profiles

array of recognized profiles, or NULL if unknown, array is terminated by {AV_PROFILE_UNKNOWN}

Definition at line 222 of file codec.h.

Referenced by av_get_profile_name().

◆ wrapper_name

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>").

Definition at line 234 of file codec.h.

◆ ch_layouts

const attribute_deprecated AVChannelLayout* AVCodec::ch_layouts

Array of supported channel layouts, terminated with a zeroed layout.

Deprecated:
use avcodec_get_supported_config()
Examples
encode_audio.c.

Definition at line 241 of file codec.h.

Referenced by av_codec_init_static(), ff_default_get_supported_config(), main(), and select_channel_layout().


The documentation for this struct was generated from the following file: