FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Fields
AVHWAccel Struct Reference

#include <avcodec.h>

Data Fields

const char * name
 Name of the hardware accelerated codec. More...
 
enum AVMediaType type
 Type of codec implemented by the hardware accelerator. More...
 
enum AVCodecID id
 Codec implemented by the hardware accelerator. More...
 
enum AVPixelFormat pix_fmt
 Supported pixel format. More...
 
int capabilities
 Hardware accelerated codec capabilities. More...
 
struct AVHWAccelnext
 
int(* alloc_frame )(AVCodecContext *avctx, AVFrame *frame)
 Allocate a custom buffer. More...
 
int(* start_frame )(AVCodecContext *avctx, const uint8_t *buf, uint32_t buf_size)
 Called at the beginning of each frame or field picture. More...
 
int(* decode_slice )(AVCodecContext *avctx, const uint8_t *buf, uint32_t buf_size)
 Callback for each slice. More...
 
int(* end_frame )(AVCodecContext *avctx)
 Called at the end of each frame or field picture. More...
 
int frame_priv_data_size
 Size of per-frame hardware accelerator private data. More...
 
void(* decode_mb )(struct MpegEncContext *s)
 Called for every Macroblock in a slice. More...
 
int(* init )(AVCodecContext *avctx)
 Initialize the hwaccel private data. More...
 
int(* uninit )(AVCodecContext *avctx)
 Uninitialize the hwaccel private data. More...
 
int priv_data_size
 Size of the private data to allocate in AVCodecInternal.hwaccel_priv_data. More...
 
int caps_internal
 Internal hwaccel capabilities. More...
 

Detailed Description

Definition at line 3867 of file avcodec.h.

Field Documentation

const char* AVHWAccel::name

Name of the hardware accelerated codec.

The name is globally unique among encoders and among decoders (but an encoder and a decoder can share the same name).

Definition at line 3873 of file avcodec.h.

Referenced by setup_hwaccel().

enum AVMediaType AVHWAccel::type

Type of codec implemented by the hardware accelerator.

See AVMEDIA_TYPE_xxx

Definition at line 3880 of file avcodec.h.

enum AVCodecID AVHWAccel::id

Codec implemented by the hardware accelerator.

See AV_CODEC_ID_xxx

Definition at line 3887 of file avcodec.h.

Referenced by find_hwaccel().

enum AVPixelFormat AVHWAccel::pix_fmt

Supported pixel format.

Only hardware accelerated formats are supported here.

Definition at line 3894 of file avcodec.h.

Referenced by ff_dxva2_decode_init(), and find_hwaccel().

int AVHWAccel::capabilities

Hardware accelerated codec capabilities.

see AV_HWACCEL_CODEC_CAP_*

Definition at line 3900 of file avcodec.h.

Referenced by setup_hwaccel().

struct AVHWAccel* AVHWAccel::next

Definition at line 3909 of file avcodec.h.

Referenced by av_hwaccel_next(), and av_register_hwaccel().

int(* AVHWAccel::alloc_frame)(AVCodecContext *avctx, AVFrame *frame)

Allocate a custom buffer.

Definition at line 3914 of file avcodec.h.

Referenced by get_buffer_internal().

int(* AVHWAccel::start_frame)(AVCodecContext *avctx, const uint8_t *buf, uint32_t buf_size)

Called at the beginning of each frame or field picture.

Meaningful frame information (codec specific) is guaranteed to be parsed at this point. This function is mandatory.

Note that buf can be NULL along with buf_size set to 0. Otherwise, this means the whole frame is available at this point.

Parameters
avctxthe codec context
bufthe frame data buffer base
buf_sizethe size of the frame in bytes
Returns
zero if successful, a negative value otherwise

Definition at line 3930 of file avcodec.h.

Referenced by decode_nal_unit(), decode_nal_units(), ff_h263_decode_frame(), mpeg_field_start(), vc1_decode_frame(), and vp9_decode_frame().

int(* AVHWAccel::decode_slice)(AVCodecContext *avctx, const uint8_t *buf, uint32_t buf_size)

Callback for each slice.

Meaningful slice information (codec specific) is guaranteed to be parsed at this point. This function is mandatory. The only exception is XvMC, that works on MB level.

Parameters
avctxthe codec context
bufthe slice data buffer base
buf_sizethe size of the slice in bytes
Returns
zero if successful, a negative value otherwise

Definition at line 3944 of file avcodec.h.

Referenced by decode_nal_unit(), decode_nal_units(), decode_slice(), er_supported(), ff_er_add_slice(), mpeg_decode_slice(), vc1_decode_frame(), and vp9_decode_frame().

int(* AVHWAccel::end_frame)(AVCodecContext *avctx)

Called at the end of each frame or field picture.

The whole picture is parsed at this point and can now be sent to the hardware accelerator. This function is mandatory.

Parameters
avctxthe codec context
Returns
zero if successful, a negative value otherwise

Definition at line 3955 of file avcodec.h.

Referenced by ff_h263_decode_frame(), ff_h264_field_end(), hevc_decode_frame(), mpeg_field_start(), slice_end(), vc1_decode_frame(), and vp9_decode_frame().

int AVHWAccel::frame_priv_data_size

Size of per-frame hardware accelerator private data.

Private data is allocated with av_mallocz() before AVCodecContext.get_buffer() and deallocated after AVCodecContext.release_buffer().

Definition at line 3964 of file avcodec.h.

Referenced by alloc_frame(), alloc_frame_buffer(), alloc_picture(), and vp9_frame_alloc().

void(* AVHWAccel::decode_mb)(struct MpegEncContext *s)

Called for every Macroblock in a slice.

XvMC uses it to replace the ff_mpv_reconstruct_mb(). Instead of decoding to raw picture, MB parameters are stored in an array provided by the video driver.

Parameters
sthe mpeg context

Definition at line 3975 of file avcodec.h.

Referenced by ff_blockdsp_init_x86(), ff_er_frame_end(), is_intra_more_likely(), and mpv_reconstruct_mb_internal().

int(* AVHWAccel::init)(AVCodecContext *avctx)

Initialize the hwaccel private data.

This will be called from ff_get_format(), after hwaccel and hwaccel_context are set and the hwaccel private data in AVCodecInternal is allocated.

Definition at line 3984 of file avcodec.h.

Referenced by ff_vdpau_common_reinit(), and setup_hwaccel().

int(* AVHWAccel::uninit)(AVCodecContext *avctx)

Uninitialize the hwaccel private data.

This will be called from get_format() or avcodec_close(), after hwaccel and hwaccel_context are already uninitialized.

Definition at line 3992 of file avcodec.h.

Referenced by avcodec_close(), ff_get_format(), and ff_vdpau_common_reinit().

int AVHWAccel::priv_data_size

Size of the private data to allocate in AVCodecInternal.hwaccel_priv_data.

Definition at line 3998 of file avcodec.h.

Referenced by setup_hwaccel().

int AVHWAccel::caps_internal

Internal hwaccel capabilities.

Definition at line 4003 of file avcodec.h.

Referenced by ff_thread_finish_setup().


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