/
githubmirror
/
FFmpeg
Обзор
Документация
Войти
/
githubmirror
/
FFmpeg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
libswscale/vulkan/ops.h
40 строк
1 KB
Lynne
swscale: remove GLSL backend
13 июл 2026, 12:57
13 июл 2026, 12:57
aa6aa4e
Код
Авторство
О чём код?
/** * 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" typedef struct FFVulkanOpsCtx { FFVulkanContext vkctx; AVVulkanDeviceQueueFamily *qf; } FFVulkanOpsCtx; int ff_sws_vk_init(SwsContext *sws, AVBufferRef *dev_ref); /** * Returns the Vulkan device reference associated with `sws`, or NULL if * Vulkan has not been initialized for this context. */ AVBufferRef *ff_sws_vk_device_ref(SwsContext *sws); #endif /* SWSCALE_VULKAN_OPS_H */