Libav
|
Go to the source code of this file.
Data Structures | |
struct | AVHWDeviceContext |
This struct aggregates all the (hardware/vendor-specific) "high-level" state, i.e. More... | |
struct | AVHWFramesContext |
This struct describes a set or pool of "hardware" frames (i.e. More... | |
struct | AVHWFramesConstraints |
This struct describes the constraints on hardware frames attached to a given device with a hardware-specific configuration. More... | |
Functions | |
AVBufferRef * | av_hwdevice_ctx_alloc (enum AVHWDeviceType type) |
Allocate an AVHWDeviceContext for a given pixel format. More... | |
int | av_hwdevice_ctx_init (AVBufferRef *ref) |
Finalize the device context before use. More... | |
int | av_hwdevice_ctx_create (AVBufferRef **device_ctx, enum AVHWDeviceType type, const char *device, AVDictionary *opts, int flags) |
Open a device of the specified type and create an AVHWDeviceContext for it. More... | |
AVBufferRef * | av_hwframe_ctx_alloc (AVBufferRef *device_ctx) |
Allocate an AVHWFramesContext tied to a given device context. More... | |
int | av_hwframe_ctx_init (AVBufferRef *ref) |
Finalize the context before use. More... | |
int | av_hwframe_get_buffer (AVBufferRef *hwframe_ctx, AVFrame *frame, int flags) |
Allocate a new frame attached to the given AVHWFramesContext. More... | |
int | av_hwframe_transfer_data (AVFrame *dst, const AVFrame *src, int flags) |
Copy data to or from a hw surface. More... | |
int | av_hwframe_transfer_get_formats (AVBufferRef *hwframe_ctx, enum AVHWFrameTransferDirection dir, enum AVPixelFormat **formats, int flags) |
Get a list of possible source or target formats usable in av_hwframe_transfer_data(). More... | |
void * | av_hwdevice_hwconfig_alloc (AVBufferRef *device_ctx) |
Allocate a HW-specific configuration structure for a given HW device. More... | |
AVHWFramesConstraints * | av_hwdevice_get_hwframe_constraints (AVBufferRef *ref, const void *hwconfig) |
Get the constraints on HW frames given a device and the HW-specific configuration to be used with that device. More... | |
void | av_hwframe_constraints_free (AVHWFramesConstraints **constraints) |
Free an AVHWFrameConstraints structure. More... | |
enum AVHWDeviceType |
Enumerator | |
---|---|
AV_HWDEVICE_TYPE_VDPAU | |
AV_HWDEVICE_TYPE_CUDA | |
AV_HWDEVICE_TYPE_VAAPI | |
AV_HWDEVICE_TYPE_DXVA2 | |
AV_HWDEVICE_TYPE_QSV |
Definition at line 27 of file hwcontext.h.
Enumerator | |
---|---|
AV_HWFRAME_TRANSFER_DIRECTION_FROM | Transfer the data from the queried hw frame. |
AV_HWFRAME_TRANSFER_DIRECTION_TO | Transfer the data to the queried hw frame. |
Definition at line 336 of file hwcontext.h.
AVBufferRef* av_hwdevice_ctx_alloc | ( | enum AVHWDeviceType | type | ) |
Allocate an AVHWDeviceContext for a given pixel format.
format | a hwaccel pixel format (AV_PIX_FMT_FLAG_HWACCEL must be set on the corresponding format descriptor) |
Definition at line 74 of file hwcontext.c.
Referenced by av_hwdevice_ctx_create(), cudaupload_init(), and qsv_init_child_ctx().
int av_hwdevice_ctx_init | ( | AVBufferRef * | ref | ) |
Finalize the device context before use.
This function must be called after the context is filled with all the required information and before it is used in any way.
ref | a reference to the AVHWDeviceContext |
Definition at line 132 of file hwcontext.c.
Referenced by av_hwdevice_ctx_create(), cudaupload_init(), and qsv_init_child_ctx().
int av_hwdevice_ctx_create | ( | AVBufferRef ** | device_ctx, |
enum AVHWDeviceType | type, | ||
const char * | device, | ||
AVDictionary * | opts, | ||
int | flags | ||
) |
Open a device of the specified type and create an AVHWDeviceContext for it.
This is a convenience function intended to cover the simple cases. Callers who need to fine-tune device creation/management should open the device manually and then wrap it in an AVHWDeviceContext using av_hwdevice_ctx_alloc()/av_hwdevice_ctx_init().
The returned context is already initialized and ready for use, the caller should not call av_hwdevice_ctx_init() on it. The user_opaque/free fields of the created AVHWDeviceContext are set by this function and should not be touched by the caller.
device_ctx | On success, a reference to the newly-created device context will be written here. The reference is owned by the caller and must be released with av_buffer_unref() when no longer needed. On failure, NULL will be written to this pointer. |
type | The type of the device to create. |
device | A type-specific string identifying the device to open. |
opts | A dictionary of additional (type-specific) options to use in opening the device. The dictionary remains owned by the caller. |
flags | currently unused |
Definition at line 463 of file hwcontext.c.
Referenced by dxva2_alloc(), qsv_device_create(), qsv_device_init(), vaapi_device_init(), and vdpau_alloc().
AVBufferRef* av_hwframe_ctx_alloc | ( | AVBufferRef * | device_ctx | ) |
Allocate an AVHWFramesContext tied to a given device context.
device_ctx | a reference to a AVHWDeviceContext. This function will make a new reference for internal use, the one passed to the function remains owned by the caller. |
Definition at line 177 of file hwcontext.c.
Referenced by cudaupload_config_output(), dxva2_create_decoder(), ff_vaapi_encode_init(), hwupload_config_output(), init_out_pool(), init_stage(), qsv_init(), qsv_init_child_ctx(), scale_vaapi_config_output(), vaapi_decode_init(), and vdpau_alloc().
int av_hwframe_ctx_init | ( | AVBufferRef * | ref | ) |
Finalize the context before use.
This function must be called after the context is filled with all the required information and before it is attached to any frames.
ref | a reference to the AVHWFramesContext |
Definition at line 263 of file hwcontext.c.
Referenced by cudaupload_config_output(), dxva2_create_decoder(), ff_vaapi_encode_init(), hwupload_config_output(), init_out_pool(), init_stage(), qsv_init(), qsv_init_child_ctx(), scale_vaapi_config_output(), vaapi_decode_init(), and vdpau_alloc().
int av_hwframe_get_buffer | ( | AVBufferRef * | hwframe_ctx, |
AVFrame * | frame, | ||
int | flags | ||
) |
Allocate a new frame attached to the given AVHWFramesContext.
hwframe_ctx | a reference to an AVHWFramesContext |
frame | an empty (freshly allocated or unreffed) frame to be filled with newly allocated buffers. |
flags | currently unused, should be set to zero |
Definition at line 394 of file hwcontext.c.
Referenced by avcodec_default_get_buffer2(), cudaupload_filter_frame(), dxva2_get_buffer(), hwframe_pool_prealloc(), hwupload_filter_frame(), init_stage(), nppscale_scale(), process_frame(), qsv_get_buffer(), qsvscale_filter_frame(), scale_vaapi_filter_frame(), vaapi_encode_issue(), vaapi_get_buffer(), and vdpau_get_buffer().
Copy data to or from a hw surface.
At least one of dst/src must have an AVHWFramesContext attached.
If src has an AVHWFramesContext attached, then the format of dst (if set) must use one of the formats returned by av_hwframe_transfer_get_formats(src, AV_HWFRAME_TRANSFER_DIRECTION_FROM). If dst has an AVHWFramesContext attached, then the format of src must use one of the formats returned by av_hwframe_transfer_get_formats(dst, AV_HWFRAME_TRANSFER_DIRECTION_TO)
dst may be "clean" (i.e. with data/buf pointers unset), in which case the data buffers will be allocated by this function using av_frame_get_buffer(). If dst->format is set, then this format will be used, otherwise (when dst->format is AV_PIX_FMT_NONE) the first acceptable format will be chosen.
The two frames must have matching allocated dimensions (i.e. equal to AVHWFramesContext.width/height), since not all device types support transferring a sub-rectangle of the whole surface. The display dimensions (i.e. AVFrame.width/height) may be smaller than the allocated dimensions, but also have to be equal for both frames. When the display dimensions are smaller than the allocated dimensions, the content of the padding in the destination frame is unspecified.
dst | the destination frame. dst is not touched on failure. |
src | the source frame. |
flags | currently unused, should be set to zero |
Definition at line 368 of file hwcontext.c.
Referenced by cudaupload_filter_frame(), dxva2_retrieve_data(), hwdownload_filter_frame(), hwupload_filter_frame(), transfer_data_alloc(), vaapi_retrieve_data(), and vdpau_retrieve_data().
int av_hwframe_transfer_get_formats | ( | AVBufferRef * | hwframe_ctx, |
enum AVHWFrameTransferDirection | dir, | ||
enum AVPixelFormat ** | formats, | ||
int | flags | ||
) |
Get a list of possible source or target formats usable in av_hwframe_transfer_data().
hwframe_ctx | the frame context to obtain the information for |
dir | the direction of the transfer |
formats | the pointer to the output format list will be written here. The list is terminated with AV_PIX_FMT_NONE and must be freed by the caller when no longer needed using av_free(). If this function returns successfully, the format list will have at least one item (not counting the terminator). On failure, the contents of this pointer are unspecified. |
flags | currently unused, should be set to zero |
Definition at line 310 of file hwcontext.c.
Referenced by hwdownload_config_output(), and transfer_data_alloc().
void* av_hwdevice_hwconfig_alloc | ( | AVBufferRef * | device_ctx | ) |
Allocate a HW-specific configuration structure for a given HW device.
After use, the user must free all members as required by the specific hardware structure being used, then free the structure itself with av_free().
device_ctx | a reference to the associated AVHWDeviceContext. |
Definition at line 418 of file hwcontext.c.
Referenced by ff_vaapi_encode_init(), scale_vaapi_config_output(), and vaapi_build_decoder_config().
AVHWFramesConstraints* av_hwdevice_get_hwframe_constraints | ( | AVBufferRef * | ref, |
const void * | hwconfig | ||
) |
Get the constraints on HW frames given a device and the HW-specific configuration to be used with that device.
If no HW-specific configuration is provided, returns the maximum possible capabilities of the device.
device_ctx | a reference to the associated AVHWDeviceContext. |
hwconfig | a filled HW-specific configuration structure, or NULL to return the maximum possible capabilities of the device. |
Definition at line 429 of file hwcontext.c.
Referenced by ff_vaapi_encode_init(), hwupload_query_formats(), scale_vaapi_config_output(), and vaapi_build_decoder_config().
void av_hwframe_constraints_free | ( | AVHWFramesConstraints ** | constraints | ) |
Free an AVHWFrameConstraints structure.
constraints | The (filled or unfilled) AVHWFrameConstraints structure. |
Definition at line 454 of file hwcontext.c.
Referenced by av_hwdevice_get_hwframe_constraints(), ff_vaapi_encode_init(), hwupload_query_formats(), scale_vaapi_config_output(), and vaapi_build_decoder_config().