mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-03-13 09:00:40 +08:00
Descriptor buffers were a neat attempt at organizing descriptors. Simple, robust, reliable. Unfortunately, driver support never caught on, and neither did validation layer support. Now they're being replaced by descriptor heaps, which promises to be the future. We'll see how it goes.
160 lines
5.2 KiB
C
160 lines
5.2 KiB
C
/*
|
|
* Copyright (c) 2025 Lynne <dev@lynne.ee>
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#include "ffv1_vulkan.h"
|
|
#include "libavutil/crc.h"
|
|
|
|
void ff_ffv1_vk_set_common_sl(AVCodecContext *avctx, FFV1Context *f,
|
|
VkSpecializationInfo *sl,
|
|
enum AVPixelFormat sw_format)
|
|
{
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(sw_format);
|
|
int color_planes = av_pix_fmt_desc_get(sw_format)->nb_components;
|
|
int is_rgb = !(f->colorspace == 0 && sw_format != AV_PIX_FMT_YA8) &&
|
|
!(sw_format == AV_PIX_FMT_YA8);
|
|
|
|
SPEC_LIST_ADD(sl, 2, 32, f->version);
|
|
SPEC_LIST_ADD(sl, 3, 32, f->quant_table_count);
|
|
|
|
for (int i = 0; i < f->quant_table_count; i++) {
|
|
if (f->quant_tables[i][3][127] || f->quant_tables[i][4][127]) {
|
|
SPEC_LIST_ADD(sl, 4, 32, 1);
|
|
break;
|
|
}
|
|
}
|
|
|
|
int bits = desc->comp[0].depth;
|
|
SPEC_LIST_ADD(sl, 5, 32, 1 << bits);
|
|
SPEC_LIST_ADD(sl, 6, 32, f->colorspace);
|
|
SPEC_LIST_ADD(sl, 7, 32, f->transparency);
|
|
SPEC_LIST_ADD(sl, 8, 32, ff_vk_mt_is_np_rgb(sw_format) &&
|
|
(desc->flags & AV_PIX_FMT_FLAG_PLANAR));
|
|
SPEC_LIST_ADD(sl, 9, 32, f->plane_count);
|
|
SPEC_LIST_ADD(sl, 10, 32, color_planes);
|
|
SPEC_LIST_ADD(sl, 11, 32, av_pix_fmt_count_planes(sw_format));
|
|
SPEC_LIST_ADD(sl, 12, 32, bits + is_rgb);
|
|
|
|
SPEC_LIST_ADD(sl, 13, 32, f->chroma_h_shift);
|
|
SPEC_LIST_ADD(sl, 14, 32, f->chroma_v_shift);
|
|
}
|
|
|
|
int ff_ffv1_vk_update_state_transition_data(FFVulkanContext *s,
|
|
FFVkBuffer *vkb, FFV1Context *f)
|
|
{
|
|
int err;
|
|
uint8_t *buf_mapped;
|
|
|
|
RET(ff_vk_map_buffer(s, vkb, &buf_mapped, 0));
|
|
|
|
for (int i = 1; i < 256; i++) {
|
|
buf_mapped[256 + i] = f->state_transition[i];
|
|
buf_mapped[256 - i] = 256 - (int)f->state_transition[i];
|
|
}
|
|
|
|
RET(ff_vk_unmap_buffer(s, vkb, 1));
|
|
|
|
fail:
|
|
return err;
|
|
}
|
|
|
|
static int init_state_transition_data(FFVulkanContext *s,
|
|
FFVkBuffer *vkb, FFV1Context *f,
|
|
int (*write_data)(FFVulkanContext *s,
|
|
FFVkBuffer *vkb, FFV1Context *f))
|
|
{
|
|
int err;
|
|
size_t buf_len = 512*sizeof(uint8_t);
|
|
|
|
RET(ff_vk_create_buf(s, vkb,
|
|
buf_len,
|
|
NULL, NULL,
|
|
VK_BUFFER_USAGE_STORAGE_BUFFER_BIT,
|
|
VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT |
|
|
VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT));
|
|
|
|
write_data(s, vkb, f);
|
|
|
|
fail:
|
|
return err;
|
|
}
|
|
|
|
int ff_ffv1_vk_init_state_transition_data(FFVulkanContext *s,
|
|
FFVkBuffer *vkb, FFV1Context *f)
|
|
{
|
|
return init_state_transition_data(s, vkb, f,
|
|
ff_ffv1_vk_update_state_transition_data);
|
|
}
|
|
|
|
int ff_ffv1_vk_init_quant_table_data(FFVulkanContext *s,
|
|
FFVkBuffer *vkb, FFV1Context *f)
|
|
{
|
|
int err;
|
|
|
|
int16_t *buf_mapped;
|
|
size_t buf_len = MAX_QUANT_TABLES*
|
|
MAX_CONTEXT_INPUTS*
|
|
MAX_QUANT_TABLE_SIZE*sizeof(int16_t);
|
|
|
|
RET(ff_vk_create_buf(s, vkb,
|
|
buf_len,
|
|
NULL, NULL,
|
|
VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT,
|
|
VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT |
|
|
VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT));
|
|
RET(ff_vk_map_buffer(s, vkb, (void *)&buf_mapped, 0));
|
|
|
|
memcpy(buf_mapped, f->quant_tables,
|
|
sizeof(f->quant_tables));
|
|
|
|
RET(ff_vk_unmap_buffer(s, vkb, 1));
|
|
|
|
fail:
|
|
return err;
|
|
}
|
|
|
|
int ff_ffv1_vk_init_crc_table_data(FFVulkanContext *s,
|
|
FFVkBuffer *vkb, FFV1Context *f)
|
|
{
|
|
int err;
|
|
|
|
uint32_t *buf_mapped;
|
|
size_t buf_len = 256*sizeof(int32_t);
|
|
|
|
RET(ff_vk_create_buf(s, vkb,
|
|
buf_len,
|
|
NULL, NULL,
|
|
VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT,
|
|
VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT |
|
|
VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT));
|
|
RET(ff_vk_map_buffer(s, vkb, (void *)&buf_mapped, 0));
|
|
|
|
for (uint32_t i = 0; i < 256; i++) {
|
|
uint32_t c = i << 24;
|
|
for (int j = 0; j < 8; j++)
|
|
c = (c << 1) ^ (0x04C11DB7 & (((int32_t) c) >> 31));
|
|
buf_mapped[i] = av_bswap32(c);
|
|
}
|
|
|
|
RET(ff_vk_unmap_buffer(s, vkb, 1));
|
|
|
|
fail:
|
|
return err;
|
|
}
|