diff options
| author | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-05-05 20:07:05 +1000 |
|---|---|---|
| committer | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-05-05 20:07:05 +1000 |
| commit | c61e6113697b8d9a1cd004050cce4ac8795d9842 (patch) | |
| tree | 94cd81bdad358da9599465ffb551b20c73099835 | |
| parent | 170921f8c21b498ed9a497c52931e72e791f2fd9 (diff) | |
minor(png): Change tRNS debug recieving message incorrect chunk type
| -rw-r--r-- | src/format/image/png.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/format/image/png.c b/src/format/image/png.c index e8aefcb..3b1fe5c 100644 --- a/src/format/image/png.c +++ b/src/format/image/png.c @@ -442,7 +442,7 @@ ff_result ff_png_trans_handler(ff_ctx* ctx, uint8_t *buf, size_t len, ff_png_ctx { (void)buf; // Unused (for now) - ff_dprintf(ctx, "png: PLTE chunk received\n"); // TODO: Format + ff_dprintf(ctx, "png: tRNS chunk received\n"); // TODO: Format if (png_ctx->color_type == 0) { // Grayscale if (len != 2) { @@ -451,7 +451,6 @@ ff_result ff_png_trans_handler(ff_ctx* ctx, uint8_t *buf, size_t len, ff_png_ctx return FF_RESULT_ERROR_INVALID_FILE; } } - (void)buf; // Unused (for now) return FF_RESULT_WARN_NO_IMPL; } |
