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

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

Issue 23494067: Revert "libpng 1.6.3" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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/pngusr.h ('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.6.0 [February 14, 2013] 4 * Last changed in libpng 1.2.41 [December 3, 2009]
5 * Copyright (c) 1998-2013 Glenn Randers-Pehrson 5 * Copyright (c) 1998-2009 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 #include "pngpriv.h" 21 #define PNG_INTERNAL
22 22 #define PNG_NO_PEDANTIC_WARNINGS
23 #include "png.h"
23 #ifdef PNG_WRITE_SUPPORTED 24 #ifdef PNG_WRITE_SUPPORTED
24 25
25 /* Write the data to whatever output you are using. The default routine 26 /* Write the data to whatever output you are using. The default routine
26 * writes to a file pointer. Note that this routine sometimes gets called 27 * writes to a file pointer. Note that this routine sometimes gets called
27 * with very small lengths, so you should implement some kind of simple 28 * with very small lengths, so you should implement some kind of simple
28 * buffering if you are using unbuffered writes. This should never be asked 29 * buffering if you are using unbuffered writes. This should never be asked
29 * to write more than 64K on a 16 bit machine. 30 * to write more than 64K on a 16 bit machine.
30 */ 31 */
31 32
32 void /* PRIVATE */ 33 void /* PRIVATE */
33 png_write_data(png_structrp png_ptr, png_const_bytep data, png_size_t length) 34 png_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
34 { 35 {
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, png_constcast(png_bytep,data), 37 (*(png_ptr->write_data_fn))(png_ptr, data, length);
38 length);
39
40 else 38 else
41 png_error(png_ptr, "Call to NULL write function"); 39 png_error(png_ptr, "Call to NULL write function");
42 } 40 }
43 41
44 #ifdef PNG_STDIO_SUPPORTED 42 #ifdef PNG_STDIO_SUPPORTED
45 /* This is the function that does the actual writing of data. If you are 43 /* This is the function that does the actual writing of data. If you are
46 * not writing to a standard C stream, you should create a replacement 44 * not writing to a standard C stream, you should create a replacement
47 * write_data function and use it at run time with png_set_write_fn(), rather 45 * write_data function and use it at run time with png_set_write_fn(), rather
48 * than changing the library. 46 * than changing the library.
49 */ 47 */
50 void PNGCBAPI 48 #ifndef USE_FAR_KEYWORD
49 void PNGAPI
51 png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length) 50 png_default_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
52 { 51 {
53 png_size_t check; 52 png_uint_32 check;
54 53
55 if (png_ptr == NULL) 54 if (png_ptr == NULL)
56 return; 55 return;
57 56 #ifdef _WIN32_WCE
57 if ( !WriteFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
58 check = 0;
59 #else
58 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr)); 60 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
59 61 #endif
60 if (check != length) 62 if (check != length)
61 png_error(png_ptr, "Write Error"); 63 png_error(png_ptr, "Write Error");
62 } 64 }
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
63 #endif 127 #endif
64 128
65 /* This function is called to output any data pending writing (normally 129 /* This function is called to output any data pending writing (normally
66 * to disk). After png_flush is called, there should be no data pending 130 * to disk). After png_flush is called, there should be no data pending
67 * writing in any buffers. 131 * writing in any buffers.
68 */ 132 */
69 #ifdef PNG_WRITE_FLUSH_SUPPORTED 133 #ifdef PNG_WRITE_FLUSH_SUPPORTED
70 void /* PRIVATE */ 134 void /* PRIVATE */
71 png_flush(png_structrp png_ptr) 135 png_flush(png_structp png_ptr)
72 { 136 {
73 if (png_ptr->output_flush_fn != NULL) 137 if (png_ptr->output_flush_fn != NULL)
74 (*(png_ptr->output_flush_fn))(png_ptr); 138 (*(png_ptr->output_flush_fn))(png_ptr);
75 } 139 }
76 140
77 # ifdef PNG_STDIO_SUPPORTED 141 #ifdef PNG_STDIO_SUPPORTED
78 void PNGCBAPI 142 void PNGAPI
79 png_default_flush(png_structp png_ptr) 143 png_default_flush(png_structp png_ptr)
80 { 144 {
145 #ifndef _WIN32_WCE
81 png_FILE_p io_ptr; 146 png_FILE_p io_ptr;
82 147 #endif
83 if (png_ptr == NULL) 148 if (png_ptr == NULL)
84 return; 149 return;
85 150 #ifndef _WIN32_WCE
86 io_ptr = png_voidcast(png_FILE_p, (png_ptr->io_ptr)); 151 io_ptr = (png_FILE_p)CVT_PTR((png_ptr->io_ptr));
87 fflush(io_ptr); 152 fflush(io_ptr);
153 #endif
88 } 154 }
89 # endif 155 #endif
90 #endif 156 #endif
91 157
92 /* This function allows the application to supply new output functions for 158 /* This function allows the application to supply new output functions for
93 * libpng if standard C streams aren't being used. 159 * libpng if standard C streams aren't being used.
94 * 160 *
95 * This function takes as its arguments: 161 * This function takes as its arguments:
96 * png_ptr - pointer to a png output data structure 162 * png_ptr - pointer to a png output data structure
97 * io_ptr - pointer to user supplied structure containing info about 163 * io_ptr - pointer to user supplied structure containing info about
98 * the output functions. May be NULL. 164 * the output functions. May be NULL.
99 * write_data_fn - pointer to a new output function that takes as its 165 * write_data_fn - pointer to a new output function that takes as its
(...skipping 12 matching lines...) Expand all
112 * supplied although it doesn't have to do anything. If 178 * supplied although it doesn't have to do anything. If
113 * PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile 179 * PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile
114 * time, output_flush_fn will be ignored, although it must be 180 * time, output_flush_fn will be ignored, although it must be
115 * supplied for compatibility. May be NULL, in which case 181 * supplied for compatibility. May be NULL, in which case
116 * libpng's default function will be used, if 182 * libpng's default function will be used, if
117 * PNG_WRITE_FLUSH_SUPPORTED is defined. This is not 183 * PNG_WRITE_FLUSH_SUPPORTED is defined. This is not
118 * a good idea if io_ptr does not point to a standard 184 * a good idea if io_ptr does not point to a standard
119 * *FILE structure. 185 * *FILE structure.
120 */ 186 */
121 void PNGAPI 187 void PNGAPI
122 png_set_write_fn(png_structrp png_ptr, png_voidp io_ptr, 188 png_set_write_fn(png_structp png_ptr, png_voidp io_ptr,
123 png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn) 189 png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)
124 { 190 {
125 if (png_ptr == NULL) 191 if (png_ptr == NULL)
126 return; 192 return;
127 193
128 png_ptr->io_ptr = io_ptr; 194 png_ptr->io_ptr = io_ptr;
129 195
130 #ifdef PNG_STDIO_SUPPORTED 196 #ifdef PNG_STDIO_SUPPORTED
131 if (write_data_fn != NULL) 197 if (write_data_fn != NULL)
132 png_ptr->write_data_fn = write_data_fn; 198 png_ptr->write_data_fn = write_data_fn;
133 199
134 else 200 else
135 png_ptr->write_data_fn = png_default_write_data; 201 png_ptr->write_data_fn = png_default_write_data;
136 #else 202 #else
137 png_ptr->write_data_fn = write_data_fn; 203 png_ptr->write_data_fn = write_data_fn;
138 #endif 204 #endif
139 205
140 #ifdef PNG_WRITE_FLUSH_SUPPORTED 206 #ifdef PNG_WRITE_FLUSH_SUPPORTED
141 # ifdef PNG_STDIO_SUPPORTED 207 #ifdef PNG_STDIO_SUPPORTED
142
143 if (output_flush_fn != NULL) 208 if (output_flush_fn != NULL)
144 png_ptr->output_flush_fn = output_flush_fn; 209 png_ptr->output_flush_fn = output_flush_fn;
145 210
146 else 211 else
147 png_ptr->output_flush_fn = png_default_flush; 212 png_ptr->output_flush_fn = png_default_flush;
148 213 #else
149 # else
150 png_ptr->output_flush_fn = output_flush_fn; 214 png_ptr->output_flush_fn = output_flush_fn;
151 # endif 215 #endif
152 #endif /* PNG_WRITE_FLUSH_SUPPORTED */ 216 #endif /* PNG_WRITE_FLUSH_SUPPORTED */
153 217
154 /* It is an error to read while writing a png file */ 218 /* It is an error to read while writing a png file */
155 if (png_ptr->read_data_fn != NULL) 219 if (png_ptr->read_data_fn != NULL)
156 { 220 {
157 png_ptr->read_data_fn = NULL; 221 png_ptr->read_data_fn = NULL;
158
159 png_warning(png_ptr, 222 png_warning(png_ptr,
160 "Can't set both read_data_fn and write_data_fn in the" 223 "Attempted to set both read_data_fn and write_data_fn in");
161 " same structure"); 224 png_warning(png_ptr,
225 "the same structure. Resetting read_data_fn to NULL.");
162 } 226 }
163 } 227 }
228
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
164 #endif /* PNG_WRITE_SUPPORTED */ 260 #endif /* PNG_WRITE_SUPPORTED */
OLDNEW
« no previous file with comments | « third_party/libpng/pngusr.h ('k') | third_party/libpng/pngwrite.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698