blob: 8ebe97c2ff8697f5b473aa40eabd3b632da19d0e [file] [log] [blame]
The Android Open Source Project893912b2009-03-03 19:30:05 -08001
2/* pngtest.c - a simple test program to test libpng
3 *
Chris Craikb50c2172013-07-29 15:28:30 -07004 * Last changed in libpng 1.6.2 [April 25, 2013]
5 * Copyright (c) 1998-2013 Glenn Randers-Pehrson
The Android Open Source Project893912b2009-03-03 19:30:05 -08006 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
8 *
Patrick Scotta0bb96c2009-07-22 11:50:02 -04009 * This code is released under the libpng license.
10 * For conditions of distribution and use, see the disclaimer
11 * and license in png.h
12 *
The Android Open Source Project893912b2009-03-03 19:30:05 -080013 * This program reads in a PNG image, writes it out again, and then
14 * compares the two files. If the files are identical, this shows that
15 * the basic chunk handling, filtering, and (de)compression code is working
16 * properly. It does not currently test all of the transforms, although
17 * it probably should.
18 *
19 * The program will report "FAIL" in certain legitimate cases:
20 * 1) when the compression level or filter selection method is changed.
21 * 2) when the maximum IDAT size (PNG_ZBUF_SIZE in pngconf.h) is not 8192.
22 * 3) unknown unsafe-to-copy ancillary chunks or unknown critical chunks
23 * exist in the input file.
24 * 4) others not listed here...
25 * In these cases, it is best to check with another tool such as "pngcheck"
26 * to see what the differences between the two files are.
27 *
28 * If a filename is given on the command-line, then this file is used
29 * for the input, rather than the default "pngtest.png". This allows
30 * testing a wide variety of files easily. You can also test a number
31 * of files at once by typing "pngtest -m file1.png file2.png ..."
32 */
33
Chris Craikb50c2172013-07-29 15:28:30 -070034#define _POSIX_SOURCE 1
35
36#include <stdio.h>
37#include <stdlib.h>
38#include <string.h>
39
40/* Defined so I can write to a file on gui/windowing platforms */
41/* #define STDERR stderr */
42#define STDERR stdout /* For DOS */
43
The Android Open Source Project893912b2009-03-03 19:30:05 -080044#include "png.h"
45
Chris Craikb50c2172013-07-29 15:28:30 -070046/* Known chunks that exist in pngtest.png must be supported or pngtest will fail
47 * simply as a result of re-ordering them. This may be fixed in 1.7
48 */
49#if defined PNG_READ_SUPPORTED && /* else nothing can be done */\
50 defined PNG_READ_bKGD_SUPPORTED &&\
51 defined PNG_READ_cHRM_SUPPORTED &&\
52 defined PNG_READ_gAMA_SUPPORTED &&\
53 defined PNG_READ_oFFs_SUPPORTED &&\
54 defined PNG_READ_pCAL_SUPPORTED &&\
55 defined PNG_READ_pHYs_SUPPORTED &&\
56 defined PNG_READ_sBIT_SUPPORTED &&\
57 defined PNG_READ_sCAL_SUPPORTED &&\
58 defined PNG_READ_sRGB_SUPPORTED &&\
59 defined PNG_READ_tEXt_SUPPORTED &&\
60 defined PNG_READ_tIME_SUPPORTED &&\
61 defined PNG_READ_zTXt_SUPPORTED
62
63#include "zlib.h"
64/* Copied from pngpriv.h but only used in error messages below. */
65#ifndef PNG_ZBUF_SIZE
66# define PNG_ZBUF_SIZE 8192
The Android Open Source Project893912b2009-03-03 19:30:05 -080067#endif
Chris Craikb50c2172013-07-29 15:28:30 -070068#define FCLOSE(file) fclose(file)
The Android Open Source Project893912b2009-03-03 19:30:05 -080069
Patrick Scott5f6bd842010-06-28 16:55:16 -040070#ifndef PNG_STDIO_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -070071typedef FILE * png_FILE_p;
The Android Open Source Project893912b2009-03-03 19:30:05 -080072#endif
73
Chris Craikb50c2172013-07-29 15:28:30 -070074/* Makes pngtest verbose so we can find problems. */
The Android Open Source Project893912b2009-03-03 19:30:05 -080075#ifndef PNG_DEBUG
76# define PNG_DEBUG 0
77#endif
78
Chris Craikb50c2172013-07-29 15:28:30 -070079#if PNG_DEBUG > 1
80# define pngtest_debug(m) ((void)fprintf(stderr, m "\n"))
81# define pngtest_debug1(m,p1) ((void)fprintf(stderr, m "\n", p1))
82# define pngtest_debug2(m,p1,p2) ((void)fprintf(stderr, m "\n", p1, p2))
83#else
84# define pngtest_debug(m) ((void)0)
85# define pngtest_debug1(m,p1) ((void)0)
86# define pngtest_debug2(m,p1,p2) ((void)0)
87#endif
88
The Android Open Source Project893912b2009-03-03 19:30:05 -080089#if !PNG_DEBUG
Patrick Scotta0bb96c2009-07-22 11:50:02 -040090# define SINGLE_ROWBUF_ALLOC /* Makes buffer overruns easier to nail */
The Android Open Source Project893912b2009-03-03 19:30:05 -080091#endif
92
93/* Turn on CPU timing
94#define PNGTEST_TIMING
95*/
96
Patrick Scott5f6bd842010-06-28 16:55:16 -040097#ifndef PNG_FLOATING_POINT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -080098#undef PNGTEST_TIMING
99#endif
100
101#ifdef PNGTEST_TIMING
102static float t_start, t_stop, t_decode, t_encode, t_misc;
103#include <time.h>
104#endif
105
Patrick Scott5f6bd842010-06-28 16:55:16 -0400106#ifdef PNG_TIME_RFC1123_SUPPORTED
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700107#define PNG_tIME_STRING_LENGTH 29
108static int tIME_chunk_present = 0;
109static char tIME_string[PNG_tIME_STRING_LENGTH] = "tIME chunk is not present";
The Android Open Source Project893912b2009-03-03 19:30:05 -0800110#endif
111
112static int verbose = 0;
Chris Craikb50c2172013-07-29 15:28:30 -0700113static int strict = 0;
114static int relaxed = 0;
115static int unsupported_chunks = 0; /* chunk unsupported by libpng in input */
116static int error_count = 0; /* count calls to png_error */
117static int warning_count = 0; /* count calls to png_warning */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800118
119#ifdef __TURBOC__
120#include <mem.h>
121#endif
122
The Android Open Source Project893912b2009-03-03 19:30:05 -0800123/* Define png_jmpbuf() in case we are using a pre-1.0.6 version of libpng */
124#ifndef png_jmpbuf
125# define png_jmpbuf(png_ptr) png_ptr->jmpbuf
126#endif
127
Chris Craikb50c2172013-07-29 15:28:30 -0700128/* Defines for unknown chunk handling if required. */
129#ifndef PNG_HANDLE_CHUNK_ALWAYS
130# define PNG_HANDLE_CHUNK_ALWAYS 3
131#endif
132#ifndef PNG_HANDLE_CHUNK_IF_SAFE
133# define PNG_HANDLE_CHUNK_IF_SAFE 2
134#endif
135
136/* Utility to save typing/errors, the argument must be a name */
137#define MEMZERO(var) ((void)memset(&var, 0, sizeof var))
138
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400139/* Example of using row callbacks to make a simple progress meter */
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700140static int status_pass = 1;
141static int status_dots_requested = 0;
142static int status_dots = 1;
143
Chris Craikb50c2172013-07-29 15:28:30 -0700144static void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -0800145read_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass)
146{
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400147 if (png_ptr == NULL || row_number > PNG_UINT_31_MAX)
148 return;
Chris Craikb50c2172013-07-29 15:28:30 -0700149
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400150 if (status_pass != pass)
151 {
152 fprintf(stdout, "\n Pass %d: ", pass);
153 status_pass = pass;
154 status_dots = 31;
155 }
Chris Craikb50c2172013-07-29 15:28:30 -0700156
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400157 status_dots--;
Chris Craikb50c2172013-07-29 15:28:30 -0700158
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400159 if (status_dots == 0)
160 {
161 fprintf(stdout, "\n ");
162 status_dots=30;
163 }
Chris Craikb50c2172013-07-29 15:28:30 -0700164
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400165 fprintf(stdout, "r");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800166}
167
Chris Craikb50c2172013-07-29 15:28:30 -0700168#ifdef PNG_WRITE_SUPPORTED
169static void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -0800170write_row_callback(png_structp png_ptr, png_uint_32 row_number, int pass)
171{
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400172 if (png_ptr == NULL || row_number > PNG_UINT_31_MAX || pass > 7)
173 return;
Chris Craikb50c2172013-07-29 15:28:30 -0700174
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400175 fprintf(stdout, "w");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800176}
Chris Craikb50c2172013-07-29 15:28:30 -0700177#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -0800178
179
Patrick Scott5f6bd842010-06-28 16:55:16 -0400180#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800181/* Example of using user transform callback (we don't transform anything,
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400182 * but merely examine the row filters. We set this to 256 rather than
183 * 5 in case illegal filter values are present.)
184 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800185static png_uint_32 filters_used[256];
Chris Craikb50c2172013-07-29 15:28:30 -0700186static void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -0800187count_filters(png_structp png_ptr, png_row_infop row_info, png_bytep data)
188{
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400189 if (png_ptr != NULL && row_info != NULL)
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700190 ++filters_used[*(data - 1)];
The Android Open Source Project893912b2009-03-03 19:30:05 -0800191}
192#endif
193
Patrick Scott5f6bd842010-06-28 16:55:16 -0400194#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400195/* Example of using user transform callback (we don't transform anything,
196 * but merely count the zero samples)
197 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800198
199static png_uint_32 zero_samples;
200
Chris Craikb50c2172013-07-29 15:28:30 -0700201static void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -0800202count_zero_samples(png_structp png_ptr, png_row_infop row_info, png_bytep data)
203{
204 png_bytep dp = data;
Chris Craikb50c2172013-07-29 15:28:30 -0700205 if (png_ptr == NULL)
206 return;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800207
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400208 /* Contents of row_info:
The Android Open Source Project893912b2009-03-03 19:30:05 -0800209 * png_uint_32 width width of row
210 * png_uint_32 rowbytes number of bytes in row
211 * png_byte color_type color type of pixels
212 * png_byte bit_depth bit depth of samples
213 * png_byte channels number of channels (1-4)
214 * png_byte pixel_depth bits per pixel (depth*channels)
215 */
216
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400217 /* Counts the number of zero samples (or zero pixels if color_type is 3 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800218
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700219 if (row_info->color_type == 0 || row_info->color_type == 3)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800220 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700221 int pos = 0;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800222 png_uint_32 n, nstop;
Chris Craikb50c2172013-07-29 15:28:30 -0700223
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700224 for (n = 0, nstop=row_info->width; n<nstop; n++)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800225 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700226 if (row_info->bit_depth == 1)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800227 {
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400228 if (((*dp << pos++ ) & 0x80) == 0)
229 zero_samples++;
Chris Craikb50c2172013-07-29 15:28:30 -0700230
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700231 if (pos == 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800232 {
233 pos = 0;
234 dp++;
235 }
236 }
Chris Craikb50c2172013-07-29 15:28:30 -0700237
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700238 if (row_info->bit_depth == 2)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800239 {
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400240 if (((*dp << (pos+=2)) & 0xc0) == 0)
241 zero_samples++;
Chris Craikb50c2172013-07-29 15:28:30 -0700242
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700243 if (pos == 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800244 {
245 pos = 0;
246 dp++;
247 }
248 }
Chris Craikb50c2172013-07-29 15:28:30 -0700249
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700250 if (row_info->bit_depth == 4)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800251 {
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400252 if (((*dp << (pos+=4)) & 0xf0) == 0)
253 zero_samples++;
Chris Craikb50c2172013-07-29 15:28:30 -0700254
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700255 if (pos == 8)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800256 {
257 pos = 0;
258 dp++;
259 }
260 }
Chris Craikb50c2172013-07-29 15:28:30 -0700261
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700262 if (row_info->bit_depth == 8)
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400263 if (*dp++ == 0)
264 zero_samples++;
Chris Craikb50c2172013-07-29 15:28:30 -0700265
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700266 if (row_info->bit_depth == 16)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800267 {
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400268 if ((*dp | *(dp+1)) == 0)
269 zero_samples++;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800270 dp+=2;
271 }
272 }
273 }
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400274 else /* Other color types */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800275 {
276 png_uint_32 n, nstop;
277 int channel;
278 int color_channels = row_info->channels;
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700279 if (row_info->color_type > 3)color_channels--;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800280
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700281 for (n = 0, nstop=row_info->width; n<nstop; n++)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800282 {
283 for (channel = 0; channel < color_channels; channel++)
284 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700285 if (row_info->bit_depth == 8)
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400286 if (*dp++ == 0)
287 zero_samples++;
Chris Craikb50c2172013-07-29 15:28:30 -0700288
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700289 if (row_info->bit_depth == 16)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800290 {
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400291 if ((*dp | *(dp+1)) == 0)
292 zero_samples++;
Chris Craikb50c2172013-07-29 15:28:30 -0700293
The Android Open Source Project893912b2009-03-03 19:30:05 -0800294 dp+=2;
295 }
296 }
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700297 if (row_info->color_type > 3)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800298 {
299 dp++;
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400300 if (row_info->bit_depth == 16)
301 dp++;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800302 }
303 }
304 }
305}
306#endif /* PNG_WRITE_USER_TRANSFORM_SUPPORTED */
307
Patrick Scott5f6bd842010-06-28 16:55:16 -0400308#ifndef PNG_STDIO_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800309/* START of code to validate stdio-free compilation */
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400310/* These copies of the default read/write functions come from pngrio.c and
311 * pngwio.c. They allow "don't include stdio" testing of the library.
312 * This is the function that does the actual reading of data. If you are
313 * not reading from a standard C stream, you should create a replacement
314 * read_data function and use it at run time with png_set_read_fn(), rather
315 * than changing the library.
316 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800317
Chris Craikb50c2172013-07-29 15:28:30 -0700318#ifdef PNG_IO_STATE_SUPPORTED
319void
320pngtest_check_io_state(png_structp png_ptr, png_size_t data_length,
321 png_uint_32 io_op);
322void
323pngtest_check_io_state(png_structp png_ptr, png_size_t data_length,
324 png_uint_32 io_op)
325{
326 png_uint_32 io_state = png_get_io_state(png_ptr);
327 int err = 0;
328
329 /* Check if the current operation (reading / writing) is as expected. */
330 if ((io_state & PNG_IO_MASK_OP) != io_op)
331 png_error(png_ptr, "Incorrect operation in I/O state");
332
333 /* Check if the buffer size specific to the current location
334 * (file signature / header / data / crc) is as expected.
335 */
336 switch (io_state & PNG_IO_MASK_LOC)
337 {
338 case PNG_IO_SIGNATURE:
339 if (data_length > 8)
340 err = 1;
341 break;
342 case PNG_IO_CHUNK_HDR:
343 if (data_length != 8)
344 err = 1;
345 break;
346 case PNG_IO_CHUNK_DATA:
347 break; /* no restrictions here */
348 case PNG_IO_CHUNK_CRC:
349 if (data_length != 4)
350 err = 1;
351 break;
352 default:
353 err = 1; /* uninitialized */
354 }
355 if (err)
356 png_error(png_ptr, "Bad I/O state or buffer size");
357}
358#endif
359
360static void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -0800361pngtest_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
362{
Patrick Scott5f6bd842010-06-28 16:55:16 -0400363 png_size_t check = 0;
364 png_voidp io_ptr;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800365
366 /* fread() returns 0 on error, so it is OK to store this in a png_size_t
367 * instead of an int, which is what fread() actually returns.
368 */
Patrick Scott5f6bd842010-06-28 16:55:16 -0400369 io_ptr = png_get_io_ptr(png_ptr);
370 if (io_ptr != NULL)
371 {
Chris Craikb50c2172013-07-29 15:28:30 -0700372 check = fread(data, 1, length, (png_FILE_p)io_ptr);
Patrick Scott5f6bd842010-06-28 16:55:16 -0400373 }
The Android Open Source Project893912b2009-03-03 19:30:05 -0800374
375 if (check != length)
376 {
Chris Craikb50c2172013-07-29 15:28:30 -0700377 png_error(png_ptr, "Read Error");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800378 }
Chris Craikb50c2172013-07-29 15:28:30 -0700379
380#ifdef PNG_IO_STATE_SUPPORTED
381 pngtest_check_io_state(png_ptr, length, PNG_IO_READING);
382#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -0800383}
The Android Open Source Project893912b2009-03-03 19:30:05 -0800384
Patrick Scott5f6bd842010-06-28 16:55:16 -0400385#ifdef PNG_WRITE_FLUSH_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -0700386static void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -0800387pngtest_flush(png_structp png_ptr)
388{
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400389 /* Do nothing; fflush() is said to be just a waste of energy. */
Chris Craikb50c2172013-07-29 15:28:30 -0700390 PNG_UNUSED(png_ptr) /* Stifle compiler warning */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800391}
392#endif
393
394/* This is the function that does the actual writing of data. If you are
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400395 * not writing to a standard C stream, you should create a replacement
396 * write_data function and use it at run time with png_set_write_fn(), rather
397 * than changing the library.
398 */
Chris Craikb50c2172013-07-29 15:28:30 -0700399static void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -0800400pngtest_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
401{
Chris Craikb50c2172013-07-29 15:28:30 -0700402 png_size_t check;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800403
Chris Craikb50c2172013-07-29 15:28:30 -0700404 check = fwrite(data, 1, length, (png_FILE_p)png_get_io_ptr(png_ptr));
405
The Android Open Source Project893912b2009-03-03 19:30:05 -0800406 if (check != length)
407 {
408 png_error(png_ptr, "Write Error");
409 }
Chris Craikb50c2172013-07-29 15:28:30 -0700410
411#ifdef PNG_IO_STATE_SUPPORTED
412 pngtest_check_io_state(png_ptr, length, PNG_IO_WRITING);
413#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -0800414}
Chris Craikb50c2172013-07-29 15:28:30 -0700415#endif /* !PNG_STDIO_SUPPORTED */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800416
417/* This function is called when there is a warning, but the library thinks
418 * it can continue anyway. Replacement functions don't have to do anything
419 * here if you don't want to. In the default configuration, png_ptr is
420 * not used, but it is passed in case it may be useful.
421 */
Chris Craikb50c2172013-07-29 15:28:30 -0700422typedef struct
423{
424 PNG_CONST char *file_name;
425} pngtest_error_parameters;
426
427static void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -0800428pngtest_warning(png_structp png_ptr, png_const_charp message)
429{
430 PNG_CONST char *name = "UNKNOWN (ERROR!)";
Chris Craikb50c2172013-07-29 15:28:30 -0700431 pngtest_error_parameters *test =
432 (pngtest_error_parameters*)png_get_error_ptr(png_ptr);
433
434 ++warning_count;
435
436 if (test != NULL && test->file_name != NULL)
437 name = test->file_name;
438
439 fprintf(STDERR, "%s: libpng warning: %s\n", name, message);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800440}
441
442/* This is the default error handling function. Note that replacements for
443 * this function MUST NOT RETURN, or the program will likely crash. This
444 * function is used by default, or if the program supplies NULL for the
445 * error function pointer in png_set_error_fn().
446 */
Chris Craikb50c2172013-07-29 15:28:30 -0700447static void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -0800448pngtest_error(png_structp png_ptr, png_const_charp message)
449{
Chris Craikb50c2172013-07-29 15:28:30 -0700450 ++error_count;
451
The Android Open Source Project893912b2009-03-03 19:30:05 -0800452 pngtest_warning(png_ptr, message);
453 /* We can return because png_error calls the default handler, which is
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400454 * actually OK in this case.
455 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800456}
Chris Craikb50c2172013-07-29 15:28:30 -0700457
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700458/* END of code to validate stdio-free compilation */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800459
460/* START of code to validate memory allocation and deallocation */
461#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
462
463/* Allocate memory. For reasonable files, size should never exceed
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400464 * 64K. However, zlib may allocate more then 64K if you don't tell
465 * it not to. See zconf.h and png.h for more information. zlib does
466 * need to allocate exactly 64K, so whatever you call here must
467 * have the ability to do that.
468 *
469 * This piece of code can be compiled to validate max 64K allocations
470 * by setting MAXSEG_64K in zlib zconf.h *or* PNG_MAX_MALLOC_64K.
471 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800472typedef struct memory_information
473{
Chris Craikb50c2172013-07-29 15:28:30 -0700474 png_alloc_size_t size;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800475 png_voidp pointer;
Chris Craikb50c2172013-07-29 15:28:30 -0700476 struct memory_information *next;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800477} memory_information;
Chris Craikb50c2172013-07-29 15:28:30 -0700478typedef memory_information *memory_infop;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800479
480static memory_infop pinformation = NULL;
481static int current_allocation = 0;
482static int maximum_allocation = 0;
483static int total_allocation = 0;
484static int num_allocations = 0;
485
Chris Craikb50c2172013-07-29 15:28:30 -0700486png_voidp PNGCBAPI png_debug_malloc PNGARG((png_structp png_ptr,
487 png_alloc_size_t size));
488void PNGCBAPI png_debug_free PNGARG((png_structp png_ptr, png_voidp ptr));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800489
490png_voidp
Chris Craikb50c2172013-07-29 15:28:30 -0700491PNGCBAPI png_debug_malloc(png_structp png_ptr, png_alloc_size_t size)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800492{
493
494 /* png_malloc has already tested for NULL; png_create_struct calls
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400495 * png_debug_malloc directly, with png_ptr == NULL which is OK
496 */
The Android Open Source Project893912b2009-03-03 19:30:05 -0800497
498 if (size == 0)
499 return (NULL);
500
501 /* This calls the library allocator twice, once to get the requested
502 buffer and once to get a new free list entry. */
503 {
504 /* Disable malloc_fn and free_fn */
505 memory_infop pinfo;
506 png_set_mem_fn(png_ptr, NULL, NULL, NULL);
507 pinfo = (memory_infop)png_malloc(png_ptr,
Chris Craikb50c2172013-07-29 15:28:30 -0700508 (sizeof *pinfo));
The Android Open Source Project893912b2009-03-03 19:30:05 -0800509 pinfo->size = size;
510 current_allocation += size;
511 total_allocation += size;
512 num_allocations ++;
Chris Craikb50c2172013-07-29 15:28:30 -0700513
The Android Open Source Project893912b2009-03-03 19:30:05 -0800514 if (current_allocation > maximum_allocation)
515 maximum_allocation = current_allocation;
Chris Craikb50c2172013-07-29 15:28:30 -0700516
517 pinfo->pointer = png_malloc(png_ptr, size);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800518 /* Restore malloc_fn and free_fn */
Chris Craikb50c2172013-07-29 15:28:30 -0700519
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700520 png_set_mem_fn(png_ptr,
Chris Craikb50c2172013-07-29 15:28:30 -0700521 NULL, png_debug_malloc, png_debug_free);
522
The Android Open Source Project893912b2009-03-03 19:30:05 -0800523 if (size != 0 && pinfo->pointer == NULL)
524 {
525 current_allocation -= size;
526 total_allocation -= size;
527 png_error(png_ptr,
Chris Craikb50c2172013-07-29 15:28:30 -0700528 "out of memory in pngtest->png_debug_malloc");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800529 }
Chris Craikb50c2172013-07-29 15:28:30 -0700530
The Android Open Source Project893912b2009-03-03 19:30:05 -0800531 pinfo->next = pinformation;
532 pinformation = pinfo;
533 /* Make sure the caller isn't assuming zeroed memory. */
Chris Craikb50c2172013-07-29 15:28:30 -0700534 memset(pinfo->pointer, 0xdd, pinfo->size);
535
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700536 if (verbose)
Chris Craikb50c2172013-07-29 15:28:30 -0700537 printf("png_malloc %lu bytes at %p\n", (unsigned long)size,
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700538 pinfo->pointer);
Chris Craikb50c2172013-07-29 15:28:30 -0700539
The Android Open Source Project893912b2009-03-03 19:30:05 -0800540 return (png_voidp)(pinfo->pointer);
541 }
542}
543
544/* Free a pointer. It is removed from the list at the same time. */
Chris Craikb50c2172013-07-29 15:28:30 -0700545void PNGCBAPI
The Android Open Source Project893912b2009-03-03 19:30:05 -0800546png_debug_free(png_structp png_ptr, png_voidp ptr)
547{
548 if (png_ptr == NULL)
549 fprintf(STDERR, "NULL pointer to png_debug_free.\n");
Chris Craikb50c2172013-07-29 15:28:30 -0700550
The Android Open Source Project893912b2009-03-03 19:30:05 -0800551 if (ptr == 0)
552 {
553#if 0 /* This happens all the time. */
554 fprintf(STDERR, "WARNING: freeing NULL pointer\n");
555#endif
556 return;
557 }
558
559 /* Unlink the element from the list. */
560 {
Chris Craikb50c2172013-07-29 15:28:30 -0700561 memory_infop *ppinfo = &pinformation;
562
The Android Open Source Project893912b2009-03-03 19:30:05 -0800563 for (;;)
564 {
565 memory_infop pinfo = *ppinfo;
Chris Craikb50c2172013-07-29 15:28:30 -0700566
The Android Open Source Project893912b2009-03-03 19:30:05 -0800567 if (pinfo->pointer == ptr)
568 {
569 *ppinfo = pinfo->next;
570 current_allocation -= pinfo->size;
571 if (current_allocation < 0)
572 fprintf(STDERR, "Duplicate free of memory\n");
573 /* We must free the list element too, but first kill
574 the memory that is to be freed. */
Chris Craikb50c2172013-07-29 15:28:30 -0700575 memset(ptr, 0x55, pinfo->size);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800576 png_free_default(png_ptr, pinfo);
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700577 pinfo = NULL;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800578 break;
579 }
Chris Craikb50c2172013-07-29 15:28:30 -0700580
The Android Open Source Project893912b2009-03-03 19:30:05 -0800581 if (pinfo->next == NULL)
582 {
583 fprintf(STDERR, "Pointer %x not found\n", (unsigned int)ptr);
584 break;
585 }
Chris Craikb50c2172013-07-29 15:28:30 -0700586
The Android Open Source Project893912b2009-03-03 19:30:05 -0800587 ppinfo = &pinfo->next;
588 }
589 }
590
591 /* Finally free the data. */
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700592 if (verbose)
Chris Craikb50c2172013-07-29 15:28:30 -0700593 printf("Freeing %p\n", ptr);
594
The Android Open Source Project893912b2009-03-03 19:30:05 -0800595 png_free_default(png_ptr, ptr);
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700596 ptr = NULL;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800597}
598#endif /* PNG_USER_MEM_SUPPORTED && PNG_DEBUG */
599/* END of code to test memory allocation/deallocation */
600
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700601
Chris Craikb50c2172013-07-29 15:28:30 -0700602#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700603/* Demonstration of user chunk support of the sTER and vpAg chunks */
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700604
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400605/* (sTER is a public chunk not yet known by libpng. vpAg is a private
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700606chunk used in ImageMagick to store "virtual page" size). */
607
Chris Craikb50c2172013-07-29 15:28:30 -0700608static struct user_chunk_data
609{
610 png_const_infop info_ptr;
611 png_uint_32 vpAg_width, vpAg_height;
612 png_byte vpAg_units;
613 png_byte sTER_mode;
614 int location[2];
615}
616user_chunk_data;
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700617
Chris Craikb50c2172013-07-29 15:28:30 -0700618/* Used for location and order; zero means nothing. */
619#define have_sTER 0x01
620#define have_vpAg 0x02
621#define before_PLTE 0x10
622#define before_IDAT 0x20
623#define after_IDAT 0x40
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700624
Chris Craikb50c2172013-07-29 15:28:30 -0700625static void
626init_callback_info(png_const_infop info_ptr)
627{
628 MEMZERO(user_chunk_data);
629 user_chunk_data.info_ptr = info_ptr;
630}
631
632static int
633set_location(png_structp png_ptr, struct user_chunk_data *data, int what)
634{
635 int location;
636
637 if ((data->location[0] & what) || (data->location[1] & what))
638 return 0; /* already have one of these */
639
640 /* Find where we are (the code below zeros info_ptr to indicate that the
641 * chunks before the first IDAT have been read.)
642 */
643 if (data->info_ptr == NULL) /* after IDAT */
644 location = what | after_IDAT;
645
646 else if (png_get_valid(png_ptr, data->info_ptr, PNG_INFO_PLTE))
647 location = what | before_IDAT;
648
649 else
650 location = what | before_PLTE;
651
652 if (data->location[0] == 0)
653 data->location[0] = location;
654
655 else
656 data->location[1] = location;
657
658 return 1; /* handled */
659}
660
661static int PNGCBAPI read_user_chunk_callback(png_struct *png_ptr,
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700662 png_unknown_chunkp chunk)
663{
Chris Craikb50c2172013-07-29 15:28:30 -0700664 struct user_chunk_data *my_user_chunk_data =
665 (struct user_chunk_data*)png_get_user_chunk_ptr(png_ptr);
666
667 if (my_user_chunk_data == NULL)
668 png_error(png_ptr, "lost user chunk pointer");
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700669
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400670 /* Return one of the following:
671 * return (-n); chunk had an error
672 * return (0); did not recognize
673 * return (n); success
674 *
675 * The unknown chunk structure contains the chunk data:
676 * png_byte name[5];
677 * png_byte *data;
678 * png_size_t size;
679 *
680 * Note that libpng has already taken care of the CRC handling.
681 */
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700682
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400683 if (chunk->name[0] == 115 && chunk->name[1] == 84 && /* s T */
684 chunk->name[2] == 69 && chunk->name[3] == 82) /* E R */
685 {
686 /* Found sTER chunk */
687 if (chunk->size != 1)
688 return (-1); /* Error return */
Chris Craikb50c2172013-07-29 15:28:30 -0700689
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400690 if (chunk->data[0] != 0 && chunk->data[0] != 1)
691 return (-1); /* Invalid mode */
Chris Craikb50c2172013-07-29 15:28:30 -0700692
693 if (set_location(png_ptr, my_user_chunk_data, have_sTER))
694 {
695 my_user_chunk_data->sTER_mode=chunk->data[0];
696 return (1);
697 }
698
699 else
700 return (0); /* duplicate sTER - give it to libpng */
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400701 }
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700702
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400703 if (chunk->name[0] != 118 || chunk->name[1] != 112 || /* v p */
704 chunk->name[2] != 65 || chunk->name[3] != 103) /* A g */
705 return (0); /* Did not recognize */
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700706
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400707 /* Found ImageMagick vpAg chunk */
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700708
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400709 if (chunk->size != 9)
710 return (-1); /* Error return */
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700711
Chris Craikb50c2172013-07-29 15:28:30 -0700712 if (!set_location(png_ptr, my_user_chunk_data, have_vpAg))
713 return (0); /* duplicate vpAg */
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700714
Chris Craikb50c2172013-07-29 15:28:30 -0700715 my_user_chunk_data->vpAg_width = png_get_uint_31(png_ptr, chunk->data);
716 my_user_chunk_data->vpAg_height = png_get_uint_31(png_ptr, chunk->data + 4);
717 my_user_chunk_data->vpAg_units = chunk->data[8];
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700718
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400719 return (1);
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700720}
Chris Craikb50c2172013-07-29 15:28:30 -0700721
722#ifdef PNG_WRITE_SUPPORTED
723static void
724write_sTER_chunk(png_structp write_ptr)
725{
726 png_byte png_sTER[5] = {115, 84, 69, 82, '\0'};
727
728 if (verbose)
729 fprintf(STDERR, "\n stereo mode = %d\n", user_chunk_data.sTER_mode);
730
731 png_write_chunk(write_ptr, png_sTER, &user_chunk_data.sTER_mode, 1);
732}
733
734static void
735write_vpAg_chunk(png_structp write_ptr)
736{
737 png_byte png_vpAg[5] = {118, 112, 65, 103, '\0'};
738
739 png_byte vpag_chunk_data[9];
740
741 if (verbose)
742 fprintf(STDERR, " vpAg = %lu x %lu, units = %d\n",
743 (unsigned long)user_chunk_data.vpAg_width,
744 (unsigned long)user_chunk_data.vpAg_height,
745 user_chunk_data.vpAg_units);
746
747 png_save_uint_32(vpag_chunk_data, user_chunk_data.vpAg_width);
748 png_save_uint_32(vpag_chunk_data + 4, user_chunk_data.vpAg_height);
749 vpag_chunk_data[8] = user_chunk_data.vpAg_units;
750 png_write_chunk(write_ptr, png_vpAg, vpag_chunk_data, 9);
751}
752
753static void
754write_chunks(png_structp write_ptr, int location)
755{
756 int i;
757
758 /* Notice that this preserves the original chunk order, however chunks
759 * intercepted by the callback will be written *after* chunks passed to
760 * libpng. This will actually reverse a pair of sTER chunks or a pair of
761 * vpAg chunks, resulting in an error later. This is not worth worrying
762 * about - the chunks should not be duplicated!
763 */
764 for (i=0; i<2; ++i)
765 {
766 if (user_chunk_data.location[i] == (location | have_sTER))
767 write_sTER_chunk(write_ptr);
768
769 else if (user_chunk_data.location[i] == (location | have_vpAg))
770 write_vpAg_chunk(write_ptr);
771 }
772}
773#endif /* PNG_WRITE_SUPPORTED */
774#else /* !PNG_READ_USER_CHUNKS_SUPPORTED */
775# define write_chunks(pp,loc) ((void)0)
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700776#endif
777/* END of code to demonstrate user chunk support */
778
Chris Craikb50c2172013-07-29 15:28:30 -0700779/* START of code to check that libpng has the required text support; this only
780 * checks for the write support because if read support is missing the chunk
781 * will simply not be reported back to pngtest.
782 */
783#ifdef PNG_TEXT_SUPPORTED
784static void
785pngtest_check_text_support(png_const_structp png_ptr, png_textp text_ptr,
786 int num_text)
787{
788 while (num_text > 0)
789 {
790 switch (text_ptr[--num_text].compression)
791 {
792 case PNG_TEXT_COMPRESSION_NONE:
793 break;
794
795 case PNG_TEXT_COMPRESSION_zTXt:
796# ifndef PNG_WRITE_zTXt_SUPPORTED
797 ++unsupported_chunks;
798# endif
799 break;
800
801 case PNG_ITXT_COMPRESSION_NONE:
802 case PNG_ITXT_COMPRESSION_zTXt:
803# ifndef PNG_WRITE_iTXt_SUPPORTED
804 ++unsupported_chunks;
805# endif
806 break;
807
808 default:
809 /* This is an error */
810 png_error(png_ptr, "invalid text chunk compression field");
811 break;
812 }
813 }
814}
815#endif
816/* END of code to check that libpng has the required text support */
817
The Android Open Source Project893912b2009-03-03 19:30:05 -0800818/* Test one file */
Chris Craikb50c2172013-07-29 15:28:30 -0700819static int
The Android Open Source Project893912b2009-03-03 19:30:05 -0800820test_one_file(PNG_CONST char *inname, PNG_CONST char *outname)
821{
822 static png_FILE_p fpin;
823 static png_FILE_p fpout; /* "static" prevents setjmp corruption */
Chris Craikb50c2172013-07-29 15:28:30 -0700824 pngtest_error_parameters error_parameters;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800825 png_structp read_ptr;
826 png_infop read_info_ptr, end_info_ptr;
827#ifdef PNG_WRITE_SUPPORTED
828 png_structp write_ptr;
829 png_infop write_info_ptr;
830 png_infop write_end_info_ptr;
831#else
832 png_structp write_ptr = NULL;
833 png_infop write_info_ptr = NULL;
834 png_infop write_end_info_ptr = NULL;
835#endif
836 png_bytep row_buf;
837 png_uint_32 y;
838 png_uint_32 width, height;
839 int num_pass, pass;
840 int bit_depth, color_type;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800841
842 row_buf = NULL;
Chris Craikb50c2172013-07-29 15:28:30 -0700843 error_parameters.file_name = inname;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800844
The Android Open Source Project893912b2009-03-03 19:30:05 -0800845 if ((fpin = fopen(inname, "rb")) == NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800846 {
847 fprintf(STDERR, "Could not find input file %s\n", inname);
848 return (1);
849 }
850
The Android Open Source Project893912b2009-03-03 19:30:05 -0800851 if ((fpout = fopen(outname, "wb")) == NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800852 {
853 fprintf(STDERR, "Could not open output file %s\n", outname);
854 FCLOSE(fpin);
855 return (1);
856 }
857
Chris Craikb50c2172013-07-29 15:28:30 -0700858 pngtest_debug("Allocating read and write structures");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800859#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700860 read_ptr =
Chris Craikb50c2172013-07-29 15:28:30 -0700861 png_create_read_struct_2(PNG_LIBPNG_VER_STRING, NULL,
862 NULL, NULL, NULL, png_debug_malloc, png_debug_free);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800863#else
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700864 read_ptr =
Chris Craikb50c2172013-07-29 15:28:30 -0700865 png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800866#endif
Chris Craikb50c2172013-07-29 15:28:30 -0700867 png_set_error_fn(read_ptr, &error_parameters, pngtest_error,
868 pngtest_warning);
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700869
The Android Open Source Project893912b2009-03-03 19:30:05 -0800870#ifdef PNG_WRITE_SUPPORTED
871#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700872 write_ptr =
Chris Craikb50c2172013-07-29 15:28:30 -0700873 png_create_write_struct_2(PNG_LIBPNG_VER_STRING, NULL,
874 NULL, NULL, NULL, png_debug_malloc, png_debug_free);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800875#else
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700876 write_ptr =
Chris Craikb50c2172013-07-29 15:28:30 -0700877 png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800878#endif
Chris Craikb50c2172013-07-29 15:28:30 -0700879 png_set_error_fn(write_ptr, &error_parameters, pngtest_error,
880 pngtest_warning);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800881#endif
Chris Craikb50c2172013-07-29 15:28:30 -0700882 pngtest_debug("Allocating read_info, write_info and end_info structures");
The Android Open Source Project893912b2009-03-03 19:30:05 -0800883 read_info_ptr = png_create_info_struct(read_ptr);
884 end_info_ptr = png_create_info_struct(read_ptr);
885#ifdef PNG_WRITE_SUPPORTED
886 write_info_ptr = png_create_info_struct(write_ptr);
887 write_end_info_ptr = png_create_info_struct(write_ptr);
888#endif
889
Chris Craikb50c2172013-07-29 15:28:30 -0700890#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
891 init_callback_info(read_info_ptr);
892 png_set_read_user_chunk_fn(read_ptr, &user_chunk_data,
893 read_user_chunk_callback);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800894#endif
Chris Craikb50c2172013-07-29 15:28:30 -0700895
896#ifdef PNG_SETJMP_SUPPORTED
897 pngtest_debug("Setting jmpbuf for read struct");
898 if (setjmp(png_jmpbuf(read_ptr)))
The Android Open Source Project893912b2009-03-03 19:30:05 -0800899 {
900 fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname);
901 png_free(read_ptr, row_buf);
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700902 row_buf = NULL;
The Android Open Source Project893912b2009-03-03 19:30:05 -0800903 png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
904#ifdef PNG_WRITE_SUPPORTED
905 png_destroy_info_struct(write_ptr, &write_end_info_ptr);
906 png_destroy_write_struct(&write_ptr, &write_info_ptr);
907#endif
908 FCLOSE(fpin);
909 FCLOSE(fpout);
910 return (1);
911 }
The Android Open Source Project893912b2009-03-03 19:30:05 -0800912
913#ifdef PNG_WRITE_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -0700914 pngtest_debug("Setting jmpbuf for write struct");
915
The Android Open Source Project893912b2009-03-03 19:30:05 -0800916 if (setjmp(png_jmpbuf(write_ptr)))
The Android Open Source Project893912b2009-03-03 19:30:05 -0800917 {
918 fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname);
919 png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
920 png_destroy_info_struct(write_ptr, &write_end_info_ptr);
921#ifdef PNG_WRITE_SUPPORTED
922 png_destroy_write_struct(&write_ptr, &write_info_ptr);
923#endif
924 FCLOSE(fpin);
925 FCLOSE(fpout);
926 return (1);
927 }
The Android Open Source Project893912b2009-03-03 19:30:05 -0800928#endif
929#endif
930
Chris Craikb50c2172013-07-29 15:28:30 -0700931 if (strict)
932 {
933 /* Treat png_benign_error() as errors on read */
934 png_set_benign_errors(read_ptr, 0);
935
936#ifdef PNG_WRITE_SUPPORTED
937 /* Treat them as errors on write */
938 png_set_benign_errors(write_ptr, 0);
939#endif
940
941 /* if strict is not set, then app warnings and errors are treated as
942 * warnings in release builds, but not in unstable builds; this can be
943 * changed with '--relaxed'.
944 */
945 }
946
947 else if (relaxed)
948 {
949 /* Allow application (pngtest) errors and warnings to pass */
950 png_set_benign_errors(read_ptr, 1);
951
952#ifdef PNG_WRITE_SUPPORTED
953 png_set_benign_errors(write_ptr, 1);
954#endif
955 }
956
957 pngtest_debug("Initializing input and output streams");
Patrick Scott5f6bd842010-06-28 16:55:16 -0400958#ifdef PNG_STDIO_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800959 png_init_io(read_ptr, fpin);
960# ifdef PNG_WRITE_SUPPORTED
961 png_init_io(write_ptr, fpout);
962# endif
963#else
964 png_set_read_fn(read_ptr, (png_voidp)fpin, pngtest_read_data);
965# ifdef PNG_WRITE_SUPPORTED
966 png_set_write_fn(write_ptr, (png_voidp)fpout, pngtest_write_data,
Patrick Scott5f6bd842010-06-28 16:55:16 -0400967# ifdef PNG_WRITE_FLUSH_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800968 pngtest_flush);
969# else
970 NULL);
971# endif
972# endif
973#endif
Chris Craikb50c2172013-07-29 15:28:30 -0700974
The Android Open Source Project4215dd12009-03-09 11:52:12 -0700975 if (status_dots_requested == 1)
The Android Open Source Project893912b2009-03-03 19:30:05 -0800976 {
977#ifdef PNG_WRITE_SUPPORTED
978 png_set_write_status_fn(write_ptr, write_row_callback);
979#endif
980 png_set_read_status_fn(read_ptr, read_row_callback);
981 }
Chris Craikb50c2172013-07-29 15:28:30 -0700982
The Android Open Source Project893912b2009-03-03 19:30:05 -0800983 else
984 {
985#ifdef PNG_WRITE_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -0700986 png_set_write_status_fn(write_ptr, NULL);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800987#endif
Chris Craikb50c2172013-07-29 15:28:30 -0700988 png_set_read_status_fn(read_ptr, NULL);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800989 }
990
Patrick Scott5f6bd842010-06-28 16:55:16 -0400991#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -0800992 {
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400993 int i;
Chris Craikb50c2172013-07-29 15:28:30 -0700994
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400995 for (i = 0; i<256; i++)
996 filters_used[i] = 0;
Chris Craikb50c2172013-07-29 15:28:30 -0700997
Patrick Scotta0bb96c2009-07-22 11:50:02 -0400998 png_set_read_user_transform_fn(read_ptr, count_filters);
The Android Open Source Project893912b2009-03-03 19:30:05 -0800999 }
1000#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001001#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001002 zero_samples = 0;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001003 png_set_write_user_transform_fn(write_ptr, count_zero_samples);
1004#endif
1005
Chris Craikb50c2172013-07-29 15:28:30 -07001006#ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED
1007 /* Preserve all the unknown chunks, if possible. If this is disabled then,
1008 * even if the png_{get,set}_unknown_chunks stuff is enabled, we can't use
1009 * libpng to *save* the unknown chunks on read (because we can't switch the
1010 * save option on!)
1011 *
1012 * Notice that if SET_UNKNOWN_CHUNKS is *not* supported read will discard all
1013 * unknown chunks and write will write them all.
1014 */
1015#ifdef PNG_SAVE_UNKNOWN_CHUNKS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001016 png_set_keep_unknown_chunks(read_ptr, PNG_HANDLE_CHUNK_ALWAYS,
Chris Craikb50c2172013-07-29 15:28:30 -07001017 NULL, 0);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001018#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001019#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07001020 png_set_keep_unknown_chunks(write_ptr, PNG_HANDLE_CHUNK_ALWAYS,
1021 NULL, 0);
1022#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08001023#endif
1024
Chris Craikb50c2172013-07-29 15:28:30 -07001025 pngtest_debug("Reading info struct");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001026 png_read_info(read_ptr, read_info_ptr);
1027
Chris Craikb50c2172013-07-29 15:28:30 -07001028#ifdef PNG_READ_USER_CHUNKS_SUPPORTED
1029 /* This is a bit of a hack; there is no obvious way in the callback function
1030 * to determine that the chunks before the first IDAT have been read, so
1031 * remove the info_ptr (which is only used to determine position relative to
1032 * PLTE) here to indicate that we are after the IDAT.
1033 */
1034 user_chunk_data.info_ptr = NULL;
1035#endif
1036
1037 pngtest_debug("Transferring info struct");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001038 {
1039 int interlace_type, compression_type, filter_type;
1040
1041 if (png_get_IHDR(read_ptr, read_info_ptr, &width, &height, &bit_depth,
1042 &color_type, &interlace_type, &compression_type, &filter_type))
1043 {
1044 png_set_IHDR(write_ptr, write_info_ptr, width, height, bit_depth,
Patrick Scott5f6bd842010-06-28 16:55:16 -04001045#ifdef PNG_WRITE_INTERLACING_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001046 color_type, interlace_type, compression_type, filter_type);
1047#else
1048 color_type, PNG_INTERLACE_NONE, compression_type, filter_type);
1049#endif
1050 }
1051 }
Patrick Scott5f6bd842010-06-28 16:55:16 -04001052#ifdef PNG_FIXED_POINT_SUPPORTED
1053#ifdef PNG_cHRM_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001054 {
1055 png_fixed_point white_x, white_y, red_x, red_y, green_x, green_y, blue_x,
1056 blue_y;
Chris Craikb50c2172013-07-29 15:28:30 -07001057
Patrick Scott5f6bd842010-06-28 16:55:16 -04001058 if (png_get_cHRM_fixed(read_ptr, read_info_ptr, &white_x, &white_y,
1059 &red_x, &red_y, &green_x, &green_y, &blue_x, &blue_y))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001060 {
1061 png_set_cHRM_fixed(write_ptr, write_info_ptr, white_x, white_y, red_x,
1062 red_y, green_x, green_y, blue_x, blue_y);
1063 }
1064 }
1065#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001066#ifdef PNG_gAMA_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001067 {
1068 png_fixed_point gamma;
1069
1070 if (png_get_gAMA_fixed(read_ptr, read_info_ptr, &gamma))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001071 png_set_gAMA_fixed(write_ptr, write_info_ptr, gamma);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001072 }
1073#endif
1074#else /* Use floating point versions */
Patrick Scott5f6bd842010-06-28 16:55:16 -04001075#ifdef PNG_FLOATING_POINT_SUPPORTED
1076#ifdef PNG_cHRM_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001077 {
1078 double white_x, white_y, red_x, red_y, green_x, green_y, blue_x,
1079 blue_y;
Chris Craikb50c2172013-07-29 15:28:30 -07001080
The Android Open Source Project893912b2009-03-03 19:30:05 -08001081 if (png_get_cHRM(read_ptr, read_info_ptr, &white_x, &white_y, &red_x,
1082 &red_y, &green_x, &green_y, &blue_x, &blue_y))
1083 {
1084 png_set_cHRM(write_ptr, write_info_ptr, white_x, white_y, red_x,
1085 red_y, green_x, green_y, blue_x, blue_y);
1086 }
1087 }
1088#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001089#ifdef PNG_gAMA_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001090 {
1091 double gamma;
1092
1093 if (png_get_gAMA(read_ptr, read_info_ptr, &gamma))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001094 png_set_gAMA(write_ptr, write_info_ptr, gamma);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001095 }
1096#endif
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001097#endif /* Floating point */
1098#endif /* Fixed point */
Patrick Scott5f6bd842010-06-28 16:55:16 -04001099#ifdef PNG_iCCP_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001100 {
1101 png_charp name;
Chris Craikb50c2172013-07-29 15:28:30 -07001102 png_bytep profile;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001103 png_uint_32 proflen;
1104 int compression_type;
1105
1106 if (png_get_iCCP(read_ptr, read_info_ptr, &name, &compression_type,
1107 &profile, &proflen))
1108 {
1109 png_set_iCCP(write_ptr, write_info_ptr, name, compression_type,
1110 profile, proflen);
1111 }
1112 }
1113#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001114#ifdef PNG_sRGB_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001115 {
1116 int intent;
1117
1118 if (png_get_sRGB(read_ptr, read_info_ptr, &intent))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001119 png_set_sRGB(write_ptr, write_info_ptr, intent);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001120 }
1121#endif
1122 {
1123 png_colorp palette;
1124 int num_palette;
1125
1126 if (png_get_PLTE(read_ptr, read_info_ptr, &palette, &num_palette))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001127 png_set_PLTE(write_ptr, write_info_ptr, palette, num_palette);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001128 }
Patrick Scott5f6bd842010-06-28 16:55:16 -04001129#ifdef PNG_bKGD_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001130 {
1131 png_color_16p background;
1132
1133 if (png_get_bKGD(read_ptr, read_info_ptr, &background))
1134 {
1135 png_set_bKGD(write_ptr, write_info_ptr, background);
1136 }
1137 }
1138#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001139#ifdef PNG_hIST_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001140 {
1141 png_uint_16p hist;
1142
1143 if (png_get_hIST(read_ptr, read_info_ptr, &hist))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001144 png_set_hIST(write_ptr, write_info_ptr, hist);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001145 }
1146#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001147#ifdef PNG_oFFs_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001148 {
1149 png_int_32 offset_x, offset_y;
1150 int unit_type;
1151
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001152 if (png_get_oFFs(read_ptr, read_info_ptr, &offset_x, &offset_y,
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001153 &unit_type))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001154 {
1155 png_set_oFFs(write_ptr, write_info_ptr, offset_x, offset_y, unit_type);
1156 }
1157 }
1158#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001159#ifdef PNG_pCAL_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001160 {
1161 png_charp purpose, units;
1162 png_charpp params;
1163 png_int_32 X0, X1;
1164 int type, nparams;
1165
1166 if (png_get_pCAL(read_ptr, read_info_ptr, &purpose, &X0, &X1, &type,
1167 &nparams, &units, &params))
1168 {
1169 png_set_pCAL(write_ptr, write_info_ptr, purpose, X0, X1, type,
1170 nparams, units, params);
1171 }
1172 }
1173#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001174#ifdef PNG_pHYs_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001175 {
1176 png_uint_32 res_x, res_y;
1177 int unit_type;
1178
1179 if (png_get_pHYs(read_ptr, read_info_ptr, &res_x, &res_y, &unit_type))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001180 png_set_pHYs(write_ptr, write_info_ptr, res_x, res_y, unit_type);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001181 }
1182#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001183#ifdef PNG_sBIT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001184 {
1185 png_color_8p sig_bit;
1186
1187 if (png_get_sBIT(read_ptr, read_info_ptr, &sig_bit))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001188 png_set_sBIT(write_ptr, write_info_ptr, sig_bit);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001189 }
1190#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001191#ifdef PNG_sCAL_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07001192#if defined(PNG_FLOATING_POINT_SUPPORTED) && \
1193 defined(PNG_FLOATING_ARITHMETIC_SUPPORTED)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001194 {
1195 int unit;
1196 double scal_width, scal_height;
1197
1198 if (png_get_sCAL(read_ptr, read_info_ptr, &unit, &scal_width,
1199 &scal_height))
1200 {
1201 png_set_sCAL(write_ptr, write_info_ptr, unit, scal_width, scal_height);
1202 }
1203 }
1204#else
1205#ifdef PNG_FIXED_POINT_SUPPORTED
1206 {
1207 int unit;
1208 png_charp scal_width, scal_height;
1209
1210 if (png_get_sCAL_s(read_ptr, read_info_ptr, &unit, &scal_width,
1211 &scal_height))
1212 {
Patrick Scott5f6bd842010-06-28 16:55:16 -04001213 png_set_sCAL_s(write_ptr, write_info_ptr, unit, scal_width,
1214 scal_height);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001215 }
1216 }
1217#endif
1218#endif
1219#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001220#ifdef PNG_TEXT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001221 {
1222 png_textp text_ptr;
1223 int num_text;
1224
1225 if (png_get_text(read_ptr, read_info_ptr, &text_ptr, &num_text) > 0)
1226 {
Chris Craikb50c2172013-07-29 15:28:30 -07001227 pngtest_debug1("Handling %d iTXt/tEXt/zTXt chunks", num_text);
1228
1229 pngtest_check_text_support(read_ptr, text_ptr, num_text);
1230
1231 if (verbose)
1232 {
1233 int i;
1234
1235 printf("\n");
1236 for (i=0; i<num_text; i++)
1237 {
1238 printf(" Text compression[%d]=%d\n",
1239 i, text_ptr[i].compression);
1240 }
1241 }
1242
The Android Open Source Project893912b2009-03-03 19:30:05 -08001243 png_set_text(write_ptr, write_info_ptr, text_ptr, num_text);
1244 }
1245 }
1246#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001247#ifdef PNG_tIME_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001248 {
1249 png_timep mod_time;
1250
1251 if (png_get_tIME(read_ptr, read_info_ptr, &mod_time))
1252 {
1253 png_set_tIME(write_ptr, write_info_ptr, mod_time);
Patrick Scott5f6bd842010-06-28 16:55:16 -04001254#ifdef PNG_TIME_RFC1123_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07001255 if (png_convert_to_rfc1123_buffer(tIME_string, mod_time))
1256 tIME_string[(sizeof tIME_string) - 1] = '\0';
1257
1258 else
1259 {
1260 strncpy(tIME_string, "*** invalid time ***", (sizeof tIME_string));
1261 tIME_string[(sizeof tIME_string) - 1] = '\0';
1262 }
1263
The Android Open Source Project893912b2009-03-03 19:30:05 -08001264 tIME_chunk_present++;
1265#endif /* PNG_TIME_RFC1123_SUPPORTED */
1266 }
1267 }
1268#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001269#ifdef PNG_tRNS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001270 {
Chris Craikb50c2172013-07-29 15:28:30 -07001271 png_bytep trans_alpha;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001272 int num_trans;
Chris Craikb50c2172013-07-29 15:28:30 -07001273 png_color_16p trans_color;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001274
Chris Craikb50c2172013-07-29 15:28:30 -07001275 if (png_get_tRNS(read_ptr, read_info_ptr, &trans_alpha, &num_trans,
1276 &trans_color))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001277 {
Patrick Scott5f6bd842010-06-28 16:55:16 -04001278 int sample_max = (1 << bit_depth);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001279 /* libpng doesn't reject a tRNS chunk with out-of-range samples */
Patrick Scott5f6bd842010-06-28 16:55:16 -04001280 if (!((color_type == PNG_COLOR_TYPE_GRAY &&
Chris Craikb50c2172013-07-29 15:28:30 -07001281 (int)trans_color->gray > sample_max) ||
Patrick Scott5f6bd842010-06-28 16:55:16 -04001282 (color_type == PNG_COLOR_TYPE_RGB &&
Chris Craikb50c2172013-07-29 15:28:30 -07001283 ((int)trans_color->red > sample_max ||
1284 (int)trans_color->green > sample_max ||
1285 (int)trans_color->blue > sample_max))))
1286 png_set_tRNS(write_ptr, write_info_ptr, trans_alpha, num_trans,
1287 trans_color);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001288 }
1289 }
1290#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001291#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001292 {
1293 png_unknown_chunkp unknowns;
Chris Craikb50c2172013-07-29 15:28:30 -07001294 int num_unknowns = png_get_unknown_chunks(read_ptr, read_info_ptr,
The Android Open Source Project893912b2009-03-03 19:30:05 -08001295 &unknowns);
Chris Craikb50c2172013-07-29 15:28:30 -07001296
The Android Open Source Project893912b2009-03-03 19:30:05 -08001297 if (num_unknowns)
1298 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001299 png_set_unknown_chunks(write_ptr, write_info_ptr, unknowns,
1300 num_unknowns);
Chris Craikb50c2172013-07-29 15:28:30 -07001301#if PNG_LIBPNG_VER < 10600
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001302 /* Copy the locations from the read_info_ptr. The automatically
Chris Craikb50c2172013-07-29 15:28:30 -07001303 * generated locations in write_end_info_ptr are wrong prior to 1.6.0
1304 * because they are reset from the write pointer (removed in 1.6.0).
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001305 */
Chris Craikb50c2172013-07-29 15:28:30 -07001306 {
1307 int i;
1308 for (i = 0; i < num_unknowns; i++)
1309 png_set_unknown_chunk_location(write_ptr, write_info_ptr, i,
1310 unknowns[i].location);
1311 }
1312#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08001313 }
1314 }
1315#endif
1316
1317#ifdef PNG_WRITE_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07001318 pngtest_debug("Writing info struct");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001319
Chris Craikb50c2172013-07-29 15:28:30 -07001320 /* Write the info in two steps so that if we write the 'unknown' chunks here
1321 * they go to the correct place.
1322 */
1323 png_write_info_before_PLTE(write_ptr, write_info_ptr);
1324
1325 write_chunks(write_ptr, before_PLTE); /* before PLTE */
1326
The Android Open Source Project893912b2009-03-03 19:30:05 -08001327 png_write_info(write_ptr, write_info_ptr);
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001328
Chris Craikb50c2172013-07-29 15:28:30 -07001329 write_chunks(write_ptr, before_IDAT); /* after PLTE */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001330#endif
1331
1332#ifdef SINGLE_ROWBUF_ALLOC
Chris Craikb50c2172013-07-29 15:28:30 -07001333 pngtest_debug("Allocating row buffer...");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001334 row_buf = (png_bytep)png_malloc(read_ptr,
1335 png_get_rowbytes(read_ptr, read_info_ptr));
Chris Craikb50c2172013-07-29 15:28:30 -07001336
1337 pngtest_debug1("\t0x%08lx", (unsigned long)row_buf);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001338#endif /* SINGLE_ROWBUF_ALLOC */
Chris Craikb50c2172013-07-29 15:28:30 -07001339 pngtest_debug("Writing row data");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001340
1341#if defined(PNG_READ_INTERLACING_SUPPORTED) || \
1342 defined(PNG_WRITE_INTERLACING_SUPPORTED)
1343 num_pass = png_set_interlace_handling(read_ptr);
1344# ifdef PNG_WRITE_SUPPORTED
1345 png_set_interlace_handling(write_ptr);
1346# endif
1347#else
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001348 num_pass = 1;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001349#endif
1350
1351#ifdef PNGTEST_TIMING
1352 t_stop = (float)clock();
1353 t_misc += (t_stop - t_start);
1354 t_start = t_stop;
1355#endif
1356 for (pass = 0; pass < num_pass; pass++)
1357 {
Chris Craikb50c2172013-07-29 15:28:30 -07001358 pngtest_debug1("Writing row data for pass %d", pass);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001359 for (y = 0; y < height; y++)
1360 {
1361#ifndef SINGLE_ROWBUF_ALLOC
Chris Craikb50c2172013-07-29 15:28:30 -07001362 pngtest_debug2("Allocating row buffer (pass %d, y = %u)...", pass, y);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001363 row_buf = (png_bytep)png_malloc(read_ptr,
1364 png_get_rowbytes(read_ptr, read_info_ptr));
Chris Craikb50c2172013-07-29 15:28:30 -07001365
1366 pngtest_debug2("\t0x%08lx (%u bytes)", (unsigned long)row_buf,
The Android Open Source Project893912b2009-03-03 19:30:05 -08001367 png_get_rowbytes(read_ptr, read_info_ptr));
Chris Craikb50c2172013-07-29 15:28:30 -07001368
The Android Open Source Project893912b2009-03-03 19:30:05 -08001369#endif /* !SINGLE_ROWBUF_ALLOC */
Chris Craikb50c2172013-07-29 15:28:30 -07001370 png_read_rows(read_ptr, (png_bytepp)&row_buf, NULL, 1);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001371
1372#ifdef PNG_WRITE_SUPPORTED
1373#ifdef PNGTEST_TIMING
1374 t_stop = (float)clock();
1375 t_decode += (t_stop - t_start);
1376 t_start = t_stop;
1377#endif
1378 png_write_rows(write_ptr, (png_bytepp)&row_buf, 1);
1379#ifdef PNGTEST_TIMING
1380 t_stop = (float)clock();
1381 t_encode += (t_stop - t_start);
1382 t_start = t_stop;
1383#endif
1384#endif /* PNG_WRITE_SUPPORTED */
1385
1386#ifndef SINGLE_ROWBUF_ALLOC
Chris Craikb50c2172013-07-29 15:28:30 -07001387 pngtest_debug2("Freeing row buffer (pass %d, y = %u)", pass, y);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001388 png_free(read_ptr, row_buf);
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001389 row_buf = NULL;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001390#endif /* !SINGLE_ROWBUF_ALLOC */
1391 }
1392 }
1393
Patrick Scott5f6bd842010-06-28 16:55:16 -04001394#ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001395 png_free_data(read_ptr, read_info_ptr, PNG_FREE_UNKN, -1);
1396#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001397#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001398 png_free_data(write_ptr, write_info_ptr, PNG_FREE_UNKN, -1);
1399#endif
1400
Chris Craikb50c2172013-07-29 15:28:30 -07001401 pngtest_debug("Reading and writing end_info data");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001402
1403 png_read_end(read_ptr, end_info_ptr);
Patrick Scott5f6bd842010-06-28 16:55:16 -04001404#ifdef PNG_TEXT_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001405 {
1406 png_textp text_ptr;
1407 int num_text;
1408
1409 if (png_get_text(read_ptr, end_info_ptr, &text_ptr, &num_text) > 0)
1410 {
Chris Craikb50c2172013-07-29 15:28:30 -07001411 pngtest_debug1("Handling %d iTXt/tEXt/zTXt chunks", num_text);
1412
1413 pngtest_check_text_support(read_ptr, text_ptr, num_text);
1414
1415 if (verbose)
1416 {
1417 int i;
1418
1419 printf("\n");
1420 for (i=0; i<num_text; i++)
1421 {
1422 printf(" Text compression[%d]=%d\n",
1423 i, text_ptr[i].compression);
1424 }
1425 }
1426
The Android Open Source Project893912b2009-03-03 19:30:05 -08001427 png_set_text(write_ptr, write_end_info_ptr, text_ptr, num_text);
1428 }
1429 }
1430#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001431#ifdef PNG_tIME_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001432 {
1433 png_timep mod_time;
1434
1435 if (png_get_tIME(read_ptr, end_info_ptr, &mod_time))
1436 {
1437 png_set_tIME(write_ptr, write_end_info_ptr, mod_time);
Patrick Scott5f6bd842010-06-28 16:55:16 -04001438#ifdef PNG_TIME_RFC1123_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07001439 if (png_convert_to_rfc1123_buffer(tIME_string, mod_time))
1440 tIME_string[(sizeof tIME_string) - 1] = '\0';
1441
1442 else
1443 {
1444 strncpy(tIME_string, "*** invalid time ***", sizeof tIME_string);
1445 tIME_string[(sizeof tIME_string)-1] = '\0';
1446 }
1447
The Android Open Source Project893912b2009-03-03 19:30:05 -08001448 tIME_chunk_present++;
1449#endif /* PNG_TIME_RFC1123_SUPPORTED */
1450 }
1451 }
1452#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001453#ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001454 {
1455 png_unknown_chunkp unknowns;
Chris Craikb50c2172013-07-29 15:28:30 -07001456 int num_unknowns = png_get_unknown_chunks(read_ptr, end_info_ptr,
The Android Open Source Project893912b2009-03-03 19:30:05 -08001457 &unknowns);
Chris Craikb50c2172013-07-29 15:28:30 -07001458
The Android Open Source Project893912b2009-03-03 19:30:05 -08001459 if (num_unknowns)
1460 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001461 png_set_unknown_chunks(write_ptr, write_end_info_ptr, unknowns,
1462 num_unknowns);
Chris Craikb50c2172013-07-29 15:28:30 -07001463#if PNG_LIBPNG_VER < 10600
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001464 /* Copy the locations from the read_info_ptr. The automatically
Chris Craikb50c2172013-07-29 15:28:30 -07001465 * generated locations in write_end_info_ptr are wrong prior to 1.6.0
1466 * because they are reset from the write pointer (removed in 1.6.0).
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001467 */
Chris Craikb50c2172013-07-29 15:28:30 -07001468 {
1469 int i;
1470 for (i = 0; i < num_unknowns; i++)
1471 png_set_unknown_chunk_location(write_ptr, write_end_info_ptr, i,
1472 unknowns[i].location);
1473 }
1474#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08001475 }
1476 }
1477#endif
Chris Craikb50c2172013-07-29 15:28:30 -07001478
The Android Open Source Project893912b2009-03-03 19:30:05 -08001479#ifdef PNG_WRITE_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07001480#ifdef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED
1481 /* Normally one would use Z_DEFAULT_STRATEGY for text compression.
1482 * This is here just to make pngtest replicate the results from libpng
1483 * versions prior to 1.5.4, and to test this new API.
1484 */
1485 png_set_text_compression_strategy(write_ptr, Z_FILTERED);
1486#endif
1487
1488 /* When the unknown vpAg/sTER chunks are written by pngtest the only way to
1489 * do it is to write them *before* calling png_write_end. When unknown
1490 * chunks are written by libpng, however, they are written just before IEND.
1491 * There seems to be no way round this, however vpAg/sTER are not expected
1492 * after IDAT.
1493 */
1494 write_chunks(write_ptr, after_IDAT);
1495
The Android Open Source Project893912b2009-03-03 19:30:05 -08001496 png_write_end(write_ptr, write_end_info_ptr);
1497#endif
1498
1499#ifdef PNG_EASY_ACCESS_SUPPORTED
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001500 if (verbose)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001501 {
1502 png_uint_32 iwidth, iheight;
1503 iwidth = png_get_image_width(write_ptr, write_info_ptr);
1504 iheight = png_get_image_height(write_ptr, write_info_ptr);
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001505 fprintf(STDERR, "\n Image width = %lu, height = %lu\n",
The Android Open Source Project893912b2009-03-03 19:30:05 -08001506 (unsigned long)iwidth, (unsigned long)iheight);
1507 }
1508#endif
1509
Chris Craikb50c2172013-07-29 15:28:30 -07001510 pngtest_debug("Destroying data structs");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001511#ifdef SINGLE_ROWBUF_ALLOC
Chris Craikb50c2172013-07-29 15:28:30 -07001512 pngtest_debug("destroying row_buf for read_ptr");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001513 png_free(read_ptr, row_buf);
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001514 row_buf = NULL;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001515#endif /* SINGLE_ROWBUF_ALLOC */
Chris Craikb50c2172013-07-29 15:28:30 -07001516 pngtest_debug("destroying read_ptr, read_info_ptr, end_info_ptr");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001517 png_destroy_read_struct(&read_ptr, &read_info_ptr, &end_info_ptr);
1518#ifdef PNG_WRITE_SUPPORTED
Chris Craikb50c2172013-07-29 15:28:30 -07001519 pngtest_debug("destroying write_end_info_ptr");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001520 png_destroy_info_struct(write_ptr, &write_end_info_ptr);
Chris Craikb50c2172013-07-29 15:28:30 -07001521 pngtest_debug("destroying write_ptr, write_info_ptr");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001522 png_destroy_write_struct(&write_ptr, &write_info_ptr);
1523#endif
Chris Craikb50c2172013-07-29 15:28:30 -07001524 pngtest_debug("Destruction complete.");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001525
1526 FCLOSE(fpin);
1527 FCLOSE(fpout);
1528
Chris Craikb50c2172013-07-29 15:28:30 -07001529 /* Summarize any warnings or errors and in 'strict' mode fail the test.
1530 * Unsupported chunks can result in warnings, in that case ignore the strict
1531 * setting, otherwise fail the test on warnings as well as errors.
1532 */
1533 if (error_count > 0)
1534 {
1535 /* We don't really expect to get here because of the setjmp handling
1536 * above, but this is safe.
1537 */
1538 fprintf(STDERR, "\n %s: %d libpng errors found (%d warnings)",
1539 inname, error_count, warning_count);
1540
1541 if (strict != 0)
1542 return (1);
1543 }
1544
1545# ifdef PNG_WRITE_SUPPORTED
1546 /* If there we no write support nothing was written! */
1547 else if (unsupported_chunks > 0)
1548 {
1549 fprintf(STDERR, "\n %s: unsupported chunks (%d)%s",
1550 inname, unsupported_chunks, strict ? ": IGNORED --strict!" : "");
1551 }
1552# endif
1553
1554 else if (warning_count > 0)
1555 {
1556 fprintf(STDERR, "\n %s: %d libpng warnings found",
1557 inname, warning_count);
1558
1559 if (strict != 0)
1560 return (1);
1561 }
1562
1563 pngtest_debug("Opening files for comparison");
The Android Open Source Project893912b2009-03-03 19:30:05 -08001564 if ((fpin = fopen(inname, "rb")) == NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001565 {
1566 fprintf(STDERR, "Could not find file %s\n", inname);
1567 return (1);
1568 }
1569
The Android Open Source Project893912b2009-03-03 19:30:05 -08001570 if ((fpout = fopen(outname, "rb")) == NULL)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001571 {
1572 fprintf(STDERR, "Could not find file %s\n", outname);
1573 FCLOSE(fpin);
1574 return (1);
1575 }
1576
Chris Craikb50c2172013-07-29 15:28:30 -07001577#ifdef PNG_WRITE_SUPPORTED /* else nothing was written */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001578 {
Chris Craikb50c2172013-07-29 15:28:30 -07001579 int wrote_question = 0;
The Android Open Source Project893912b2009-03-03 19:30:05 -08001580
Chris Craikb50c2172013-07-29 15:28:30 -07001581 for (;;)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001582 {
Chris Craikb50c2172013-07-29 15:28:30 -07001583 png_size_t num_in, num_out;
1584 char inbuf[256], outbuf[256];
The Android Open Source Project893912b2009-03-03 19:30:05 -08001585
The Android Open Source Project893912b2009-03-03 19:30:05 -08001586
Chris Craikb50c2172013-07-29 15:28:30 -07001587 num_in = fread(inbuf, 1, sizeof inbuf, fpin);
1588 num_out = fread(outbuf, 1, sizeof outbuf, fpout);
1589
1590 if (num_in != num_out)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001591 {
Chris Craikb50c2172013-07-29 15:28:30 -07001592 fprintf(STDERR, "\nFiles %s and %s are of a different size\n",
1593 inname, outname);
1594
1595 if (wrote_question == 0 && unsupported_chunks == 0)
1596 {
1597 fprintf(STDERR,
The Android Open Source Project893912b2009-03-03 19:30:05 -08001598 " Was %s written with the same maximum IDAT chunk size (%d bytes),",
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001599 inname, PNG_ZBUF_SIZE);
Chris Craikb50c2172013-07-29 15:28:30 -07001600 fprintf(STDERR,
1601 "\n filtering heuristic (libpng default), compression");
1602 fprintf(STDERR,
1603 " level (zlib default),\n and zlib version (%s)?\n\n",
1604 ZLIB_VERSION);
1605 wrote_question = 1;
1606 }
1607
1608 FCLOSE(fpin);
1609 FCLOSE(fpout);
1610
1611 if (strict != 0 && unsupported_chunks == 0)
1612 return (1);
1613
1614 else
1615 return (0);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001616 }
Chris Craikb50c2172013-07-29 15:28:30 -07001617
1618 if (!num_in)
1619 break;
1620
1621 if (memcmp(inbuf, outbuf, num_in))
1622 {
1623 fprintf(STDERR, "\nFiles %s and %s are different\n", inname,
1624 outname);
1625
1626 if (wrote_question == 0 && unsupported_chunks == 0)
1627 {
1628 fprintf(STDERR,
1629 " Was %s written with the same maximum IDAT chunk size (%d bytes),",
1630 inname, PNG_ZBUF_SIZE);
1631 fprintf(STDERR,
1632 "\n filtering heuristic (libpng default), compression");
1633 fprintf(STDERR,
1634 " level (zlib default),\n and zlib version (%s)?\n\n",
1635 ZLIB_VERSION);
1636 wrote_question = 1;
1637 }
1638
1639 FCLOSE(fpin);
1640 FCLOSE(fpout);
1641
1642 /* NOTE: the unsupported_chunks escape is permitted here because
1643 * unsupported text chunk compression will result in the compression
1644 * mode being changed (to NONE) yet, in the test case, the result
1645 * can be exactly the same size!
1646 */
1647 if (strict != 0 && unsupported_chunks == 0)
1648 return (1);
1649
1650 else
1651 return (0);
1652 }
The Android Open Source Project893912b2009-03-03 19:30:05 -08001653 }
1654 }
Chris Craikb50c2172013-07-29 15:28:30 -07001655#endif /* PNG_WRITE_SUPPORTED */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001656
1657 FCLOSE(fpin);
1658 FCLOSE(fpout);
1659
1660 return (0);
1661}
1662
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001663/* Input and output filenames */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001664#ifdef RISCOS
1665static PNG_CONST char *inname = "pngtest/png";
1666static PNG_CONST char *outname = "pngout/png";
1667#else
1668static PNG_CONST char *inname = "pngtest.png";
1669static PNG_CONST char *outname = "pngout.png";
1670#endif
1671
1672int
1673main(int argc, char *argv[])
1674{
1675 int multiple = 0;
1676 int ierror = 0;
1677
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001678 fprintf(STDERR, "\n Testing libpng version %s\n", PNG_LIBPNG_VER_STRING);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001679 fprintf(STDERR, " with zlib version %s\n", ZLIB_VERSION);
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001680 fprintf(STDERR, "%s", png_get_copyright(NULL));
The Android Open Source Project893912b2009-03-03 19:30:05 -08001681 /* Show the version of libpng used in building the library */
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001682 fprintf(STDERR, " library (%lu):%s",
The Android Open Source Project893912b2009-03-03 19:30:05 -08001683 (unsigned long)png_access_version_number(),
1684 png_get_header_version(NULL));
Chris Craikb50c2172013-07-29 15:28:30 -07001685
The Android Open Source Project893912b2009-03-03 19:30:05 -08001686 /* Show the version of libpng used in building the application */
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001687 fprintf(STDERR, " pngtest (%lu):%s", (unsigned long)PNG_LIBPNG_VER,
The Android Open Source Project893912b2009-03-03 19:30:05 -08001688 PNG_HEADER_VERSION_STRING);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001689
1690 /* Do some consistency checking on the memory allocation settings, I'm
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001691 * not sure this matters, but it is nice to know, the first of these
1692 * tests should be impossible because of the way the macros are set
1693 * in pngconf.h
1694 */
The Android Open Source Project893912b2009-03-03 19:30:05 -08001695#if defined(MAXSEG_64K) && !defined(PNG_MAX_MALLOC_64K)
1696 fprintf(STDERR, " NOTE: Zlib compiled for max 64k, libpng not\n");
1697#endif
1698 /* I think the following can happen. */
1699#if !defined(MAXSEG_64K) && defined(PNG_MAX_MALLOC_64K)
1700 fprintf(STDERR, " NOTE: libpng compiled for max 64k, zlib not\n");
1701#endif
1702
1703 if (strcmp(png_libpng_ver, PNG_LIBPNG_VER_STRING))
1704 {
1705 fprintf(STDERR,
1706 "Warning: versions are different between png.h and png.c\n");
1707 fprintf(STDERR, " png.h version: %s\n", PNG_LIBPNG_VER_STRING);
1708 fprintf(STDERR, " png.c version: %s\n\n", png_libpng_ver);
1709 ++ierror;
1710 }
1711
1712 if (argc > 1)
1713 {
1714 if (strcmp(argv[1], "-m") == 0)
1715 {
1716 multiple = 1;
1717 status_dots_requested = 0;
1718 }
Chris Craikb50c2172013-07-29 15:28:30 -07001719
The Android Open Source Project893912b2009-03-03 19:30:05 -08001720 else if (strcmp(argv[1], "-mv") == 0 ||
1721 strcmp(argv[1], "-vm") == 0 )
1722 {
1723 multiple = 1;
1724 verbose = 1;
1725 status_dots_requested = 1;
1726 }
Chris Craikb50c2172013-07-29 15:28:30 -07001727
The Android Open Source Project893912b2009-03-03 19:30:05 -08001728 else if (strcmp(argv[1], "-v") == 0)
1729 {
1730 verbose = 1;
1731 status_dots_requested = 1;
1732 inname = argv[2];
1733 }
Chris Craikb50c2172013-07-29 15:28:30 -07001734
1735 else if (strcmp(argv[1], "--strict") == 0)
1736 {
1737 status_dots_requested = 0;
1738 verbose = 1;
1739 inname = argv[2];
1740 strict++;
1741 relaxed = 0;
1742 }
1743
1744 else if (strcmp(argv[1], "--relaxed") == 0)
1745 {
1746 status_dots_requested = 0;
1747 verbose = 1;
1748 inname = argv[2];
1749 strict = 0;
1750 relaxed++;
1751 }
1752
The Android Open Source Project893912b2009-03-03 19:30:05 -08001753 else
1754 {
1755 inname = argv[1];
1756 status_dots_requested = 0;
1757 }
1758 }
1759
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001760 if (!multiple && argc == 3 + verbose)
1761 outname = argv[2 + verbose];
The Android Open Source Project893912b2009-03-03 19:30:05 -08001762
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001763 if ((!multiple && argc > 3 + verbose) || (multiple && argc < 2))
The Android Open Source Project893912b2009-03-03 19:30:05 -08001764 {
1765 fprintf(STDERR,
1766 "usage: %s [infile.png] [outfile.png]\n\t%s -m {infile.png}\n",
1767 argv[0], argv[0]);
1768 fprintf(STDERR,
1769 " reads/writes one PNG file (without -m) or multiple files (-m)\n");
1770 fprintf(STDERR,
1771 " with -m %s is used as a temporary file\n", outname);
1772 exit(1);
1773 }
1774
1775 if (multiple)
1776 {
1777 int i;
1778#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1779 int allocation_now = current_allocation;
1780#endif
1781 for (i=2; i<argc; ++i)
1782 {
The Android Open Source Project893912b2009-03-03 19:30:05 -08001783 int kerror;
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001784 fprintf(STDERR, "\n Testing %s:", argv[i]);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001785 kerror = test_one_file(argv[i], outname);
1786 if (kerror == 0)
1787 {
Patrick Scott5f6bd842010-06-28 16:55:16 -04001788#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
1789 int k;
1790#endif
1791#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001792 fprintf(STDERR, "\n PASS (%lu zero samples)\n",
1793 (unsigned long)zero_samples);
1794#else
1795 fprintf(STDERR, " PASS\n");
1796#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001797#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001798 for (k = 0; k<256; k++)
1799 if (filters_used[k])
The Android Open Source Project893912b2009-03-03 19:30:05 -08001800 fprintf(STDERR, " Filter %d was used %lu times\n",
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001801 k, (unsigned long)filters_used[k]);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001802#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001803#ifdef PNG_TIME_RFC1123_SUPPORTED
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001804 if (tIME_chunk_present != 0)
1805 fprintf(STDERR, " tIME = %s\n", tIME_string);
Chris Craikb50c2172013-07-29 15:28:30 -07001806
The Android Open Source Project893912b2009-03-03 19:30:05 -08001807 tIME_chunk_present = 0;
1808#endif /* PNG_TIME_RFC1123_SUPPORTED */
1809 }
Chris Craikb50c2172013-07-29 15:28:30 -07001810
The Android Open Source Project893912b2009-03-03 19:30:05 -08001811 else
1812 {
1813 fprintf(STDERR, " FAIL\n");
1814 ierror += kerror;
1815 }
1816#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1817 if (allocation_now != current_allocation)
1818 fprintf(STDERR, "MEMORY ERROR: %d bytes lost\n",
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001819 current_allocation - allocation_now);
Chris Craikb50c2172013-07-29 15:28:30 -07001820
The Android Open Source Project893912b2009-03-03 19:30:05 -08001821 if (current_allocation != 0)
1822 {
1823 memory_infop pinfo = pinformation;
1824
1825 fprintf(STDERR, "MEMORY ERROR: %d bytes still allocated\n",
1826 current_allocation);
Chris Craikb50c2172013-07-29 15:28:30 -07001827
The Android Open Source Project893912b2009-03-03 19:30:05 -08001828 while (pinfo != NULL)
1829 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001830 fprintf(STDERR, " %lu bytes at %x\n",
1831 (unsigned long)pinfo->size,
Chris Craikb50c2172013-07-29 15:28:30 -07001832 (unsigned int)pinfo->pointer);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001833 pinfo = pinfo->next;
1834 }
1835 }
1836#endif
1837 }
1838#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1839 fprintf(STDERR, " Current memory allocation: %10d bytes\n",
1840 current_allocation);
1841 fprintf(STDERR, " Maximum memory allocation: %10d bytes\n",
1842 maximum_allocation);
1843 fprintf(STDERR, " Total memory allocation: %10d bytes\n",
1844 total_allocation);
1845 fprintf(STDERR, " Number of allocations: %10d\n",
1846 num_allocations);
1847#endif
1848 }
Chris Craikb50c2172013-07-29 15:28:30 -07001849
The Android Open Source Project893912b2009-03-03 19:30:05 -08001850 else
1851 {
1852 int i;
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001853 for (i = 0; i<3; ++i)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001854 {
1855 int kerror;
1856#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1857 int allocation_now = current_allocation;
1858#endif
Chris Craikb50c2172013-07-29 15:28:30 -07001859 if (i == 1)
1860 status_dots_requested = 1;
1861
1862 else if (verbose == 0)
1863 status_dots_requested = 0;
1864
The Android Open Source Project893912b2009-03-03 19:30:05 -08001865 if (i == 0 || verbose == 1 || ierror != 0)
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001866 fprintf(STDERR, "\n Testing %s:", inname);
Chris Craikb50c2172013-07-29 15:28:30 -07001867
The Android Open Source Project893912b2009-03-03 19:30:05 -08001868 kerror = test_one_file(inname, outname);
Chris Craikb50c2172013-07-29 15:28:30 -07001869
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001870 if (kerror == 0)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001871 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001872 if (verbose == 1 || i == 2)
The Android Open Source Project893912b2009-03-03 19:30:05 -08001873 {
Patrick Scott5f6bd842010-06-28 16:55:16 -04001874#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001875 int k;
1876#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001877#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED
The Android Open Source Project893912b2009-03-03 19:30:05 -08001878 fprintf(STDERR, "\n PASS (%lu zero samples)\n",
1879 (unsigned long)zero_samples);
1880#else
1881 fprintf(STDERR, " PASS\n");
1882#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001883#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001884 for (k = 0; k<256; k++)
1885 if (filters_used[k])
The Android Open Source Project893912b2009-03-03 19:30:05 -08001886 fprintf(STDERR, " Filter %d was used %lu times\n",
Patrick Scott5f6bd842010-06-28 16:55:16 -04001887 k, (unsigned long)filters_used[k]);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001888#endif
Patrick Scott5f6bd842010-06-28 16:55:16 -04001889#ifdef PNG_TIME_RFC1123_SUPPORTED
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001890 if (tIME_chunk_present != 0)
1891 fprintf(STDERR, " tIME = %s\n", tIME_string);
The Android Open Source Project893912b2009-03-03 19:30:05 -08001892#endif /* PNG_TIME_RFC1123_SUPPORTED */
1893 }
1894 }
Chris Craikb50c2172013-07-29 15:28:30 -07001895
The Android Open Source Project893912b2009-03-03 19:30:05 -08001896 else
1897 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001898 if (verbose == 0 && i != 2)
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001899 fprintf(STDERR, "\n Testing %s:", inname);
Chris Craikb50c2172013-07-29 15:28:30 -07001900
The Android Open Source Project893912b2009-03-03 19:30:05 -08001901 fprintf(STDERR, " FAIL\n");
1902 ierror += kerror;
1903 }
1904#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1905 if (allocation_now != current_allocation)
1906 fprintf(STDERR, "MEMORY ERROR: %d bytes lost\n",
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001907 current_allocation - allocation_now);
Chris Craikb50c2172013-07-29 15:28:30 -07001908
The Android Open Source Project893912b2009-03-03 19:30:05 -08001909 if (current_allocation != 0)
1910 {
1911 memory_infop pinfo = pinformation;
1912
1913 fprintf(STDERR, "MEMORY ERROR: %d bytes still allocated\n",
1914 current_allocation);
Chris Craikb50c2172013-07-29 15:28:30 -07001915
The Android Open Source Project893912b2009-03-03 19:30:05 -08001916 while (pinfo != NULL)
1917 {
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001918 fprintf(STDERR, " %lu bytes at %x\n",
The Android Open Source Project893912b2009-03-03 19:30:05 -08001919 (unsigned long)pinfo->size, (unsigned int)pinfo->pointer);
1920 pinfo = pinfo->next;
1921 }
1922 }
1923#endif
1924 }
1925#if defined(PNG_USER_MEM_SUPPORTED) && PNG_DEBUG
1926 fprintf(STDERR, " Current memory allocation: %10d bytes\n",
1927 current_allocation);
1928 fprintf(STDERR, " Maximum memory allocation: %10d bytes\n",
1929 maximum_allocation);
1930 fprintf(STDERR, " Total memory allocation: %10d bytes\n",
1931 total_allocation);
1932 fprintf(STDERR, " Number of allocations: %10d\n",
1933 num_allocations);
1934#endif
1935 }
1936
1937#ifdef PNGTEST_TIMING
1938 t_stop = (float)clock();
1939 t_misc += (t_stop - t_start);
1940 t_start = t_stop;
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001941 fprintf(STDERR, " CPU time used = %.3f seconds",
The Android Open Source Project893912b2009-03-03 19:30:05 -08001942 (t_misc+t_decode+t_encode)/(float)CLOCKS_PER_SEC);
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001943 fprintf(STDERR, " (decoding %.3f,\n",
The Android Open Source Project893912b2009-03-03 19:30:05 -08001944 t_decode/(float)CLOCKS_PER_SEC);
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001945 fprintf(STDERR, " encoding %.3f ,",
The Android Open Source Project893912b2009-03-03 19:30:05 -08001946 t_encode/(float)CLOCKS_PER_SEC);
The Android Open Source Project4215dd12009-03-09 11:52:12 -07001947 fprintf(STDERR, " other %.3f seconds)\n\n",
The Android Open Source Project893912b2009-03-03 19:30:05 -08001948 t_misc/(float)CLOCKS_PER_SEC);
1949#endif
1950
1951 if (ierror == 0)
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001952 fprintf(STDERR, " libpng passes test\n");
Chris Craikb50c2172013-07-29 15:28:30 -07001953
The Android Open Source Project893912b2009-03-03 19:30:05 -08001954 else
Patrick Scotta0bb96c2009-07-22 11:50:02 -04001955 fprintf(STDERR, " libpng FAILS test\n");
Chris Craikb50c2172013-07-29 15:28:30 -07001956
The Android Open Source Project893912b2009-03-03 19:30:05 -08001957 return (int)(ierror != 0);
1958}
Chris Craikb50c2172013-07-29 15:28:30 -07001959#else
1960int
1961main(void)
1962{
1963 fprintf(STDERR,
1964 " test ignored because libpng was not built with read support\n");
1965 /* And skip this test */
1966 return 77;
1967}
1968#endif
The Android Open Source Project893912b2009-03-03 19:30:05 -08001969
1970/* Generate a compiler error if there is an old png.h in the search path. */
Chris Craikb50c2172013-07-29 15:28:30 -07001971typedef png_libpng_version_1_6_3 Your_png_h_is_not_version_1_6_3;