Files
ffmpeg/libswscale/vulkan/ops.h
Niklas Haas 1512e52cb4 swscale: switch to refstruct for hw_priv
This is a bit more forward-facing than a bare allocation, and importantly,
allows the `swscale/utils.c` code to remain agnostic about how to correctly
uninit this struct.

Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
2026-03-04 12:04:09 +01:00

43 lines
1.3 KiB
C

/**
* Copyright (C) 2026 Lynne
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* FFmpeg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef SWSCALE_VULKAN_OPS_H
#define SWSCALE_VULKAN_OPS_H
#include "libavutil/vulkan.h"
#include "../swscale.h"
#if CONFIG_LIBSHADERC || CONFIG_LIBGLSLANG
#include "libavutil/vulkan_spirv.h"
#endif
typedef struct FFVulkanOpsCtx {
FFVulkanContext vkctx;
AVVulkanDeviceQueueFamily *qf;
FFVkExecPool e;
#if CONFIG_LIBSHADERC || CONFIG_LIBGLSLANG
FFVkSPIRVCompiler *spvc;
#endif
} FFVulkanOpsCtx;
int ff_sws_vk_init(SwsContext *sws, AVBufferRef *dev_ref);
#endif /* SWSCALE_VULKAN_OPS_H */