Files
nunuhara_xsystem4/include/system4/webp.h
T
Nunuhara Cabbage 40ce6e2e82 Add webp CG support
For the MangaGamer version of Sengoku Rance. This makes libwebp a
dependency.

These webp files have a non-standard metadata block appended to them
which specifies the base CG that should be used for unfilled pixels,
where "unfilled" means any pixels with a pure magenta color (255,0,255).
2020-04-07 18:41:01 -07:00

32 lines
1.0 KiB
C

/* Copyright (C) 2019 Nunuhara Cabbage <nunuhara@haniwa.technology>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://gnu.org/licenses/>.
*/
#ifndef SYSTEM4_WEBP_H
#define SYSTEM4_WEBP_H
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
struct cg;
struct cg_metrics;
bool webp_checkfmt(const uint8_t *data);
void webp_extract(uint8_t *data, size_t size, struct cg *cg);
void webp_get_metrics(uint8_t *data, size_t size, struct cg_metrics *m);
#endif /* SYSTEM4_WEBP_H */