mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
13 lines
290 B
C
13 lines
290 B
C
|
|
/* 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);
|