|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef AVUTIL_HWCONTEXT_INTERNAL_H |
|
#define AVUTIL_HWCONTEXT_INTERNAL_H |
|
|
|
#include <stddef.h> |
|
|
|
#include "buffer.h" |
|
#include "hwcontext.h" |
|
#include "frame.h" |
|
#include "pixfmt.h" |
|
|
|
typedef struct HWContextType { |
|
enum AVHWDeviceType type; |
|
const char *name; |
|
|
|
|
|
|
|
|
|
|
|
const enum AVPixelFormat *pix_fmts; |
|
|
|
|
|
|
|
|
|
|
|
size_t device_hwctx_size; |
|
|
|
|
|
|
|
|
|
size_t device_priv_size; |
|
|
|
|
|
|
|
|
|
|
|
size_t device_hwconfig_size; |
|
|
|
|
|
|
|
|
|
|
|
size_t frames_hwctx_size; |
|
|
|
|
|
|
|
|
|
size_t frames_priv_size; |
|
|
|
int (*device_create)(AVHWDeviceContext *ctx, const char *device, |
|
AVDictionary *opts, int flags); |
|
int (*device_derive)(AVHWDeviceContext *dst_ctx, |
|
AVHWDeviceContext *src_ctx, |
|
AVDictionary *opts, int flags); |
|
|
|
int (*device_init)(AVHWDeviceContext *ctx); |
|
void (*device_uninit)(AVHWDeviceContext *ctx); |
|
|
|
int (*frames_get_constraints)(AVHWDeviceContext *ctx, |
|
const void *hwconfig, |
|
AVHWFramesConstraints *constraints); |
|
|
|
int (*frames_init)(AVHWFramesContext *ctx); |
|
void (*frames_uninit)(AVHWFramesContext *ctx); |
|
|
|
int (*frames_get_buffer)(AVHWFramesContext *ctx, AVFrame *frame); |
|
int (*transfer_get_formats)(AVHWFramesContext *ctx, |
|
enum AVHWFrameTransferDirection dir, |
|
enum AVPixelFormat **formats); |
|
int (*transfer_data_to)(AVHWFramesContext *ctx, AVFrame *dst, |
|
const AVFrame *src); |
|
int (*transfer_data_from)(AVHWFramesContext *ctx, AVFrame *dst, |
|
const AVFrame *src); |
|
|
|
int (*map_to)(AVHWFramesContext *ctx, AVFrame *dst, |
|
const AVFrame *src, int flags); |
|
int (*map_from)(AVHWFramesContext *ctx, AVFrame *dst, |
|
const AVFrame *src, int flags); |
|
|
|
int (*frames_derive_to)(AVHWFramesContext *dst_ctx, |
|
AVHWFramesContext *src_ctx, int flags); |
|
int (*frames_derive_from)(AVHWFramesContext *dst_ctx, |
|
AVHWFramesContext *src_ctx, int flags); |
|
} HWContextType; |
|
|
|
struct AVHWDeviceInternal { |
|
const HWContextType *hw_type; |
|
void *priv; |
|
|
|
|
|
|
|
|
|
|
|
AVBufferRef *source_device; |
|
}; |
|
|
|
struct AVHWFramesInternal { |
|
const HWContextType *hw_type; |
|
void *priv; |
|
|
|
AVBufferPool *pool_internal; |
|
|
|
|
|
|
|
|
|
|
|
AVBufferRef *source_frames; |
|
|
|
|
|
|
|
|
|
int source_allocation_map_flags; |
|
}; |
|
|
|
typedef struct HWMapDescriptor { |
|
|
|
|
|
|
|
AVFrame *source; |
|
|
|
|
|
|
|
|
|
|
|
AVBufferRef *hw_frames_ctx; |
|
|
|
|
|
|
|
void (*unmap)(AVHWFramesContext *ctx, |
|
struct HWMapDescriptor *hwmap); |
|
|
|
|
|
|
|
void *priv; |
|
} HWMapDescriptor; |
|
|
|
int ff_hwframe_map_create(AVBufferRef *hwframe_ref, |
|
AVFrame *dst, const AVFrame *src, |
|
void (*unmap)(AVHWFramesContext *ctx, |
|
HWMapDescriptor *hwmap), |
|
void *priv); |
|
|
|
|
|
|
|
|
|
|
|
int ff_hwframe_map_replace(AVFrame *dst, const AVFrame *src); |
|
|
|
extern const HWContextType ff_hwcontext_type_cuda; |
|
extern const HWContextType ff_hwcontext_type_d3d11va; |
|
extern const HWContextType ff_hwcontext_type_drm; |
|
extern const HWContextType ff_hwcontext_type_dxva2; |
|
extern const HWContextType ff_hwcontext_type_opencl; |
|
extern const HWContextType ff_hwcontext_type_qsv; |
|
extern const HWContextType ff_hwcontext_type_vaapi; |
|
extern const HWContextType ff_hwcontext_type_vdpau; |
|
extern const HWContextType ff_hwcontext_type_videotoolbox; |
|
extern const HWContextType ff_hwcontext_type_mediacodec; |
|
extern const HWContextType ff_hwcontext_type_vulkan; |
|
|
|
#endif |
|
|