2019-09-09 19:15:02 +00:00
|
|
|
/*
|
2021-09-19 19:54:23 +00:00
|
|
|
* Copyright (c) 2019 - 2021 Andri Yngvason
|
2019-09-09 19:15:02 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
|
|
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
|
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
|
|
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2019-12-30 20:13:40 +00:00
|
|
|
#include <unistd.h>
|
2021-09-19 19:54:23 +00:00
|
|
|
#include <pixman.h>
|
|
|
|
#include <stdbool.h>
|
2019-12-30 20:13:40 +00:00
|
|
|
|
|
|
|
struct rfb_pixel_format;
|
2024-02-20 21:59:49 +00:00
|
|
|
struct rfb_set_colour_map_entries_msg;
|
2019-09-09 19:15:02 +00:00
|
|
|
|
2023-09-21 14:25:10 +00:00
|
|
|
void pixel_to_cpixel(uint8_t* restrict dst,
|
2019-10-20 22:13:51 +00:00
|
|
|
const struct rfb_pixel_format* dst_fmt,
|
2023-09-21 14:25:10 +00:00
|
|
|
const uint8_t* restrict src,
|
2019-10-20 22:13:51 +00:00
|
|
|
const struct rfb_pixel_format* src_fmt,
|
|
|
|
size_t bytes_per_cpixel, size_t len);
|
2019-12-30 20:13:40 +00:00
|
|
|
|
|
|
|
int rfb_pixfmt_from_fourcc(struct rfb_pixel_format *dst, uint32_t src);
|
|
|
|
uint32_t rfb_pixfmt_to_fourcc(const struct rfb_pixel_format* fmt);
|
2021-09-05 00:20:05 +00:00
|
|
|
|
|
|
|
int pixel_size_from_fourcc(uint32_t fourcc);
|
2021-09-19 19:54:23 +00:00
|
|
|
|
|
|
|
bool fourcc_to_pixman_fmt(pixman_format_code_t* dst, uint32_t src);
|
2022-02-06 15:01:33 +00:00
|
|
|
|
|
|
|
bool extract_alpha_mask(uint8_t* dst, const void* src, uint32_t format,
|
|
|
|
size_t len);
|
2022-02-12 12:30:12 +00:00
|
|
|
|
|
|
|
const char* drm_format_to_string(uint32_t fmt);
|
2022-02-12 13:15:30 +00:00
|
|
|
const char* rfb_pixfmt_to_string(const struct rfb_pixel_format* fmt);
|
2024-02-20 21:59:49 +00:00
|
|
|
void make_rgb332_pal8_map(struct rfb_set_colour_map_entries_msg* msg);
|