mirror of
https://github.com/nunuhara/xsystem4.git
synced 2026-09-27 17:38:08 +03:00
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).
32 lines
1.0 KiB
C
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 */
|