2025-07-17 05:18:26 +02:00
|
|
|
#pragma once
|
|
|
|
#include "utils.h"
|
2025-07-18 07:16:46 +02:00
|
|
|
#include <cmath>
|
2025-07-17 05:18:26 +02:00
|
|
|
|
2025-07-18 07:16:46 +02:00
|
|
|
namespace lily_png
|
|
|
|
{
|
2025-07-25 05:41:11 +02:00
|
|
|
std::expected<bool, png_error> lily_png::filter_scanline(unsigned char *scanline, unsigned char *previous_scanline, unsigned char *dest, metadata &meta, unsigned char filter_type);
|
|
|
|
std::expected<bool, png_error> filter(file_reader::buffer<unsigned char> &data, file_reader::buffer<unsigned char> &dest ,metadata &meta);
|
2025-07-18 07:16:46 +02:00
|
|
|
}
|
2025-07-17 05:18:26 +02:00
|
|
|
|