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

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

Issue 2021403002: Update libpng to 1.6.22 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rearrange pnglibconf.h Created 4 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
« no previous file with comments | « third_party/libpng/pngvcrd.c ('k') | third_party/libpng/pngwrite.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 /* pngwio.c - functions for data output 2 /* pngwio.c - functions for data output
3 * 3 *
4 * Last changed in libpng 1.2.41 [December 3, 2009] 4 * Last changed in libpng 1.6.15 [November 20, 2014]
5 * Copyright (c) 1998-2002,2004,2006-209 Glenn Randers-Pehrson 5 * Copyright (c) 1998-2002,2004,2006-2014 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 provides a location for all output. Users who need 13 * This file provides a location for all output. Users who need
14 * special handling are expected to write functions that have the same 14 * special handling are expected to write functions that have the same
15 * arguments as these and perform similar functions, but that possibly 15 * arguments as these and perform similar functions, but that possibly
16 * use different output methods. Note that you shouldn't change these 16 * use different output methods. Note that you shouldn't change these
17 * functions, but rather write replacement functions and then change 17 * functions, but rather write replacement functions and then change
18 * them at run time with png_set_write_fn(...). 18 * them at run time with png_set_write_fn(...).
19 */ 19 */
20 20
21 #define PNG_INTERNAL 21 #include "pngpriv.h"
22 #define PNG_NO_PEDANTIC_WARNINGS 22
23 #include "png.h"
24 #ifdef PNG_WRITE_SUPPORTED 23 #ifdef PNG_WRITE_SUPPORTED
25 24
26 /* Write the data to whatever output you are using. The default routine 25 /* Write the data to whatever output you are using. The default routine
27 * writes to a file pointer. Note that this routine sometimes gets called 26 * writes to a file pointer. Note that this routine sometimes gets called
28 * with very small lengths, so you should implement some kind of simple 27 * with very small lengths, so you should implement some kind of simple
29 * buffering if you are using unbuffered writes. This should never be asked 28 * buffering if you are using unbuffered writes. This should never be asked
30 * to write more than 64K on a 16 bit machine. 29 * to write more than 64K on a 16-bit machine.
31 */ 30 */
32 31
33 void /* PRIVATE */ 32 void /* PRIVATE */
34 png_write_data(png_structp png_ptr, png_bytep data, png_size_t length) 33 png_write_data(png_structrp png_ptr, png_const_bytep data, png_size_t length)
35 { 34 {
35 /* NOTE: write_data_fn must not change the buffer! */
36 if (png_ptr->write_data_fn != NULL ) 36 if (png_ptr->write_data_fn != NULL )
37 (*(png_ptr->write_data_fn))(png_ptr, data, length); 37 (*(png_ptr->write_data_fn))(png_ptr, png_constcast(png_bytep,data),
38 length);
39
38 else 40 else
39 png_error(png_ptr, "Call to NULL write function"); 41 png_error(png_ptr, "Call to NULL write function");
40 } 42 }
41 43
42 #ifdef PNG_STDIO_SUPPORTED 44 #ifdef PNG_STDIO_SUPPORTED
43 /* This is the function that does the actual writing of data. If you are 45 /* This is the function that does the actual writing of data. If you are
44 * not writing to a standard C stream, you should create a replacement 46 * not writing to a standard C stream, you should create a replacement
45 * write_data function and use it at run time with png_set_write_fn(), rather 47 * write_data function and use it at run time with png_set_write_fn(), rather
46 * than changing the library. 48 * than changing the library.
47 */ 49 */
48 #ifndef USE_FAR_KEYWORD 50 void PNGCBAPI
49 void PNGAPI
50 png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length) 51 png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
51 { 52 {
52 png_uint_32 check; 53 png_size_t check;
53 54
54 if (png_ptr == NULL) 55 if (png_ptr == NULL)
55 return; 56 return;
56 #ifdef _WIN32_WCE 57
57 if ( !WriteFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
58 check = 0;
59 #else
60 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr)); 58 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
61 #endif 59
62 if (check != length) 60 if (check != length)
63 png_error(png_ptr, "Write Error"); 61 png_error(png_ptr, "Write Error");
64 } 62 }
65 #else
66 /* This is the model-independent version. Since the standard I/O library
67 * can't handle far buffers in the medium and small models, we have to copy
68 * the data.
69 */
70
71 #define NEAR_BUF_SIZE 1024
72 #define MIN(a,b) (a <= b ? a : b)
73
74 void PNGAPI
75 png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
76 {
77 png_uint_32 check;
78 png_byte *near_data; /* Needs to be "png_byte *" instead of "png_bytep" */
79 png_FILE_p io_ptr;
80
81 if (png_ptr == NULL)
82 return;
83 /* Check if data really is near. If so, use usual code. */
84 near_data = (png_byte *)CVT_PTR_NOCHECK(data);
85 io_ptr = (png_FILE_p)CVT_PTR(png_ptr->io_ptr);
86 if ((png_bytep)near_data == data)
87 {
88 #ifdef _WIN32_WCE
89 if ( !WriteFile(io_ptr, near_data, length, &check, NULL) )
90 check = 0;
91 #else
92 check = fwrite(near_data, 1, length, io_ptr);
93 #endif
94 }
95 else
96 {
97 png_byte buf[NEAR_BUF_SIZE];
98 png_size_t written, remaining, err;
99 check = 0;
100 remaining = length;
101 do
102 {
103 written = MIN(NEAR_BUF_SIZE, remaining);
104 png_memcpy(buf, data, written); /* Copy far buffer to near buffer */
105 #ifdef _WIN32_WCE
106 if ( !WriteFile(io_ptr, buf, written, &err, NULL) )
107 err = 0;
108 #else
109 err = fwrite(buf, 1, written, io_ptr);
110 #endif
111 if (err != written)
112 break;
113
114 else
115 check += err;
116
117 data += written;
118 remaining -= written;
119 }
120 while (remaining != 0);
121 }
122 if (check != length)
123 png_error(png_ptr, "Write Error");
124 }
125
126 #endif
127 #endif 63 #endif
128 64
129 /* This function is called to output any data pending writing (normally 65 /* This function is called to output any data pending writing (normally
130 * to disk). After png_flush is called, there should be no data pending 66 * to disk). After png_flush is called, there should be no data pending
131 * writing in any buffers. 67 * writing in any buffers.
132 */ 68 */
133 #ifdef PNG_WRITE_FLUSH_SUPPORTED 69 #ifdef PNG_WRITE_FLUSH_SUPPORTED
134 void /* PRIVATE */ 70 void /* PRIVATE */
135 png_flush(png_structp png_ptr) 71 png_flush(png_structrp png_ptr)
136 { 72 {
137 if (png_ptr->output_flush_fn != NULL) 73 if (png_ptr->output_flush_fn != NULL)
138 (*(png_ptr->output_flush_fn))(png_ptr); 74 (*(png_ptr->output_flush_fn))(png_ptr);
139 } 75 }
140 76
141 #ifdef PNG_STDIO_SUPPORTED 77 # ifdef PNG_STDIO_SUPPORTED
142 void PNGAPI 78 void PNGCBAPI
143 png_default_flush(png_structp png_ptr) 79 png_default_flush(png_structp png_ptr)
144 { 80 {
145 #ifndef _WIN32_WCE
146 png_FILE_p io_ptr; 81 png_FILE_p io_ptr;
147 #endif 82
148 if (png_ptr == NULL) 83 if (png_ptr == NULL)
149 return; 84 return;
150 #ifndef _WIN32_WCE 85
151 io_ptr = (png_FILE_p)CVT_PTR((png_ptr->io_ptr)); 86 io_ptr = png_voidcast(png_FILE_p, (png_ptr->io_ptr));
152 fflush(io_ptr); 87 fflush(io_ptr);
153 #endif
154 } 88 }
155 #endif 89 # endif
156 #endif 90 #endif
157 91
158 /* This function allows the application to supply new output functions for 92 /* This function allows the application to supply new output functions for
159 * libpng if standard C streams aren't being used. 93 * libpng if standard C streams aren't being used.
160 * 94 *
161 * This function takes as its arguments: 95 * This function takes as its arguments:
162 * png_ptr - pointer to a png output data structure 96 * png_ptr - pointer to a png output data structure
163 * io_ptr - pointer to user supplied structure containing info about 97 * io_ptr - pointer to user supplied structure containing info about
164 * the output functions. May be NULL. 98 * the output functions. May be NULL.
165 * write_data_fn - pointer to a new output function that takes as its 99 * write_data_fn - pointer to a new output function that takes as its
(...skipping 12 matching lines...) Expand all
178 * supplied although it doesn't have to do anything. If 112 * supplied although it doesn't have to do anything. If
179 * PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile 113 * PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile
180 * time, output_flush_fn will be ignored, although it must be 114 * time, output_flush_fn will be ignored, although it must be
181 * supplied for compatibility. May be NULL, in which case 115 * supplied for compatibility. May be NULL, in which case
182 * libpng's default function will be used, if 116 * libpng's default function will be used, if
183 * PNG_WRITE_FLUSH_SUPPORTED is defined. This is not 117 * PNG_WRITE_FLUSH_SUPPORTED is defined. This is not
184 * a good idea if io_ptr does not point to a standard 118 * a good idea if io_ptr does not point to a standard
185 * *FILE structure. 119 * *FILE structure.
186 */ 120 */
187 void PNGAPI 121 void PNGAPI
188 png_set_write_fn(png_structp png_ptr, png_voidp io_ptr, 122 png_set_write_fn(png_structrp png_ptr, png_voidp io_ptr,
189 png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn) 123 png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)
190 { 124 {
191 if (png_ptr == NULL) 125 if (png_ptr == NULL)
192 return; 126 return;
193 127
194 png_ptr->io_ptr = io_ptr; 128 png_ptr->io_ptr = io_ptr;
195 129
196 #ifdef PNG_STDIO_SUPPORTED 130 #ifdef PNG_STDIO_SUPPORTED
197 if (write_data_fn != NULL) 131 if (write_data_fn != NULL)
198 png_ptr->write_data_fn = write_data_fn; 132 png_ptr->write_data_fn = write_data_fn;
199 133
200 else 134 else
201 png_ptr->write_data_fn = png_default_write_data; 135 png_ptr->write_data_fn = png_default_write_data;
202 #else 136 #else
203 png_ptr->write_data_fn = write_data_fn; 137 png_ptr->write_data_fn = write_data_fn;
204 #endif 138 #endif
205 139
206 #ifdef PNG_WRITE_FLUSH_SUPPORTED 140 #ifdef PNG_WRITE_FLUSH_SUPPORTED
207 #ifdef PNG_STDIO_SUPPORTED 141 # ifdef PNG_STDIO_SUPPORTED
142
208 if (output_flush_fn != NULL) 143 if (output_flush_fn != NULL)
209 png_ptr->output_flush_fn = output_flush_fn; 144 png_ptr->output_flush_fn = output_flush_fn;
210 145
211 else 146 else
212 png_ptr->output_flush_fn = png_default_flush; 147 png_ptr->output_flush_fn = png_default_flush;
148
149 # else
150 png_ptr->output_flush_fn = output_flush_fn;
151 # endif
213 #else 152 #else
214 png_ptr->output_flush_fn = output_flush_fn; 153 PNG_UNUSED(output_flush_fn)
215 #endif 154 #endif /* WRITE_FLUSH */
216 #endif /* PNG_WRITE_FLUSH_SUPPORTED */
217 155
156 #ifdef PNG_READ_SUPPORTED
218 /* It is an error to read while writing a png file */ 157 /* It is an error to read while writing a png file */
219 if (png_ptr->read_data_fn != NULL) 158 if (png_ptr->read_data_fn != NULL)
220 { 159 {
221 png_ptr->read_data_fn = NULL; 160 png_ptr->read_data_fn = NULL;
161
222 png_warning(png_ptr, 162 png_warning(png_ptr,
223 "Attempted to set both read_data_fn and write_data_fn in"); 163 "Can't set both read_data_fn and write_data_fn in the"
224 png_warning(png_ptr, 164 " same structure");
225 "the same structure. Resetting read_data_fn to NULL.");
226 } 165 }
166 #endif
227 } 167 }
228 168 #endif /* WRITE */
229 #ifdef USE_FAR_KEYWORD
230 #ifdef _MSC_VER
231 void *png_far_to_near(png_structp png_ptr, png_voidp ptr, int check)
232 {
233 void *near_ptr;
234 void FAR *far_ptr;
235 FP_OFF(near_ptr) = FP_OFF(ptr);
236 far_ptr = (void FAR *)near_ptr;
237
238 if (check != 0)
239 if (FP_SEG(ptr) != FP_SEG(far_ptr))
240 png_error(png_ptr, "segment lost in conversion");
241
242 return(near_ptr);
243 }
244 # else
245 void *png_far_to_near(png_structp png_ptr, png_voidp ptr, int check)
246 {
247 void *near_ptr;
248 void FAR *far_ptr;
249 near_ptr = (void FAR *)ptr;
250 far_ptr = (void FAR *)near_ptr;
251
252 if (check != 0)
253 if (far_ptr != ptr)
254 png_error(png_ptr, "segment lost in conversion");
255
256 return(near_ptr);
257 }
258 # endif
259 # endif
260 #endif /* PNG_WRITE_SUPPORTED */
OLDNEW
« no previous file with comments | « third_party/libpng/pngvcrd.c ('k') | third_party/libpng/pngwrite.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698