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

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

Issue 140074: Updates the PNG library to 1.2.37, enables some functionality for O3D (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « third_party/libpng/pngread.c ('k') | third_party/libpng/pngrtran.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 /* pngrio.c - functions for data input 2 /* pngrio.c - functions for data input
3 * 3 *
4 * Last changed in libpng 1.2.36 [May 7, 2009] 4 * Last changed in libpng 1.2.37 [June 4, 2009]
5 * For conditions of distribution and use, see copyright notice in png.h 5 * For conditions of distribution and use, see copyright notice in png.h
6 * Copyright (c) 1998-2009 Glenn Randers-Pehrson 6 * Copyright (c) 1998-2009 Glenn Randers-Pehrson
7 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) 7 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) 8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
9 * 9 *
10 * This file provides a location for all input. Users who need 10 * This file provides a location for all input. Users who need
11 * special handling are expected to write a function that has the same 11 * special handling are expected to write a function that has the same
12 * arguments as this and performs a similar function, but that possibly 12 * arguments as this and performs a similar function, but that possibly
13 * has a different input method. Note that you shouldn't change this 13 * has a different input method. Note that you shouldn't change this
14 * function, but rather write a replacement function and then make 14 * function, but rather write a replacement function and then make
15 * libpng use it at run time with png_set_read_fn(...). 15 * libpng use it at run time with png_set_read_fn(...).
16 */ 16 */
17 17
18 #define PNG_INTERNAL 18 #define PNG_INTERNAL
19 #include "png.h" 19 #include "png.h"
20 #if defined(PNG_READ_SUPPORTED) 20 #if defined(PNG_READ_SUPPORTED)
21 21
22 /* Read the data from whatever input you are using. The default routine 22 /* Read the data from whatever input you are using. The default routine
23 reads from a file pointer. Note that this routine sometimes gets called 23 * reads from a file pointer. Note that this routine sometimes gets called
24 with very small lengths, so you should implement some kind of simple 24 * with very small lengths, so you should implement some kind of simple
25 buffering if you are using unbuffered reads. This should never be asked 25 * buffering if you are using unbuffered reads. This should never be asked
26 to read more then 64K on a 16 bit machine. */ 26 * to read more then 64K on a 16 bit machine.
27 */
27 void /* PRIVATE */ 28 void /* PRIVATE */
28 png_read_data(png_structp png_ptr, png_bytep data, png_size_t length) 29 png_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
29 { 30 {
30 png_debug1(4, "reading %d bytes", (int)length); 31 png_debug1(4, "reading %d bytes", (int)length);
31 if (png_ptr->read_data_fn != NULL) 32 if (png_ptr->read_data_fn != NULL)
32 (*(png_ptr->read_data_fn))(png_ptr, data, length); 33 (*(png_ptr->read_data_fn))(png_ptr, data, length);
33 else 34 else
34 png_error(png_ptr, "Call to NULL read function"); 35 png_error(png_ptr, "Call to NULL read function");
35 } 36 }
36 37
37 #if !defined(PNG_NO_STDIO) 38 #if !defined(PNG_NO_STDIO)
38 /* This is the function that does the actual reading of data. If you are 39 /* This is the function that does the actual reading of data. If you are
39 not reading from a standard C stream, you should create a replacement 40 * not reading from a standard C stream, you should create a replacement
40 read_data function and use it at run time with png_set_read_fn(), rather 41 * read_data function and use it at run time with png_set_read_fn(), rather
41 than changing the library. */ 42 * than changing the library.
43 */
42 #ifndef USE_FAR_KEYWORD 44 #ifndef USE_FAR_KEYWORD
43 void PNGAPI 45 void PNGAPI
44 png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length) 46 png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
45 { 47 {
46 png_size_t check; 48 png_size_t check;
47 49
48 if (png_ptr == NULL) return; 50 if (png_ptr == NULL)
51 return;
49 /* fread() returns 0 on error, so it is OK to store this in a png_size_t 52 /* fread() returns 0 on error, so it is OK to store this in a png_size_t
50 * instead of an int, which is what fread() actually returns. 53 * instead of an int, which is what fread() actually returns.
51 */ 54 */
52 #if defined(_WIN32_WCE) 55 #if defined(_WIN32_WCE)
53 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) ) 56 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
54 check = 0; 57 check = 0;
55 #else 58 #else
56 check = (png_size_t)fread(data, (png_size_t)1, length, 59 check = (png_size_t)fread(data, (png_size_t)1, length,
57 (png_FILE_p)png_ptr->io_ptr); 60 (png_FILE_p)png_ptr->io_ptr);
58 #endif 61 #endif
59 62
60 if (check != length) 63 if (check != length)
61 png_error(png_ptr, "Read Error"); 64 png_error(png_ptr, "Read Error");
62 } 65 }
63 #else 66 #else
64 /* this is the model-independent version. Since the standard I/O library 67 /* This is the model-independent version. Since the standard I/O library
65 can't handle far buffers in the medium and small models, we have to copy 68 can't handle far buffers in the medium and small models, we have to copy
66 the data. 69 the data.
67 */ 70 */
68 71
69 #define NEAR_BUF_SIZE 1024 72 #define NEAR_BUF_SIZE 1024
70 #define MIN(a,b) (a <= b ? a : b) 73 #define MIN(a,b) (a <= b ? a : b)
71 74
72 static void PNGAPI 75 static void PNGAPI
73 png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length) 76 png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length)
74 { 77 {
75 int check; 78 int check;
76 png_byte *n_data; 79 png_byte *n_data;
77 png_FILE_p io_ptr; 80 png_FILE_p io_ptr;
78 81
79 if (png_ptr == NULL) return; 82 if (png_ptr == NULL)
83 return;
80 /* Check if data really is near. If so, use usual code. */ 84 /* Check if data really is near. If so, use usual code. */
81 n_data = (png_byte *)CVT_PTR_NOCHECK(data); 85 n_data = (png_byte *)CVT_PTR_NOCHECK(data);
82 io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr); 86 io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr);
83 if ((png_bytep)n_data == data) 87 if ((png_bytep)n_data == data)
84 { 88 {
85 #if defined(_WIN32_WCE) 89 #if defined(_WIN32_WCE)
86 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) ) 90 if ( !ReadFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
87 check = 0; 91 check = 0;
88 #else 92 #else
89 check = fread(n_data, 1, length, io_ptr); 93 check = fread(n_data, 1, length, io_ptr);
(...skipping 24 matching lines...) Expand all
114 } 118 }
115 while (remaining != 0); 119 while (remaining != 0);
116 } 120 }
117 if ((png_uint_32)check != (png_uint_32)length) 121 if ((png_uint_32)check != (png_uint_32)length)
118 png_error(png_ptr, "read Error"); 122 png_error(png_ptr, "read Error");
119 } 123 }
120 #endif 124 #endif
121 #endif 125 #endif
122 126
123 /* This function allows the application to supply a new input function 127 /* This function allows the application to supply a new input function
124 for libpng if standard C streams aren't being used. 128 * for libpng if standard C streams aren't being used.
125 129 *
126 This function takes as its arguments: 130 * This function takes as its arguments:
127 png_ptr - pointer to a png input data structure 131 * png_ptr - pointer to a png input data structure
128 io_ptr - pointer to user supplied structure containing info about 132 * io_ptr - pointer to user supplied structure containing info about
129 the input functions. May be NULL. 133 * the input functions. May be NULL.
130 read_data_fn - pointer to a new input function that takes as its 134 * read_data_fn - pointer to a new input function that takes as its
131 arguments a pointer to a png_struct, a pointer to 135 * arguments a pointer to a png_struct, a pointer to
132 a location where input data can be stored, and a 32-bit 136 * a location where input data can be stored, and a 32-bit
133 unsigned int that is the number of bytes to be read. 137 * unsigned int that is the number of bytes to be read.
134 To exit and output any fatal error messages the new write 138 * To exit and output any fatal error messages the new write
135 function should call png_error(png_ptr, "Error msg"). 139 * function should call png_error(png_ptr, "Error msg").
136 May be NULL, in which case libpng's default function will 140 * May be NULL, in which case libpng's default function will
137 be used. */ 141 * be used.
142 */
138 void PNGAPI 143 void PNGAPI
139 png_set_read_fn(png_structp png_ptr, png_voidp io_ptr, 144 png_set_read_fn(png_structp png_ptr, png_voidp io_ptr,
140 png_rw_ptr read_data_fn) 145 png_rw_ptr read_data_fn)
141 { 146 {
142 if (png_ptr == NULL) return; 147 if (png_ptr == NULL)
148 return;
143 png_ptr->io_ptr = io_ptr; 149 png_ptr->io_ptr = io_ptr;
144 150
145 #if !defined(PNG_NO_STDIO) 151 #if !defined(PNG_NO_STDIO)
146 if (read_data_fn != NULL) 152 if (read_data_fn != NULL)
147 png_ptr->read_data_fn = read_data_fn; 153 png_ptr->read_data_fn = read_data_fn;
148 else 154 else
149 png_ptr->read_data_fn = png_default_read_data; 155 png_ptr->read_data_fn = png_default_read_data;
150 #else 156 #else
151 png_ptr->read_data_fn = read_data_fn; 157 png_ptr->read_data_fn = read_data_fn;
152 #endif 158 #endif
153 159
154 /* It is an error to write to a read device */ 160 /* It is an error to write to a read device */
155 if (png_ptr->write_data_fn != NULL) 161 if (png_ptr->write_data_fn != NULL)
156 { 162 {
157 png_ptr->write_data_fn = NULL; 163 png_ptr->write_data_fn = NULL;
158 png_warning(png_ptr, 164 png_warning(png_ptr,
159 "It's an error to set both read_data_fn and write_data_fn in the "); 165 "It's an error to set both read_data_fn and write_data_fn in the ");
160 png_warning(png_ptr, 166 png_warning(png_ptr,
161 "same structure. Resetting write_data_fn to NULL."); 167 "same structure. Resetting write_data_fn to NULL.");
162 } 168 }
163 169
164 #if defined(PNG_WRITE_FLUSH_SUPPORTED) 170 #if defined(PNG_WRITE_FLUSH_SUPPORTED)
165 png_ptr->output_flush_fn = NULL; 171 png_ptr->output_flush_fn = NULL;
166 #endif 172 #endif
167 } 173 }
168 #endif /* PNG_READ_SUPPORTED */ 174 #endif /* PNG_READ_SUPPORTED */
OLDNEW
« no previous file with comments | « third_party/libpng/pngread.c ('k') | third_party/libpng/pngrtran.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698