From ae3b5e3e85e240d68c7a7ee273fbc4020b7293de Mon Sep 17 00:00:00 2001 From: Watson Wheeler Date: Sun, 28 Jun 2026 14:35:59 +1000 Subject: feat(png): store filter method in png_ctx --- src/format/image/png.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/format/image/png.c b/src/format/image/png.c index dba6b70..80639a2 100644 --- a/src/format/image/png.c +++ b/src/format/image/png.c @@ -210,6 +210,7 @@ ff_result ff_png_header_handler(ff_ctx* ctx, uint8_t *buf, size_t len, ff_png_ct png_ctx->height = h; png_ctx->bit_depth = buf[8]; png_ctx->color_type = buf[9]; + png_ctx->filter_method = buf[11]; png_ctx->interlace_method = buf[12]; ff_dprintf(ctx, "png: IHDR stored in context\n"); -- cgit v1.2.3