pipewire/spa/plugins/videoconvert/pixel-formats.h

13 lines
290 B
C
Raw Normal View History

2023-09-24 18:32:23 +02:00
/* 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);