Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(600)

Side by Side Diff: third_party/libpng/pngread.c

Issue 2835021: Update libpng to version 1.2.44 (Closed)
Patch Set: Update to 1.2.44 Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/libpng/pngpread.c ('k') | third_party/libpng/pngrutil.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* pngread.c - read a PNG file 2 /* pngread.c - read a PNG file
3 * 3 *
4 * Last changed in libpng 1.2.43 [February 25, 2010] 4 * Last changed in libpng 1.2.44 [June 26, 2010]
5 * Copyright (c) 1998-2009 Glenn Randers-Pehrson 5 * Copyright (c) 1998-2010 Glenn Randers-Pehrson
6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) 6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) 7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
8 * 8 *
9 * This code is released under the libpng license. 9 * This code is released under the libpng license.
10 * For conditions of distribution and use, see the disclaimer 10 * For conditions of distribution and use, see the disclaimer
11 * and license in png.h 11 * and license in png.h
12 * 12 *
13 * This file contains routines that an application calls directly to 13 * This file contains routines that an application calls directly to
14 * read a PNG file or stream. 14 * read a PNG file or stream.
15 */ 15 */
(...skipping 1503 matching lines...) Expand 10 before | Expand all | Expand 10 after
1519 /* Read rest of file, and get additional chunks in info_ptr - REQUIRED */ 1519 /* Read rest of file, and get additional chunks in info_ptr - REQUIRED */
1520 png_read_end(png_ptr, info_ptr); 1520 png_read_end(png_ptr, info_ptr);
1521 1521
1522 transforms = transforms; /* Quiet compiler warnings */ 1522 transforms = transforms; /* Quiet compiler warnings */
1523 params = params; 1523 params = params;
1524 1524
1525 } 1525 }
1526 #endif /* PNG_INFO_IMAGE_SUPPORTED */ 1526 #endif /* PNG_INFO_IMAGE_SUPPORTED */
1527 #endif /* PNG_SEQUENTIAL_READ_SUPPORTED */ 1527 #endif /* PNG_SEQUENTIAL_READ_SUPPORTED */
1528 #endif /* PNG_READ_SUPPORTED */ 1528 #endif /* PNG_READ_SUPPORTED */
OLDNEW
« no previous file with comments | « third_party/libpng/pngpread.c ('k') | third_party/libpng/pngrutil.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698