FFmpeg
Loading...
Searching...
No Matches
hwcontext_internal.h
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#ifndef AVUTIL_HWCONTEXT_INTERNAL_H
20#define AVUTIL_HWCONTEXT_INTERNAL_H
21
22#include <stddef.h>
23
24#include "buffer.h"
25#include "hwcontext.h"
26#include "frame.h"
27#include "pixfmt.h"
28
29typedef struct HWContextType {
31 const char *name;
32
33 /**
34 * An array of pixel formats supported by the AVHWFramesContext instances
35 * Terminated by AV_PIX_FMT_NONE.
36 */
38
39 /**
40 * size of the public hardware-specific context,
41 * i.e. AVHWDeviceContext.hwctx
42 */
44
45 /**
46 * Size of the hardware-specific device configuration.
47 * (Used to query hwframe constraints.)
48 */
50
51 /**
52 * size of the public frame pool hardware-specific context,
53 * i.e. AVHWFramesContext.hwctx
54 */
56
57 int (*device_create)(AVHWDeviceContext *ctx, const char *device,
58 AVDictionary *opts, int flags);
60 AVHWDeviceContext *src_ctx,
61 AVDictionary *opts, int flags);
62
65
67 const void *hwconfig,
68 AVHWFramesConstraints *constraints);
69
72
76 enum AVPixelFormat **formats);
78 const AVFrame *src);
80 const AVFrame *src);
81
83 const AVFrame *src, int flags);
85 const AVFrame *src, int flags);
86
88 AVHWFramesContext *src_ctx, int flags);
90 AVHWFramesContext *src_ctx, int flags);
92
93typedef struct FFHWFramesContext {
94 /**
95 * The public AVHWFramesContext. See hwcontext.h for it.
96 */
98
100
102
103 /**
104 * For a derived context, a reference to the original frames
105 * context it was derived from.
106 */
108 /**
109 * Flags to apply to the mapping from the source to the derived
110 * frame context when trying to allocate in the derived context.
111 */
114
119
120typedef struct HWMapDescriptor {
121 /**
122 * A reference to the original source of the mapping.
123 */
125 /**
126 * A reference to the hardware frames context in which this
127 * mapping was made. May be the same as source->hw_frames_ctx,
128 * but need not be.
129 */
131 /**
132 * Unmap function.
133 */
135 struct HWMapDescriptor *hwmap);
136 /**
137 * Hardware-specific private data associated with the mapping.
138 */
139 void *priv;
141
142int ff_hwframe_map_create(AVBufferRef *hwframe_ref,
143 AVFrame *dst, const AVFrame *src,
144 void (*unmap)(AVHWFramesContext *ctx,
145 HWMapDescriptor *hwmap),
146 void *priv);
147
148/**
149 * Replace the current hwmap of dst with the one from src, used for indirect
150 * mappings like VAAPI->(DRM)->OpenCL/Vulkan where a direct interop is missing
151 */
153
168
169#endif /* AVUTIL_HWCONTEXT_INTERNAL_H */
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static AVFormatContext * ctx
static AVDictionary * opts
refcounted data buffer API
#define flags(name, subs,...)
Definition cbs_h264.c:74
static AVFrame * frame
reference-counted frame API
AVHWFrameTransferDirection
Definition hwcontext.h:406
AVHWDeviceType
Definition hwcontext.h:27
const HWContextType ff_hwcontext_type_amf
const HWContextType ff_hwcontext_type_cuda
const HWContextType ff_hwcontext_type_d3d11va
const HWContextType ff_hwcontext_type_d3d12va
const HWContextType ff_hwcontext_type_drm
const HWContextType ff_hwcontext_type_dxva2
const HWContextType ff_hwcontext_type_opencl
static FFHWFramesContext * ffhwframesctx(AVHWFramesContext *ctx)
const HWContextType ff_hwcontext_type_vaapi
const HWContextType ff_hwcontext_type_vdpau
const HWContextType ff_hwcontext_type_qsv
int ff_hwframe_map_create(AVBufferRef *hwframe_ref, AVFrame *dst, const AVFrame *src, void(*unmap)(AVHWFramesContext *ctx, HWMapDescriptor *hwmap), void *priv)
Definition hwcontext.c:741
const HWContextType ff_hwcontext_type_oh
const HWContextType ff_hwcontext_type_videotoolbox
const HWContextType ff_hwcontext_type_vulkan
const HWContextType ff_hwcontext_type_mediacodec
int ff_hwframe_map_replace(AVFrame *dst, const AVFrame *src)
Replace the current hwmap of dst with the one from src, used for indirect mappings like VAAPI->(DRM)-...
Definition hwcontext.c:948
pixel format definitions
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
formats
Definition signature.h:47
The buffer pool.
A reference to a data buffer.
Definition buffer.h:82
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This struct aggregates all the (hardware/vendor-specific) "high-level" state, i.e.
Definition hwcontext.h:63
This struct describes the constraints on hardware frames attached to a given device with a hardware-s...
Definition hwcontext.h:444
This struct describes a set or pool of "hardware" frames (i.e.
Definition hwcontext.h:118
const HWContextType * hw_type
int source_allocation_map_flags
Flags to apply to the mapping from the source to the derived frame context when trying to allocate in...
AVHWFramesContext p
The public AVHWFramesContext.
AVBufferPool * pool_internal
AVBufferRef * source_frames
For a derived context, a reference to the original frames context it was derived from.
size_t frames_hwctx_size
size of the public frame pool hardware-specific context, i.e.
int(* transfer_data_from)(AVHWFramesContext *ctx, AVFrame *dst, const AVFrame *src)
int(* map_from)(AVHWFramesContext *ctx, AVFrame *dst, const AVFrame *src, int flags)
int(* frames_get_constraints)(AVHWDeviceContext *ctx, const void *hwconfig, AVHWFramesConstraints *constraints)
int(* device_create)(AVHWDeviceContext *ctx, const char *device, AVDictionary *opts, int flags)
int(* transfer_data_to)(AVHWFramesContext *ctx, AVFrame *dst, const AVFrame *src)
int(* transfer_get_formats)(AVHWFramesContext *ctx, enum AVHWFrameTransferDirection dir, enum AVPixelFormat **formats)
int(* map_to)(AVHWFramesContext *ctx, AVFrame *dst, const AVFrame *src, int flags)
int(* frames_get_buffer)(AVHWFramesContext *ctx, AVFrame *frame)
enum AVHWDeviceType type
size_t device_hwctx_size
size of the public hardware-specific context, i.e.
int(* device_init)(AVHWDeviceContext *ctx)
int(* frames_derive_to)(AVHWFramesContext *dst_ctx, AVHWFramesContext *src_ctx, int flags)
void(* frames_uninit)(AVHWFramesContext *ctx)
int(* frames_derive_from)(AVHWFramesContext *dst_ctx, AVHWFramesContext *src_ctx, int flags)
size_t device_hwconfig_size
Size of the hardware-specific device configuration.
const char * name
void(* device_uninit)(AVHWDeviceContext *ctx)
int(* device_derive)(AVHWDeviceContext *dst_ctx, AVHWDeviceContext *src_ctx, AVDictionary *opts, int flags)
int(* frames_init)(AVHWFramesContext *ctx)
enum AVPixelFormat * pix_fmts
An array of pixel formats supported by the AVHWFramesContext instances Terminated by AV_PIX_FMT_NONE.
void * priv
Hardware-specific private data associated with the mapping.
void(* unmap)(AVHWFramesContext *ctx, struct HWMapDescriptor *hwmap)
Unmap function.
AVFrame * source
A reference to the original source of the mapping.
AVBufferRef * hw_frames_ctx
A reference to the hardware frames context in which this mapping was made.
#define src
Definition vp8dsp.c:248