Data Fields

AVCodec Struct Reference

AVCodec. More...

#include <avcodec.h>

Data Fields

const char * name
 Name of the codec implementation.
enum AVMediaType type
enum CodecID id
int priv_data_size
int(* init )(AVCodecContext *)
int(* encode )(AVCodecContext *, uint8_t *buf, int buf_size, void *data)
int(* close )(AVCodecContext *)
int(* decode )(AVCodecContext *, void *outdata, int *outdata_size, AVPacket *avpkt)
int capabilities
 Codec capabilities.
struct AVCodecnext
void(* flush )(AVCodecContext *)
 Flush buffers.
const AVRationalsupported_framerates
 array of supported framerates, or NULL if any, array is terminated by {0,0}
enum PixelFormatpix_fmts
 array of supported pixel formats, or NULL if unknown, array is terminated by -1
const char * long_name
 Descriptive name for the codec, meant to be more human readable than name.
const int * supported_samplerates
 array of supported audio samplerates, or NULL if unknown, array is terminated by 0
enum SampleFormatsample_fmts
 array of supported sample formats, or NULL if unknown, array is terminated by -1
const int64_t * channel_layouts
 array of support channel layouts, or NULL if unknown. array is terminated by 0

Detailed Description

AVCodec.

Definition at line 2521 of file avcodec.h.


Field Documentation

const int64_t* AVCodec::channel_layouts

array of support channel layouts, or NULL if unknown. array is terminated by 0

Definition at line 2556 of file avcodec.h.

Definition at line 2534 of file avcodec.h.

Referenced by avcodec_close().

int(* AVCodec::decode)(AVCodecContext *, void *outdata, int *outdata_size, AVPacket *avpkt)
int(* AVCodec::encode)(AVCodecContext *, uint8_t *buf, int buf_size, void *data)

Flush buffers.

Will be called when seeking

Definition at line 2546 of file avcodec.h.

Referenced by avcodec_flush_buffers().

Definition at line 2532 of file avcodec.h.

Referenced by avcodec_open().

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 2553 of file avcodec.h.

Referenced by show_stream().

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 2528 of file avcodec.h.

Referenced by asf_write_header1(), avcodec_find_decoder_by_name(), avcodec_find_encoder_by_name(), avcodec_string(), compute_status(), context_to_name(), find_codec_or_die(), mov_write_video_tag(), sdp_parse_rtpmap(), show_codecs(), show_stream(), and write_frame().

array of supported pixel formats, or NULL if unknown, array is terminated by -1

Definition at line 2548 of file avcodec.h.

Referenced by choose_pixel_fmt(), decode_slice_header(), ff_h263_decode_init(), svq3_decode_init(), and vc1_decode_init().

Definition at line 2531 of file avcodec.h.

Referenced by avcodec_open().

array of supported sample formats, or NULL if unknown, array is terminated by -1

Definition at line 2555 of file avcodec.h.

Referenced by choose_sample_fmt(), pcm_decode_frame(), pcm_decode_init(), and pcm_encode_frame().

array of supported framerates, or NULL if any, array is terminated by {0,0}

Definition at line 2547 of file avcodec.h.

Referenced by new_video_stream().

array of supported audio samplerates, or NULL if unknown, array is terminated by 0

Definition at line 2554 of file avcodec.h.

Referenced by choose_sample_rate().

Definition at line 2529 of file avcodec.h.

Referenced by avcodec_open(), find_codec_or_die(), opt_audio_codec(), and opt_video_codec().


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