From 6dee5d6e11540aa9a7c0e4db58cdeb45392a2ba0 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 22 Jan 2023 13:07:49 +0000 Subject: test: nsgif: Print whether frames are interlaced --- test/nsgif.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/nsgif.c b/test/nsgif.c index 16a4bc9..29341e7 100644 --- a/test/nsgif.c +++ b/test/nsgif.c @@ -187,6 +187,7 @@ static void print_gif_frame_info(const nsgif_frame_info_t *info, uint32_t i) fprintf(stdout, " local palette: %s\n", info->local_palette ? "yes" : "no"); fprintf(stdout, " disposal-method: %s\n", disposal); fprintf(stdout, " transparency: %s\n", info->transparency ? "yes" : "no"); + fprintf(stdout, " interlaced: %s\n", info->interlaced ? "yes" : "no"); fprintf(stdout, " display: %s\n", info->display ? "yes" : "no"); fprintf(stdout, " delay: %"PRIu32"\n", info->delay); fprintf(stdout, " rect:\n"); -- cgit v1.2.1