videoconvert: Add videoconvert-vulkan

This commit is contained in:
columbarius 2023-09-24 18:32:23 +02:00
parent 87736cc685
commit 0af8a47058
17 changed files with 3586 additions and 2 deletions

View file

@ -0,0 +1,12 @@
/* Spa */
/* SPDX-FileCopyrightText: Copyright © 2023 columbarius */
/* SPDX-License-Identifier: MIT */
#include <stdint.h>
#include <stdbool.h>
struct pixel_format_info {
uint32_t bpp; // bytes per pixel
};
bool get_pixel_format_info(uint32_t format, struct pixel_format_info *info);