summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-01-15 21:19:19 +1100
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-01-15 21:19:19 +1100
commitdb05a696648c3df82d54534ed0a172e7e34f93d3 (patch)
treea55eee16fab7f8b50ebd6149c7ad0c9cfaf162bc /include
parent67991882c40a6a2e7a582d03207dc355b51f23be (diff)
refactor(png): Remove unused ff_png_chunk struct definition
Diffstat (limited to 'include')
-rw-r--r--include/tinyff/image/png.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/tinyff/image/png.h b/include/tinyff/image/png.h
index 8858fd7..0b2ce34 100644
--- a/include/tinyff/image/png.h
+++ b/include/tinyff/image/png.h
@@ -53,14 +53,6 @@ typedef struct {
} ff_png_ctx;
-typedef struct {
- uint32_t length;
- const char *type;
- uint32_t *data; // length bytes (maximum is uint32_t)
- uint32_t crc;
-} ff_png_chunk;
-
-
// Chunk handling
typedef (*ff_png_chunk_handler_ptr)(uint8_t *buf, size_t len, ff_png_ctx* ctx);