FFmpeg
hwcontext_cuda.c
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 #include "buffer.h"
20 #include "common.h"
21 #include "hwcontext.h"
22 #include "hwcontext_internal.h"
24 #if CONFIG_VULKAN
25 #include "hwcontext_vulkan.h"
26 #endif
27 #include "cuda_check.h"
28 #include "mem.h"
29 #include "pixdesc.h"
30 #include "pixfmt.h"
31 #include "imgutils.h"
32 
33 #define CUDA_FRAME_ALIGNMENT 256
34 
35 typedef struct CUDAFramesContext {
38 
39 static const enum AVPixelFormat supported_formats[] = {
49 #if CONFIG_VULKAN
51 #endif
52 };
53 
54 #define CHECK_CU(x) FF_CUDA_CHECK_DL(device_ctx, cu, x)
55 
57  const void *hwconfig,
58  AVHWFramesConstraints *constraints)
59 {
60  int i;
61 
63  sizeof(*constraints->valid_sw_formats));
64  if (!constraints->valid_sw_formats)
65  return AVERROR(ENOMEM);
66 
67  for (i = 0; i < FF_ARRAY_ELEMS(supported_formats); i++)
68  constraints->valid_sw_formats[i] = supported_formats[i];
70 
71  constraints->valid_hw_formats = av_malloc_array(2, sizeof(*constraints->valid_hw_formats));
72  if (!constraints->valid_hw_formats)
73  return AVERROR(ENOMEM);
74 
75  constraints->valid_hw_formats[0] = AV_PIX_FMT_CUDA;
76  constraints->valid_hw_formats[1] = AV_PIX_FMT_NONE;
77 
78  return 0;
79 }
80 
81 static void cuda_buffer_free(void *opaque, uint8_t *data)
82 {
83  AVHWFramesContext *ctx = opaque;
84  AVHWDeviceContext *device_ctx = ctx->device_ctx;
85  AVCUDADeviceContext *hwctx = device_ctx->hwctx;
86  CudaFunctions *cu = hwctx->internal->cuda_dl;
87 
88  CUcontext dummy;
89 
90  CHECK_CU(cu->cuCtxPushCurrent(hwctx->cuda_ctx));
91 
92  CHECK_CU(cu->cuMemFree((CUdeviceptr)data));
93 
94  CHECK_CU(cu->cuCtxPopCurrent(&dummy));
95 }
96 
97 static AVBufferRef *cuda_pool_alloc(void *opaque, int size)
98 {
99  AVHWFramesContext *ctx = opaque;
100  AVHWDeviceContext *device_ctx = ctx->device_ctx;
101  AVCUDADeviceContext *hwctx = device_ctx->hwctx;
102  CudaFunctions *cu = hwctx->internal->cuda_dl;
103 
104  AVBufferRef *ret = NULL;
105  CUcontext dummy = NULL;
106  CUdeviceptr data;
107  int err;
108 
109  err = CHECK_CU(cu->cuCtxPushCurrent(hwctx->cuda_ctx));
110  if (err < 0)
111  return NULL;
112 
113  err = CHECK_CU(cu->cuMemAlloc(&data, size));
114  if (err < 0)
115  goto fail;
116 
118  if (!ret) {
119  CHECK_CU(cu->cuMemFree(data));
120  goto fail;
121  }
122 
123 fail:
124  CHECK_CU(cu->cuCtxPopCurrent(&dummy));
125  return ret;
126 }
127 
129 {
130  CUDAFramesContext *priv = ctx->internal->priv;
131  int i;
132 
133  for (i = 0; i < FF_ARRAY_ELEMS(supported_formats); i++) {
134  if (ctx->sw_format == supported_formats[i])
135  break;
136  }
138  av_log(ctx, AV_LOG_ERROR, "Pixel format '%s' is not supported\n",
139  av_get_pix_fmt_name(ctx->sw_format));
140  return AVERROR(ENOSYS);
141  }
142 
143  av_pix_fmt_get_chroma_sub_sample(ctx->sw_format, &priv->shift_width, &priv->shift_height);
144 
145  if (!ctx->pool) {
146  int size = av_image_get_buffer_size(ctx->sw_format, ctx->width, ctx->height, CUDA_FRAME_ALIGNMENT);
147  if (size < 0)
148  return size;
149 
151  if (!ctx->internal->pool_internal)
152  return AVERROR(ENOMEM);
153  }
154 
155  return 0;
156 }
157 
159 {
160  int res;
161 
162  frame->buf[0] = av_buffer_pool_get(ctx->pool);
163  if (!frame->buf[0])
164  return AVERROR(ENOMEM);
165 
166  res = av_image_fill_arrays(frame->data, frame->linesize, frame->buf[0]->data,
167  ctx->sw_format, ctx->width, ctx->height, CUDA_FRAME_ALIGNMENT);
168  if (res < 0)
169  return res;
170 
171  // YUV420P is a special case.
172  // Nvenc expects the U/V planes in swapped order from how ffmpeg expects them, also chroma is half-aligned
173  if (ctx->sw_format == AV_PIX_FMT_YUV420P) {
174  frame->linesize[1] = frame->linesize[2] = frame->linesize[0] / 2;
175  frame->data[2] = frame->data[1];
176  frame->data[1] = frame->data[2] + frame->linesize[2] * ctx->height / 2;
177  }
178 
179  frame->format = AV_PIX_FMT_CUDA;
180  frame->width = ctx->width;
181  frame->height = ctx->height;
182 
183  return 0;
184 }
185 
188  enum AVPixelFormat **formats)
189 {
190  enum AVPixelFormat *fmts;
191 
192  fmts = av_malloc_array(2, sizeof(*fmts));
193  if (!fmts)
194  return AVERROR(ENOMEM);
195 
196  fmts[0] = ctx->sw_format;
197  fmts[1] = AV_PIX_FMT_NONE;
198 
199  *formats = fmts;
200 
201  return 0;
202 }
203 
205  const AVFrame *src)
206 {
207  CUDAFramesContext *priv = ctx->internal->priv;
208  AVHWDeviceContext *device_ctx = ctx->device_ctx;
209  AVCUDADeviceContext *hwctx = device_ctx->hwctx;
210  CudaFunctions *cu = hwctx->internal->cuda_dl;
211 
212  CUcontext dummy;
213  int i, ret;
214 
215  if ((src->hw_frames_ctx && ((AVHWFramesContext*)src->hw_frames_ctx->data)->format != AV_PIX_FMT_CUDA) ||
216  (dst->hw_frames_ctx && ((AVHWFramesContext*)dst->hw_frames_ctx->data)->format != AV_PIX_FMT_CUDA))
217  return AVERROR(ENOSYS);
218 
219  ret = CHECK_CU(cu->cuCtxPushCurrent(hwctx->cuda_ctx));
220  if (ret < 0)
221  return ret;
222 
223  for (i = 0; i < FF_ARRAY_ELEMS(src->data) && src->data[i]; i++) {
224  CUDA_MEMCPY2D cpy = {
225  .srcPitch = src->linesize[i],
226  .dstPitch = dst->linesize[i],
227  .WidthInBytes = FFMIN(src->linesize[i], dst->linesize[i]),
228  .Height = src->height >> ((i == 0 || i == 3) ? 0 : priv->shift_height),
229  };
230 
231  if (src->hw_frames_ctx) {
232  cpy.srcMemoryType = CU_MEMORYTYPE_DEVICE;
233  cpy.srcDevice = (CUdeviceptr)src->data[i];
234  } else {
235  cpy.srcMemoryType = CU_MEMORYTYPE_HOST;
236  cpy.srcHost = src->data[i];
237  }
238 
239  if (dst->hw_frames_ctx) {
240  cpy.dstMemoryType = CU_MEMORYTYPE_DEVICE;
241  cpy.dstDevice = (CUdeviceptr)dst->data[i];
242  } else {
243  cpy.dstMemoryType = CU_MEMORYTYPE_HOST;
244  cpy.dstHost = dst->data[i];
245  }
246 
247  ret = CHECK_CU(cu->cuMemcpy2DAsync(&cpy, hwctx->stream));
248  if (ret < 0)
249  goto exit;
250  }
251 
252  if (!dst->hw_frames_ctx) {
253  ret = CHECK_CU(cu->cuStreamSynchronize(hwctx->stream));
254  if (ret < 0)
255  goto exit;
256  }
257 
258 exit:
259  CHECK_CU(cu->cuCtxPopCurrent(&dummy));
260 
261  return 0;
262 }
263 
264 static void cuda_device_uninit(AVHWDeviceContext *device_ctx)
265 {
266  AVCUDADeviceContext *hwctx = device_ctx->hwctx;
267 
268  if (hwctx->internal) {
269  CudaFunctions *cu = hwctx->internal->cuda_dl;
270 
271  if (hwctx->internal->is_allocated && hwctx->cuda_ctx) {
273  CHECK_CU(cu->cuDevicePrimaryCtxRelease(hwctx->internal->cuda_device));
274  else
275  CHECK_CU(cu->cuCtxDestroy(hwctx->cuda_ctx));
276 
277  hwctx->cuda_ctx = NULL;
278  }
279 
280  cuda_free_functions(&hwctx->internal->cuda_dl);
281  }
282 
283  av_freep(&hwctx->internal);
284 }
285 
287 {
288  AVCUDADeviceContext *hwctx = ctx->hwctx;
289  int ret;
290 
291  if (!hwctx->internal) {
292  hwctx->internal = av_mallocz(sizeof(*hwctx->internal));
293  if (!hwctx->internal)
294  return AVERROR(ENOMEM);
295  }
296 
297  if (!hwctx->internal->cuda_dl) {
298  ret = cuda_load_functions(&hwctx->internal->cuda_dl, ctx);
299  if (ret < 0) {
300  av_log(ctx, AV_LOG_ERROR, "Could not dynamically load CUDA\n");
301  goto error;
302  }
303  }
304 
305  return 0;
306 
307 error:
309  return ret;
310 }
311 
312 static int cuda_context_init(AVHWDeviceContext *device_ctx, int flags) {
313  AVCUDADeviceContext *hwctx = device_ctx->hwctx;
314  CudaFunctions *cu;
315  CUcontext dummy;
316  int ret, dev_active = 0;
317  unsigned int dev_flags = 0;
318 
319  const unsigned int desired_flags = CU_CTX_SCHED_BLOCKING_SYNC;
320 
321  cu = hwctx->internal->cuda_dl;
322 
323  hwctx->internal->flags = flags;
324 
326  ret = CHECK_CU(cu->cuDevicePrimaryCtxGetState(hwctx->internal->cuda_device,
327  &dev_flags, &dev_active));
328  if (ret < 0)
329  return ret;
330 
331  if (dev_active && dev_flags != desired_flags) {
332  av_log(device_ctx, AV_LOG_ERROR, "Primary context already active with incompatible flags.\n");
333  return AVERROR(ENOTSUP);
334  } else if (dev_flags != desired_flags) {
335  ret = CHECK_CU(cu->cuDevicePrimaryCtxSetFlags(hwctx->internal->cuda_device,
336  desired_flags));
337  if (ret < 0)
338  return ret;
339  }
340 
341  ret = CHECK_CU(cu->cuDevicePrimaryCtxRetain(&hwctx->cuda_ctx,
342  hwctx->internal->cuda_device));
343  if (ret < 0)
344  return ret;
345  } else {
346  ret = CHECK_CU(cu->cuCtxCreate(&hwctx->cuda_ctx, desired_flags,
347  hwctx->internal->cuda_device));
348  if (ret < 0)
349  return ret;
350 
351  CHECK_CU(cu->cuCtxPopCurrent(&dummy));
352  }
353 
354  hwctx->internal->is_allocated = 1;
355 
356  // Setting stream to NULL will make functions automatically use the default CUstream
357  hwctx->stream = NULL;
358 
359  return 0;
360 }
361 
362 static int cuda_device_create(AVHWDeviceContext *device_ctx,
363  const char *device,
364  AVDictionary *opts, int flags)
365 {
366  AVCUDADeviceContext *hwctx = device_ctx->hwctx;
367  CudaFunctions *cu;
368  int ret, device_idx = 0;
369 
370  if (device)
371  device_idx = strtol(device, NULL, 0);
372 
373  if (cuda_device_init(device_ctx) < 0)
374  goto error;
375 
376  cu = hwctx->internal->cuda_dl;
377 
378  ret = CHECK_CU(cu->cuInit(0));
379  if (ret < 0)
380  goto error;
381 
382  ret = CHECK_CU(cu->cuDeviceGet(&hwctx->internal->cuda_device, device_idx));
383  if (ret < 0)
384  goto error;
385 
386  ret = cuda_context_init(device_ctx, flags);
387  if (ret < 0)
388  goto error;
389 
390  return 0;
391 
392 error:
393  cuda_device_uninit(device_ctx);
394  return AVERROR_UNKNOWN;
395 }
396 
397 static int cuda_device_derive(AVHWDeviceContext *device_ctx,
399  int flags) {
400  AVCUDADeviceContext *hwctx = device_ctx->hwctx;
401  CudaFunctions *cu;
402  const char *src_uuid = NULL;
403  int ret, i, device_count;
404 
405 #if CONFIG_VULKAN
406  VkPhysicalDeviceIDProperties vk_idp = {
407  .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES,
408  };
409 #endif
410 
411  switch (src_ctx->type) {
412 #if CONFIG_VULKAN
414  AVVulkanDeviceContext *vkctx = src_ctx->hwctx;
415  VkPhysicalDeviceProperties2 vk_dev_props = {
416  .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2,
417  .pNext = &vk_idp,
418  };
419  vkGetPhysicalDeviceProperties2(vkctx->phys_dev, &vk_dev_props);
420  src_uuid = vk_idp.deviceUUID;
421  break;
422  }
423 #endif
424  default:
425  return AVERROR(ENOSYS);
426  }
427 
428  if (!src_uuid) {
429  av_log(device_ctx, AV_LOG_ERROR,
430  "Failed to get UUID of source device.\n");
431  goto error;
432  }
433 
434  if (cuda_device_init(device_ctx) < 0)
435  goto error;
436 
437  cu = hwctx->internal->cuda_dl;
438 
439  ret = CHECK_CU(cu->cuInit(0));
440  if (ret < 0)
441  goto error;
442 
443  ret = CHECK_CU(cu->cuDeviceGetCount(&device_count));
444  if (ret < 0)
445  goto error;
446 
447  hwctx->internal->cuda_device = -1;
448  for (i = 0; i < device_count; i++) {
449  CUdevice dev;
450  CUuuid uuid;
451 
452  ret = CHECK_CU(cu->cuDeviceGet(&dev, i));
453  if (ret < 0)
454  goto error;
455 
456  ret = CHECK_CU(cu->cuDeviceGetUuid(&uuid, dev));
457  if (ret < 0)
458  goto error;
459 
460  if (memcmp(src_uuid, uuid.bytes, sizeof (uuid.bytes)) == 0) {
461  hwctx->internal->cuda_device = dev;
462  break;
463  }
464  }
465 
466  if (hwctx->internal->cuda_device == -1) {
467  av_log(device_ctx, AV_LOG_ERROR, "Could not derive CUDA device.\n");
468  goto error;
469  }
470 
471  ret = cuda_context_init(device_ctx, flags);
472  if (ret < 0)
473  goto error;
474 
475  return 0;
476 
477 error:
478  cuda_device_uninit(device_ctx);
479  return AVERROR_UNKNOWN;
480 }
481 
484  .name = "CUDA",
485 
486  .device_hwctx_size = sizeof(AVCUDADeviceContext),
487  .frames_priv_size = sizeof(CUDAFramesContext),
488 
489  .device_create = cuda_device_create,
490  .device_derive = cuda_device_derive,
491  .device_init = cuda_device_init,
492  .device_uninit = cuda_device_uninit,
493  .frames_get_constraints = cuda_frames_get_constraints,
494  .frames_init = cuda_frames_init,
495  .frames_get_buffer = cuda_get_buffer,
496  .transfer_get_formats = cuda_transfer_get_formats,
497  .transfer_data_to = cuda_transfer_data,
498  .transfer_data_from = cuda_transfer_data,
499 
500  .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_CUDA, AV_PIX_FMT_NONE },
501 };
error
static void error(const char *err)
Definition: target_bsf_fuzzer.c:29
formats
formats
Definition: signature.h:48
AVHWDeviceContext::hwctx
void * hwctx
The format-specific data, allocated and freed by libavutil along with this context.
Definition: hwcontext.h:92
AVVulkanDeviceContext::phys_dev
VkPhysicalDevice phys_dev
Physical device.
Definition: hwcontext_vulkan.h:51
AV_PIX_FMT_CUDA
@ AV_PIX_FMT_CUDA
HW acceleration through CUDA.
Definition: pixfmt.h:235
CUDA_FRAME_ALIGNMENT
#define CUDA_FRAME_ALIGNMENT
Definition: hwcontext_cuda.c:33
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
cuda_context_init
static int cuda_context_init(AVHWDeviceContext *device_ctx, int flags)
Definition: hwcontext_cuda.c:312
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
cuda_device_derive
static int cuda_device_derive(AVHWDeviceContext *device_ctx, AVHWDeviceContext *src_ctx, AVDictionary *opts, int flags)
Definition: hwcontext_cuda.c:397
hwcontext_cuda_internal.h
cuda_transfer_get_formats
static int cuda_transfer_get_formats(AVHWFramesContext *ctx, enum AVHWFrameTransferDirection dir, enum AVPixelFormat **formats)
Definition: hwcontext_cuda.c:186
AVBufferRef::data
uint8_t * data
The data buffer.
Definition: buffer.h:89
CUDAFramesContext
Definition: hwcontext_cuda.c:35
CHECK_CU
#define CHECK_CU(x)
Definition: hwcontext_cuda.c:54
AVCUDADeviceContextInternal::is_allocated
int is_allocated
Definition: hwcontext_cuda_internal.h:33
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:300
pixdesc.h
data
const char data[16]
Definition: mxf.c:91
av_buffer_create
AVBufferRef * av_buffer_create(uint8_t *data, int size, void(*free)(void *opaque, uint8_t *data), void *opaque, int flags)
Create an AVBuffer from an existing array.
Definition: buffer.c:29
AVDictionary
Definition: dict.c:30
AVHWFramesConstraints::valid_hw_formats
enum AVPixelFormat * valid_hw_formats
A list of possible values for format in the hw_frames_ctx, terminated by AV_PIX_FMT_NONE.
Definition: hwcontext.h:458
AVERROR_UNKNOWN
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
Definition: error.h:71
AVFormatContext::internal
AVFormatInternal * internal
An opaque field for libavformat internal usage.
Definition: avformat.h:1788
AV_PIX_FMT_VULKAN
@ AV_PIX_FMT_VULKAN
Vulkan hardware images.
Definition: pixfmt.h:356
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:314
AV_HWDEVICE_TYPE_VULKAN
@ AV_HWDEVICE_TYPE_VULKAN
Definition: hwcontext.h:39
AVHWFramesConstraints
This struct describes the constraints on hardware frames attached to a given device with a hardware-s...
Definition: hwcontext.h:453
AV_HWDEVICE_TYPE_CUDA
@ AV_HWDEVICE_TYPE_CUDA
Definition: hwcontext.h:30
fail
#define fail()
Definition: checkasm.h:123
AVCUDADeviceContextInternal::cuda_device
CUdevice cuda_device
Definition: hwcontext_cuda_internal.h:34
av_pix_fmt_get_chroma_sub_sample
int av_pix_fmt_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift)
Utility function to access log2_chroma_w log2_chroma_h from the pixel format AVPixFmtDescriptor.
Definition: pixdesc.c:2577
AVCUDADeviceContext::cuda_ctx
CUcontext cuda_ctx
Definition: hwcontext_cuda.h:43
AVHWDeviceContext
This struct aggregates all the (hardware/vendor-specific) "high-level" state, i.e.
Definition: hwcontext.h:61
HWContextType::type
enum AVHWDeviceType type
Definition: hwcontext_internal.h:30
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
AVHWFramesConstraints::valid_sw_formats
enum AVPixelFormat * valid_sw_formats
A list of possible values for sw_format in the hw_frames_ctx, terminated by AV_PIX_FMT_NONE.
Definition: hwcontext.h:465
av_buffer_pool_get
AVBufferRef * av_buffer_pool_get(AVBufferPool *pool)
Allocate a new AVBuffer, reusing an old buffer from the pool when available.
Definition: buffer.c:337
AV_PIX_FMT_YUVA420P
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
Definition: pixfmt.h:101
AV_PIX_FMT_YUV444P16
#define AV_PIX_FMT_YUV444P16
Definition: pixfmt.h:410
AV_PIX_FMT_0BGR32
#define AV_PIX_FMT_0BGR32
Definition: pixfmt.h:375
ctx
AVFormatContext * ctx
Definition: movenc.c:48
cuda_device_init
static int cuda_device_init(AVHWDeviceContext *ctx)
Definition: hwcontext_cuda.c:286
AV_PIX_FMT_YUV420P
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:66
AVVulkanDeviceContext
Main Vulkan context, allocated as AVHWDeviceContext.hwctx.
Definition: hwcontext_vulkan.h:39
opts
AVDictionary * opts
Definition: movenc.c:50
NULL
#define NULL
Definition: coverity.c:32
AVCUDADeviceContextInternal::flags
int flags
Definition: hwcontext_cuda_internal.h:35
src
#define src
Definition: vp8dsp.c:254
hwcontext_vulkan.h
CUDAFramesContext::shift_width
int shift_width
Definition: hwcontext_cuda.c:36
cuda_transfer_data
static int cuda_transfer_data(AVHWFramesContext *ctx, AVFrame *dst, const AVFrame *src)
Definition: hwcontext_cuda.c:204
AVCUDADeviceContext::stream
CUstream stream
Definition: hwcontext_cuda.h:44
AVCUDADeviceContext::internal
AVCUDADeviceContextInternal * internal
Definition: hwcontext_cuda.h:45
av_image_fill_arrays
int av_image_fill_arrays(uint8_t *dst_data[4], int dst_linesize[4], const uint8_t *src, enum AVPixelFormat pix_fmt, int width, int height, int align)
Setup the data pointers and linesizes based on the specified image parameters and the provided array.
Definition: imgutils.c:411
CUDAFramesContext::shift_height
int shift_height
Definition: hwcontext_cuda.c:36
size
int size
Definition: twinvq_data.h:11134
ff_hwcontext_type_cuda
const HWContextType ff_hwcontext_type_cuda
Definition: hwcontext_cuda.c:482
buffer.h
av_image_get_buffer_size
int av_image_get_buffer_size(enum AVPixelFormat pix_fmt, int width, int height, int align)
Return the size in bytes of the amount of data required to store an image with the given parameters.
Definition: imgutils.c:431
FFMIN
#define FFMIN(a, b)
Definition: common.h:96
AVCUDADeviceContextInternal::cuda_dl
CudaFunctions * cuda_dl
Definition: hwcontext_cuda_internal.h:32
cuda_pool_alloc
static AVBufferRef * cuda_pool_alloc(void *opaque, int size)
Definition: hwcontext_cuda.c:97
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:269
av_malloc_array
#define av_malloc_array(a, b)
Definition: tableprint_vlc.h:32
common.h
uint8_t
uint8_t
Definition: audio_convert.c:194
av_mallocz
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:237
cuda_device_uninit
static void cuda_device_uninit(AVHWDeviceContext *device_ctx)
Definition: hwcontext_cuda.c:264
av_buffer_pool_init2
AVBufferPool * av_buffer_pool_init2(int size, void *opaque, AVBufferRef *(*alloc)(void *opaque, int size), void(*pool_free)(void *opaque))
Allocate and initialize a buffer pool with a more complex allocator.
Definition: buffer.c:218
AV_PIX_FMT_P016
#define AV_PIX_FMT_P016
Definition: pixfmt.h:447
AVHWFrameTransferDirection
AVHWFrameTransferDirection
Definition: hwcontext.h:415
AVHWFramesContext
This struct describes a set or pool of "hardware" frames (i.e.
Definition: hwcontext.h:124
AVCUDADeviceContext
This struct is allocated as AVHWDeviceContext.hwctx.
Definition: hwcontext_cuda.h:42
ret
ret
Definition: filter_design.txt:187
AVHWDeviceContext::type
enum AVHWDeviceType type
This field identifies the underlying API used for hardware access.
Definition: hwcontext.h:79
pixfmt.h
AV_PIX_FMT_NV12
@ AV_PIX_FMT_NV12
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
Definition: pixfmt.h:89
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
AV_PIX_FMT_0RGB32
#define AV_PIX_FMT_0RGB32
Definition: pixfmt.h:374
cuda_check.h
cuda_buffer_free
static void cuda_buffer_free(void *opaque, uint8_t *data)
Definition: hwcontext_cuda.c:81
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen_template.c:38
AVFrame::hw_frames_ctx
AVBufferRef * hw_frames_ctx
For hwaccel-format frames, this should be a reference to the AVHWFramesContext describing the frame.
Definition: frame.h:639
AV_CUDA_USE_PRIMARY_CONTEXT
#define AV_CUDA_USE_PRIMARY_CONTEXT
Use primary device context instead of creating a new one.
Definition: hwcontext_cuda.h:63
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
dummy
int dummy
Definition: motion.c:64
cuda_device_create
static int cuda_device_create(AVHWDeviceContext *device_ctx, const char *device, AVDictionary *opts, int flags)
Definition: hwcontext_cuda.c:362
supported_formats
static enum AVPixelFormat supported_formats[]
Definition: hwcontext_cuda.c:39
AV_PIX_FMT_YUV444P
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:71
cuda_get_buffer
static int cuda_get_buffer(AVHWFramesContext *ctx, AVFrame *frame)
Definition: hwcontext_cuda.c:158
AV_PIX_FMT_P010
#define AV_PIX_FMT_P010
Definition: pixfmt.h:446
mem.h
AVBufferRef
A reference to a data buffer.
Definition: buffer.h:81
hwcontext_internal.h
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
imgutils.h
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:565
hwcontext.h
AVFrame::linesize
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:331
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
HWContextType
Definition: hwcontext_internal.h:29
cuda_frames_get_constraints
static int cuda_frames_get_constraints(AVHWDeviceContext *ctx, const void *hwconfig, AVHWFramesConstraints *constraints)
Definition: hwcontext_cuda.c:56
cuda_frames_init
static int cuda_frames_init(AVHWFramesContext *ctx)
Definition: hwcontext_cuda.c:128
av_get_pix_fmt_name
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
Definition: pixdesc.c:2465