summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2023-01-22 13:07:49 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2023-01-22 13:07:49 +0000
commitbe93a588b0e1d362b9587c2bdb1841b7743ef2e6 (patch)
treec010c3236ffaf5d99f06d15746e47f449b318f1d
parentaae138c2cf28e2220198bfaaabb4f5a646102837 (diff)
downloadlibnsgif-tlsa/expose-interlace.tar.gz
libnsgif-tlsa/expose-interlace.tar.bz2
test: nsgif: Print whether frames are interlacedtlsa/expose-interlace
-rw-r--r--test/nsgif.c1
1 files changed, 1 insertions, 0 deletions
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");