source: trunk/third/libpng/pngset.c @ 20647

Revision 20647, 35.7 KB checked in by zacheiss, 20 years ago (diff)
Assorted security patches.
RevLine 
[15213]1
2/* pngset.c - storage of image information into info struct
3 *
[18165]4 * libpng 1.2.5 - October 3, 2002
[15213]5 * For conditions of distribution and use, see copyright notice in png.h
[18165]6 * Copyright (c) 1998-2002 Glenn Randers-Pehrson
[15213]7 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
8 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
9 *
10 * The functions here are used during reads to store data from the file
11 * into the info struct, and during writes to store application data
12 * into the info struct for writing into the file.  This abstracts the
13 * info struct and allows us to change the structure in the future.
14 */
15
16#define PNG_INTERNAL
17#include "png.h"
18
19#if defined(PNG_bKGD_SUPPORTED)
20void PNGAPI
21png_set_bKGD(png_structp png_ptr, png_infop info_ptr, png_color_16p background)
22{
23   png_debug1(1, "in %s storage function\n", "bKGD");
24   if (png_ptr == NULL || info_ptr == NULL)
25      return;
26
27   png_memcpy(&(info_ptr->background), background, sizeof(png_color_16));
28   info_ptr->valid |= PNG_INFO_bKGD;
29}
30#endif
31
32#if defined(PNG_cHRM_SUPPORTED)
33#ifdef PNG_FLOATING_POINT_SUPPORTED
34void PNGAPI
35png_set_cHRM(png_structp png_ptr, png_infop info_ptr,
36   double white_x, double white_y, double red_x, double red_y,
37   double green_x, double green_y, double blue_x, double blue_y)
38{
39   png_debug1(1, "in %s storage function\n", "cHRM");
40   if (png_ptr == NULL || info_ptr == NULL)
41      return;
42
[18165]43   if (white_x < 0.0 || white_y < 0.0 ||
44         red_x < 0.0 ||   red_y < 0.0 ||
45       green_x < 0.0 || green_y < 0.0 ||
46        blue_x < 0.0 ||  blue_y < 0.0)
47   {
48      png_warning(png_ptr,
49        "Ignoring attempt to set negative chromaticity value");
50      return;
51   }
52   if (white_x > 21474.83 || white_y > 21474.83 ||
53         red_x > 21474.83 ||   red_y > 21474.83 ||
54       green_x > 21474.83 || green_y > 21474.83 ||
55        blue_x > 21474.83 ||  blue_y > 21474.83)
56   {
57      png_warning(png_ptr,
58        "Ignoring attempt to set chromaticity value exceeding 21474.83");
59      return;
60   }
61
[15213]62   info_ptr->x_white = (float)white_x;
63   info_ptr->y_white = (float)white_y;
64   info_ptr->x_red   = (float)red_x;
65   info_ptr->y_red   = (float)red_y;
66   info_ptr->x_green = (float)green_x;
67   info_ptr->y_green = (float)green_y;
68   info_ptr->x_blue  = (float)blue_x;
69   info_ptr->y_blue  = (float)blue_y;
70#ifdef PNG_FIXED_POINT_SUPPORTED
71   info_ptr->int_x_white = (png_fixed_point)(white_x*100000.+0.5);
72   info_ptr->int_y_white = (png_fixed_point)(white_y*100000.+0.5);
[18165]73   info_ptr->int_x_red   = (png_fixed_point)(  red_x*100000.+0.5);
74   info_ptr->int_y_red   = (png_fixed_point)(  red_y*100000.+0.5);
[15213]75   info_ptr->int_x_green = (png_fixed_point)(green_x*100000.+0.5);
76   info_ptr->int_y_green = (png_fixed_point)(green_y*100000.+0.5);
[18165]77   info_ptr->int_x_blue  = (png_fixed_point)( blue_x*100000.+0.5);
78   info_ptr->int_y_blue  = (png_fixed_point)( blue_y*100000.+0.5);
[15213]79#endif
80   info_ptr->valid |= PNG_INFO_cHRM;
81}
82#endif
83#ifdef PNG_FIXED_POINT_SUPPORTED
84void PNGAPI
85png_set_cHRM_fixed(png_structp png_ptr, png_infop info_ptr,
86   png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x,
87   png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y,
88   png_fixed_point blue_x, png_fixed_point blue_y)
89{
90   png_debug1(1, "in %s storage function\n", "cHRM");
91   if (png_ptr == NULL || info_ptr == NULL)
92      return;
93
[18165]94   if (white_x < 0 || white_y < 0 ||
95         red_x < 0 ||   red_y < 0 ||
96       green_x < 0 || green_y < 0 ||
97        blue_x < 0 ||  blue_y < 0)
98   {
99      png_warning(png_ptr,
100        "Ignoring attempt to set negative chromaticity value");
101      return;
102   }
103   if (white_x > (double) PNG_MAX_UINT || white_y > (double) PNG_MAX_UINT ||
104         red_x > (double) PNG_MAX_UINT ||   red_y > (double) PNG_MAX_UINT ||
105       green_x > (double) PNG_MAX_UINT || green_y > (double) PNG_MAX_UINT ||
106        blue_x > (double) PNG_MAX_UINT ||  blue_y > (double) PNG_MAX_UINT)
107   {
108      png_warning(png_ptr,
109        "Ignoring attempt to set chromaticity value exceeding 21474.83");
110      return;
111   }
[15213]112   info_ptr->int_x_white = white_x;
113   info_ptr->int_y_white = white_y;
114   info_ptr->int_x_red   = red_x;
115   info_ptr->int_y_red   = red_y;
116   info_ptr->int_x_green = green_x;
117   info_ptr->int_y_green = green_y;
118   info_ptr->int_x_blue  = blue_x;
119   info_ptr->int_y_blue  = blue_y;
120#ifdef PNG_FLOATING_POINT_SUPPORTED
121   info_ptr->x_white = (float)(white_x/100000.);
122   info_ptr->y_white = (float)(white_y/100000.);
[18165]123   info_ptr->x_red   = (float)(  red_x/100000.);
124   info_ptr->y_red   = (float)(  red_y/100000.);
[15213]125   info_ptr->x_green = (float)(green_x/100000.);
126   info_ptr->y_green = (float)(green_y/100000.);
[18165]127   info_ptr->x_blue  = (float)( blue_x/100000.);
128   info_ptr->y_blue  = (float)( blue_y/100000.);
[15213]129#endif
130   info_ptr->valid |= PNG_INFO_cHRM;
131}
132#endif
133#endif
134
135#if defined(PNG_gAMA_SUPPORTED)
136#ifdef PNG_FLOATING_POINT_SUPPORTED
137void PNGAPI
138png_set_gAMA(png_structp png_ptr, png_infop info_ptr, double file_gamma)
139{
[18165]140   double gamma;
[15213]141   png_debug1(1, "in %s storage function\n", "gAMA");
142   if (png_ptr == NULL || info_ptr == NULL)
143      return;
144
[18165]145   /* Check for overflow */
146   if (file_gamma > 21474.83)
147   {
148      png_warning(png_ptr, "Limiting gamma to 21474.83");
149      gamma=21474.83;
150   }
151   else
152      gamma=file_gamma;
153   info_ptr->gamma = (float)gamma;
[15213]154#ifdef PNG_FIXED_POINT_SUPPORTED
[18165]155   info_ptr->int_gamma = (int)(gamma*100000.+.5);
[15213]156#endif
157   info_ptr->valid |= PNG_INFO_gAMA;
[18165]158   if(gamma == 0.0)
[17000]159      png_warning(png_ptr, "Setting gamma=0");
[15213]160}
161#endif
162void PNGAPI
163png_set_gAMA_fixed(png_structp png_ptr, png_infop info_ptr, png_fixed_point
164   int_gamma)
165{
[18165]166   png_fixed_point gamma;
167
[15213]168   png_debug1(1, "in %s storage function\n", "gAMA");
169   if (png_ptr == NULL || info_ptr == NULL)
170      return;
171
[18165]172   if (int_gamma > (png_fixed_point) PNG_MAX_UINT)
173   {
174     png_warning(png_ptr, "Limiting gamma to 21474.83");
175     gamma=PNG_MAX_UINT;
176   }
177   else
178   {
179     if (int_gamma < 0)
180     {
181       png_warning(png_ptr, "Setting negative gamma to zero");
182       gamma=0;
183     }
184     else
185       gamma=int_gamma;
186   }
[15213]187#ifdef PNG_FLOATING_POINT_SUPPORTED
[18165]188   info_ptr->gamma = (float)(gamma/100000.);
[15213]189#endif
190#ifdef PNG_FIXED_POINT_SUPPORTED
[18165]191   info_ptr->int_gamma = gamma;
[15213]192#endif
193   info_ptr->valid |= PNG_INFO_gAMA;
[18165]194   if(gamma == 0)
[17000]195      png_warning(png_ptr, "Setting gamma=0");
[15213]196}
[17000]197#endif
[15213]198
199#if defined(PNG_hIST_SUPPORTED)
200void PNGAPI
201png_set_hIST(png_structp png_ptr, png_infop info_ptr, png_uint_16p hist)
202{
[18165]203   int i;
[17000]204
[15213]205   png_debug1(1, "in %s storage function\n", "hIST");
206   if (png_ptr == NULL || info_ptr == NULL)
207      return;
[17000]208   if (info_ptr->num_palette == 0)
209   {
210       png_warning(png_ptr,
211          "Palette size 0, hIST allocation skipped.");
212       return;
213   }
[15213]214
[17000]215#ifdef PNG_FREE_ME_SUPPORTED
216   png_free_data(png_ptr, info_ptr, PNG_FREE_HIST, 0);
217#endif
218   /* Changed from info->num_palette to 256 in version 1.2.1 */
[18165]219   png_ptr->hist = (png_uint_16p)png_malloc_warn(png_ptr,
[17000]220      (png_uint_32)(256 * sizeof (png_uint_16)));
[18165]221   if (png_ptr->hist == NULL)
222     {
223       png_warning(png_ptr, "Insufficient memory for hIST chunk data.");
224       return;
225     }
[17000]226
227   for (i = 0; i < info_ptr->num_palette; i++)
228       png_ptr->hist[i] = hist[i];
229   info_ptr->hist = png_ptr->hist;
[15213]230   info_ptr->valid |= PNG_INFO_hIST;
[17000]231
232#ifdef PNG_FREE_ME_SUPPORTED
233   info_ptr->free_me |= PNG_FREE_HIST;
234#else
235   png_ptr->flags |= PNG_FLAG_FREE_HIST;
236#endif
[15213]237}
238#endif
239
240void PNGAPI
241png_set_IHDR(png_structp png_ptr, png_infop info_ptr,
242   png_uint_32 width, png_uint_32 height, int bit_depth,
243   int color_type, int interlace_type, int compression_type,
244   int filter_type)
245{
246   int rowbytes_per_pixel;
247   png_debug1(1, "in %s storage function\n", "IHDR");
248   if (png_ptr == NULL || info_ptr == NULL)
249      return;
250
[17000]251   /* check for width and height valid values */
252   if (width == 0 || height == 0)
253      png_error(png_ptr, "Image width or height is zero in IHDR");
254   if (width > PNG_MAX_UINT || height > PNG_MAX_UINT)
255      png_error(png_ptr, "Invalid image size in IHDR");
[20647]256   if (width > PNG_USER_WIDTH_MAX || height > PNG_USER_HEIGHT_MAX)
257      png_error(png_ptr, "image size exceeds user limits in IHDR");
[17000]258
259   /* check other values */
260   if (bit_depth != 1 && bit_depth != 2 && bit_depth != 4 &&
261      bit_depth != 8 && bit_depth != 16)
262      png_error(png_ptr, "Invalid bit depth in IHDR");
263
264   if (color_type < 0 || color_type == 1 ||
265      color_type == 5 || color_type > 6)
266      png_error(png_ptr, "Invalid color type in IHDR");
267
268   if (((color_type == PNG_COLOR_TYPE_PALETTE) && bit_depth > 8) ||
269       ((color_type == PNG_COLOR_TYPE_RGB ||
270         color_type == PNG_COLOR_TYPE_GRAY_ALPHA ||
271         color_type == PNG_COLOR_TYPE_RGB_ALPHA) && bit_depth < 8))
272      png_error(png_ptr, "Invalid color type/bit depth combination in IHDR");
273
274   if (interlace_type >= PNG_INTERLACE_LAST)
275      png_error(png_ptr, "Unknown interlace method in IHDR");
276
277   if (compression_type != PNG_COMPRESSION_TYPE_BASE)
278      png_error(png_ptr, "Unknown compression method in IHDR");
279
280#if defined(PNG_MNG_FEATURES_SUPPORTED)
281   /* Accept filter_method 64 (intrapixel differencing) only if
282    * 1. Libpng was compiled with PNG_MNG_FEATURES_SUPPORTED and
283    * 2. Libpng did not read a PNG signature (this filter_method is only
284    *    used in PNG datastreams that are embedded in MNG datastreams) and
285    * 3. The application called png_permit_mng_features with a mask that
286    *    included PNG_FLAG_MNG_FILTER_64 and
287    * 4. The filter_method is 64 and
288    * 5. The color_type is RGB or RGBA
289    */
290   if((png_ptr->mode&PNG_HAVE_PNG_SIGNATURE)&&png_ptr->mng_features_permitted)
291      png_warning(png_ptr,"MNG features are not allowed in a PNG datastream\n");
292   if(filter_type != PNG_FILTER_TYPE_BASE)
293   {
294     if(!((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) &&
295        (filter_type == PNG_INTRAPIXEL_DIFFERENCING) &&
296        ((png_ptr->mode&PNG_HAVE_PNG_SIGNATURE) == 0) &&
297        (color_type == PNG_COLOR_TYPE_RGB ||
298         color_type == PNG_COLOR_TYPE_RGB_ALPHA)))
299        png_error(png_ptr, "Unknown filter method in IHDR");
300     if(png_ptr->mode&PNG_HAVE_PNG_SIGNATURE)
301        png_warning(png_ptr, "Invalid filter method in IHDR");
302   }
303#else
304   if(filter_type != PNG_FILTER_TYPE_BASE)
305      png_error(png_ptr, "Unknown filter method in IHDR");
306#endif
307
[15213]308   info_ptr->width = width;
309   info_ptr->height = height;
310   info_ptr->bit_depth = (png_byte)bit_depth;
311   info_ptr->color_type =(png_byte) color_type;
312   info_ptr->compression_type = (png_byte)compression_type;
313   info_ptr->filter_type = (png_byte)filter_type;
314   info_ptr->interlace_type = (png_byte)interlace_type;
315   if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
316      info_ptr->channels = 1;
317   else if (info_ptr->color_type & PNG_COLOR_MASK_COLOR)
318      info_ptr->channels = 3;
319   else
320      info_ptr->channels = 1;
321   if (info_ptr->color_type & PNG_COLOR_MASK_ALPHA)
322      info_ptr->channels++;
323   info_ptr->pixel_depth = (png_byte)(info_ptr->channels * info_ptr->bit_depth);
324
325   /* check for overflow */
326   rowbytes_per_pixel = (info_ptr->pixel_depth + 7) >> 3;
[18165]327   if ( width > PNG_MAX_UINT/rowbytes_per_pixel - 64)
[15213]328   {
329      png_warning(png_ptr,
330         "Width too large to process image data; rowbytes will overflow.");
331      info_ptr->rowbytes = (png_size_t)0;
332   }
333   else
334      info_ptr->rowbytes = (info_ptr->width * info_ptr->pixel_depth + 7) >> 3;
335}
336
337#if defined(PNG_oFFs_SUPPORTED)
338void PNGAPI
339png_set_oFFs(png_structp png_ptr, png_infop info_ptr,
340   png_int_32 offset_x, png_int_32 offset_y, int unit_type)
341{
342   png_debug1(1, "in %s storage function\n", "oFFs");
343   if (png_ptr == NULL || info_ptr == NULL)
344      return;
345
346   info_ptr->x_offset = offset_x;
347   info_ptr->y_offset = offset_y;
348   info_ptr->offset_unit_type = (png_byte)unit_type;
349   info_ptr->valid |= PNG_INFO_oFFs;
350}
351#endif
352
353#if defined(PNG_pCAL_SUPPORTED)
354void PNGAPI
355png_set_pCAL(png_structp png_ptr, png_infop info_ptr,
356   png_charp purpose, png_int_32 X0, png_int_32 X1, int type, int nparams,
357   png_charp units, png_charpp params)
358{
359   png_uint_32 length;
360   int i;
361
362   png_debug1(1, "in %s storage function\n", "pCAL");
363   if (png_ptr == NULL || info_ptr == NULL)
364      return;
365
366   length = png_strlen(purpose) + 1;
367   png_debug1(3, "allocating purpose for info (%lu bytes)\n", length);
[18165]368   info_ptr->pcal_purpose = (png_charp)png_malloc_warn(png_ptr, length);
369   if (info_ptr->pcal_purpose == NULL)
370     {
371       png_warning(png_ptr, "Insufficient memory for pCAL purpose.");
372       return;
373     }
[15213]374   png_memcpy(info_ptr->pcal_purpose, purpose, (png_size_t)length);
375
376   png_debug(3, "storing X0, X1, type, and nparams in info\n");
377   info_ptr->pcal_X0 = X0;
378   info_ptr->pcal_X1 = X1;
379   info_ptr->pcal_type = (png_byte)type;
380   info_ptr->pcal_nparams = (png_byte)nparams;
381
382   length = png_strlen(units) + 1;
383   png_debug1(3, "allocating units for info (%lu bytes)\n", length);
[18165]384   info_ptr->pcal_units = (png_charp)png_malloc_warn(png_ptr, length);
385   if (info_ptr->pcal_units == NULL)
386     {
387       png_warning(png_ptr, "Insufficient memory for pCAL units.");
388       return;
389     }
[15213]390   png_memcpy(info_ptr->pcal_units, units, (png_size_t)length);
391
[18165]392   info_ptr->pcal_params = (png_charpp)png_malloc_warn(png_ptr,
[15213]393      (png_uint_32)((nparams + 1) * sizeof(png_charp)));
[18165]394   if (info_ptr->pcal_params == NULL)
395     {
396       png_warning(png_ptr, "Insufficient memory for pCAL params.");
397       return;
398     }
[17000]399
[15213]400   info_ptr->pcal_params[nparams] = NULL;
401
402   for (i = 0; i < nparams; i++)
403   {
404      length = png_strlen(params[i]) + 1;
405      png_debug2(3, "allocating parameter %d for info (%lu bytes)\n", i, length);
[18165]406      info_ptr->pcal_params[i] = (png_charp)png_malloc_warn(png_ptr, length);
407      if (info_ptr->pcal_params[i] == NULL)
408        {
409          png_warning(png_ptr, "Insufficient memory for pCAL parameter.");
410          return;
411        }
[15213]412      png_memcpy(info_ptr->pcal_params[i], params[i], (png_size_t)length);
413   }
414
415   info_ptr->valid |= PNG_INFO_pCAL;
416#ifdef PNG_FREE_ME_SUPPORTED
417   info_ptr->free_me |= PNG_FREE_PCAL;
418#endif
419}
420#endif
421
422#if defined(PNG_READ_sCAL_SUPPORTED) || defined(PNG_WRITE_sCAL_SUPPORTED)
423#ifdef PNG_FLOATING_POINT_SUPPORTED
424void PNGAPI
425png_set_sCAL(png_structp png_ptr, png_infop info_ptr,
426             int unit, double width, double height)
427{
428   png_debug1(1, "in %s storage function\n", "sCAL");
429   if (png_ptr == NULL || info_ptr == NULL)
430      return;
431
432   info_ptr->scal_unit = (png_byte)unit;
433   info_ptr->scal_pixel_width = width;
434   info_ptr->scal_pixel_height = height;
435
436   info_ptr->valid |= PNG_INFO_sCAL;
437}
438#else
439#ifdef PNG_FIXED_POINT_SUPPORTED
440void PNGAPI
441png_set_sCAL_s(png_structp png_ptr, png_infop info_ptr,
442             int unit, png_charp swidth, png_charp sheight)
443{
444   png_uint_32 length;
445
446   png_debug1(1, "in %s storage function\n", "sCAL");
447   if (png_ptr == NULL || info_ptr == NULL)
448      return;
449
450   info_ptr->scal_unit = (png_byte)unit;
451
452   length = png_strlen(swidth) + 1;
453   png_debug1(3, "allocating unit for info (%d bytes)\n", length);
454   info_ptr->scal_s_width = (png_charp)png_malloc(png_ptr, length);
455   png_memcpy(info_ptr->scal_s_width, swidth, (png_size_t)length);
456
457   length = png_strlen(sheight) + 1;
458   png_debug1(3, "allocating unit for info (%d bytes)\n", length);
[17000]459   info_ptr->scal_s_height = (png_charp)png_malloc(png_ptr, length);
[15213]460   png_memcpy(info_ptr->scal_s_height, sheight, (png_size_t)length);
461
462   info_ptr->valid |= PNG_INFO_sCAL;
463#ifdef PNG_FREE_ME_SUPPORTED
464   info_ptr->free_me |= PNG_FREE_SCAL;
465#endif
466}
467#endif
468#endif
469#endif
470
471#if defined(PNG_pHYs_SUPPORTED)
472void PNGAPI
473png_set_pHYs(png_structp png_ptr, png_infop info_ptr,
474   png_uint_32 res_x, png_uint_32 res_y, int unit_type)
475{
476   png_debug1(1, "in %s storage function\n", "pHYs");
477   if (png_ptr == NULL || info_ptr == NULL)
478      return;
479
480   info_ptr->x_pixels_per_unit = res_x;
481   info_ptr->y_pixels_per_unit = res_y;
482   info_ptr->phys_unit_type = (png_byte)unit_type;
483   info_ptr->valid |= PNG_INFO_pHYs;
484}
485#endif
486
487void PNGAPI
488png_set_PLTE(png_structp png_ptr, png_infop info_ptr,
489   png_colorp palette, int num_palette)
490{
491
492   png_debug1(1, "in %s storage function\n", "PLTE");
493   if (png_ptr == NULL || info_ptr == NULL)
494      return;
495
[17000]496   /*
497    * It may not actually be necessary to set png_ptr->palette here;
498    * we do it for backward compatibility with the way the png_handle_tRNS
499    * function used to do the allocation.
500    */
501#ifdef PNG_FREE_ME_SUPPORTED
502   png_free_data(png_ptr, info_ptr, PNG_FREE_PLTE, 0);
503#endif
504   /* Changed in libpng-1.2.1 to allocate 256 instead of num_palette entries,
505      in case of an invalid PNG file that has too-large sample values. */
506   png_ptr->palette = (png_colorp)png_zalloc(png_ptr, (uInt)256,
507      sizeof (png_color));
[18165]508   if (png_ptr->palette == NULL)
509      png_error(png_ptr, "Unable to malloc palette");
[17000]510   png_memcpy(png_ptr->palette, palette, num_palette * sizeof (png_color));
511   info_ptr->palette = png_ptr->palette;
512   info_ptr->num_palette = png_ptr->num_palette = (png_uint_16)num_palette;
[15213]513
[17000]514#ifdef PNG_FREE_ME_SUPPORTED
515   info_ptr->free_me |= PNG_FREE_PLTE;
516#else
517   png_ptr->flags |= PNG_FLAG_FREE_PLTE;
518#endif
519
[15213]520   info_ptr->valid |= PNG_INFO_PLTE;
521}
522
523#if defined(PNG_sBIT_SUPPORTED)
524void PNGAPI
525png_set_sBIT(png_structp png_ptr, png_infop info_ptr,
526   png_color_8p sig_bit)
527{
528   png_debug1(1, "in %s storage function\n", "sBIT");
529   if (png_ptr == NULL || info_ptr == NULL)
530      return;
531
532   png_memcpy(&(info_ptr->sig_bit), sig_bit, sizeof (png_color_8));
533   info_ptr->valid |= PNG_INFO_sBIT;
534}
535#endif
536
537#if defined(PNG_sRGB_SUPPORTED)
538void PNGAPI
539png_set_sRGB(png_structp png_ptr, png_infop info_ptr, int intent)
540{
541   png_debug1(1, "in %s storage function\n", "sRGB");
542   if (png_ptr == NULL || info_ptr == NULL)
543      return;
544
545   info_ptr->srgb_intent = (png_byte)intent;
546   info_ptr->valid |= PNG_INFO_sRGB;
547}
548
549void PNGAPI
550png_set_sRGB_gAMA_and_cHRM(png_structp png_ptr, png_infop info_ptr,
551   int intent)
552{
553#if defined(PNG_gAMA_SUPPORTED)
554#ifdef PNG_FLOATING_POINT_SUPPORTED
555   float file_gamma;
556#endif
557#ifdef PNG_FIXED_POINT_SUPPORTED
558   png_fixed_point int_file_gamma;
559#endif
560#endif
561#if defined(PNG_cHRM_SUPPORTED)
562#ifdef PNG_FLOATING_POINT_SUPPORTED
563   float white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y;
564#endif
565#ifdef PNG_FIXED_POINT_SUPPORTED
566   png_fixed_point int_white_x, int_white_y, int_red_x, int_red_y, int_green_x,
567      int_green_y, int_blue_x, int_blue_y;
568#endif
569#endif
570   png_debug1(1, "in %s storage function\n", "sRGB_gAMA_and_cHRM");
571   if (png_ptr == NULL || info_ptr == NULL)
572      return;
573
574   png_set_sRGB(png_ptr, info_ptr, intent);
575
576#if defined(PNG_gAMA_SUPPORTED)
577#ifdef PNG_FLOATING_POINT_SUPPORTED
578   file_gamma = (float).45455;
579   png_set_gAMA(png_ptr, info_ptr, file_gamma);
580#endif
581#ifdef PNG_FIXED_POINT_SUPPORTED
582   int_file_gamma = 45455L;
583   png_set_gAMA_fixed(png_ptr, info_ptr, int_file_gamma);
584#endif
585#endif
586
587#if defined(PNG_cHRM_SUPPORTED)
588#ifdef PNG_FIXED_POINT_SUPPORTED
589   int_white_x = 31270L;
590   int_white_y = 32900L;
591   int_red_x   = 64000L;
592   int_red_y   = 33000L;
593   int_green_x = 30000L;
594   int_green_y = 60000L;
595   int_blue_x  = 15000L;
596   int_blue_y  =  6000L;
597
598   png_set_cHRM_fixed(png_ptr, info_ptr,
599      int_white_x, int_white_y, int_red_x, int_red_y, int_green_x, int_green_y,
600      int_blue_x, int_blue_y);
601#endif
602#ifdef PNG_FLOATING_POINT_SUPPORTED
603   white_x = (float).3127;
604   white_y = (float).3290;
605   red_x   = (float).64;
606   red_y   = (float).33;
607   green_x = (float).30;
608   green_y = (float).60;
609   blue_x  = (float).15;
610   blue_y  = (float).06;
611
612   png_set_cHRM(png_ptr, info_ptr,
613      white_x, white_y, red_x, red_y, green_x, green_y, blue_x, blue_y);
614#endif
615#endif
616}
617#endif
618
619
620#if defined(PNG_iCCP_SUPPORTED)
621void PNGAPI
622png_set_iCCP(png_structp png_ptr, png_infop info_ptr,
623             png_charp name, int compression_type,
624             png_charp profile, png_uint_32 proflen)
625{
626   png_charp new_iccp_name;
627   png_charp new_iccp_profile;
628
629   png_debug1(1, "in %s storage function\n", "iCCP");
630   if (png_ptr == NULL || info_ptr == NULL || name == NULL || profile == NULL)
631      return;
632
[17000]633   new_iccp_name = (png_charp)png_malloc(png_ptr, png_strlen(name)+1);
634   png_strcpy(new_iccp_name, name);
635   new_iccp_profile = (png_charp)png_malloc(png_ptr, proflen);
[15213]636   png_memcpy(new_iccp_profile, profile, (png_size_t)proflen);
637
638   png_free_data(png_ptr, info_ptr, PNG_FREE_ICCP, 0);
639
640   info_ptr->iccp_proflen = proflen;
641   info_ptr->iccp_name = new_iccp_name;
642   info_ptr->iccp_profile = new_iccp_profile;
643   /* Compression is always zero but is here so the API and info structure
644    * does not have to change if we introduce multiple compression types */
645   info_ptr->iccp_compression = (png_byte)compression_type;
646#ifdef PNG_FREE_ME_SUPPORTED
647   info_ptr->free_me |= PNG_FREE_ICCP;
648#endif
649   info_ptr->valid |= PNG_INFO_iCCP;
650}
651#endif
652
653#if defined(PNG_TEXT_SUPPORTED)
654void PNGAPI
655png_set_text(png_structp png_ptr, png_infop info_ptr, png_textp text_ptr,
656   int num_text)
657{
[18165]658   int ret;
659   ret=png_set_text_2(png_ptr, info_ptr, text_ptr, num_text);
660   if (ret)
661     png_error(png_ptr, "Insufficient memory to store text");
662}
663
664int /* PRIVATE */
665png_set_text_2(png_structp png_ptr, png_infop info_ptr, png_textp text_ptr,
666   int num_text)
667{
[15213]668   int i;
669
670   png_debug1(1, "in %s storage function\n", (png_ptr->chunk_name[0] == '\0' ?
671      "text" : (png_const_charp)png_ptr->chunk_name));
672
673   if (png_ptr == NULL || info_ptr == NULL || num_text == 0)
[18165]674      return(0);
[15213]675
676   /* Make sure we have enough space in the "text" array in info_struct
677    * to hold all of the incoming text_ptr objects.
678    */
679   if (info_ptr->num_text + num_text > info_ptr->max_text)
680   {
681      if (info_ptr->text != NULL)
682      {
683         png_textp old_text;
684         int old_max;
685
686         old_max = info_ptr->max_text;
687         info_ptr->max_text = info_ptr->num_text + num_text + 8;
688         old_text = info_ptr->text;
[18165]689         info_ptr->text = (png_textp)png_malloc_warn(png_ptr,
[15213]690            (png_uint_32)(info_ptr->max_text * sizeof (png_text)));
[18165]691         if (info_ptr->text == NULL)
692           {
693             png_free(png_ptr, old_text);
694             return(1);
695           }
[15213]696         png_memcpy(info_ptr->text, old_text, (png_size_t)(old_max *
697            sizeof(png_text)));
698         png_free(png_ptr, old_text);
699      }
700      else
701      {
702         info_ptr->max_text = num_text + 8;
703         info_ptr->num_text = 0;
[18165]704         info_ptr->text = (png_textp)png_malloc_warn(png_ptr,
[15213]705            (png_uint_32)(info_ptr->max_text * sizeof (png_text)));
[18165]706         if (info_ptr->text == NULL)
707           return(1);
[15213]708#ifdef PNG_FREE_ME_SUPPORTED
709         info_ptr->free_me |= PNG_FREE_TEXT;
710#endif
711      }
712      png_debug1(3, "allocated %d entries for info_ptr->text\n",
713         info_ptr->max_text);
714   }
715   for (i = 0; i < num_text; i++)
716   {
717      png_size_t text_length,key_len;
718      png_size_t lang_len,lang_key_len;
719      png_textp textp = &(info_ptr->text[info_ptr->num_text]);
720
[17000]721      if (text_ptr[i].key == NULL)
[15213]722          continue;
723
724      key_len = png_strlen(text_ptr[i].key);
725
726      if(text_ptr[i].compression <= 0)
727      {
728        lang_len = 0;
729        lang_key_len = 0;
730      }
731      else
732#ifdef PNG_iTXt_SUPPORTED
733      {
734        /* set iTXt data */
[18165]735        if (text_ptr[i].lang != NULL)
[15213]736          lang_len = png_strlen(text_ptr[i].lang);
737        else
738          lang_len = 0;
[17000]739        if (text_ptr[i].lang_key != NULL)
[15213]740          lang_key_len = png_strlen(text_ptr[i].lang_key);
741        else
742          lang_key_len = 0;
743      }
744#else
745      {
746        png_warning(png_ptr, "iTXt chunk not supported.");
747        continue;
748      }
749#endif
750
[17000]751      if (text_ptr[i].text == NULL || text_ptr[i].text[0] == '\0')
[15213]752      {
753         text_length = 0;
754#ifdef PNG_iTXt_SUPPORTED
755         if(text_ptr[i].compression > 0)
756            textp->compression = PNG_ITXT_COMPRESSION_NONE;
757         else
758#endif
759            textp->compression = PNG_TEXT_COMPRESSION_NONE;
760      }
761      else
762      {
763         text_length = png_strlen(text_ptr[i].text);
764         textp->compression = text_ptr[i].compression;
765      }
766
[18165]767      textp->key = (png_charp)png_malloc_warn(png_ptr,
[15213]768         (png_uint_32)(key_len + text_length + lang_len + lang_key_len + 4));
[18165]769      if (textp->key == NULL)
770        return(1);
[17000]771      png_debug2(2, "Allocated %lu bytes at %x in png_set_text\n",
772         (png_uint_32)(key_len + lang_len + lang_key_len + text_length + 4),
773         (int)textp->key);
[15213]774
775      png_memcpy(textp->key, text_ptr[i].key,
776         (png_size_t)(key_len));
777      *(textp->key+key_len) = '\0';
778#ifdef PNG_iTXt_SUPPORTED
779      if (text_ptr[i].compression > 0)
780      {
781         textp->lang=textp->key + key_len + 1;
782         png_memcpy(textp->lang, text_ptr[i].lang, lang_len);
783         *(textp->lang+lang_len) = '\0';
784         textp->lang_key=textp->lang + lang_len + 1;
785         png_memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
786         *(textp->lang_key+lang_key_len) = '\0';
787         textp->text=textp->lang_key + lang_key_len + 1;
788      }
789      else
790#endif
791      {
792#ifdef PNG_iTXt_SUPPORTED
[17000]793         textp->lang=NULL;
794         textp->lang_key=NULL;
[15213]795#endif
796         textp->text=textp->key + key_len + 1;
797      }
798      if(text_length)
799         png_memcpy(textp->text, text_ptr[i].text,
800            (png_size_t)(text_length));
801      *(textp->text+text_length) = '\0';
802
803#ifdef PNG_iTXt_SUPPORTED
804      if(textp->compression > 0)
805      {
806         textp->text_length = 0;
807         textp->itxt_length = text_length;
808      }
809      else
810#endif
811      {
812         textp->text_length = text_length;
813#ifdef PNG_iTXt_SUPPORTED
814         textp->itxt_length = 0;
815#endif
816      }
817      info_ptr->text[info_ptr->num_text]= *textp;
818      info_ptr->num_text++;
819      png_debug1(3, "transferred text chunk %d\n", info_ptr->num_text);
820   }
[18165]821   return(0);
[15213]822}
823#endif
824
825#if defined(PNG_tIME_SUPPORTED)
826void PNGAPI
827png_set_tIME(png_structp png_ptr, png_infop info_ptr, png_timep mod_time)
828{
829   png_debug1(1, "in %s storage function\n", "tIME");
830   if (png_ptr == NULL || info_ptr == NULL ||
831       (png_ptr->mode & PNG_WROTE_tIME))
832      return;
833
834   png_memcpy(&(info_ptr->mod_time), mod_time, sizeof (png_time));
835   info_ptr->valid |= PNG_INFO_tIME;
836}
837#endif
838
839#if defined(PNG_tRNS_SUPPORTED)
840void PNGAPI
841png_set_tRNS(png_structp png_ptr, png_infop info_ptr,
842   png_bytep trans, int num_trans, png_color_16p trans_values)
843{
844   png_debug1(1, "in %s storage function\n", "tRNS");
845   if (png_ptr == NULL || info_ptr == NULL)
846      return;
847
848   if (trans != NULL)
[17000]849   {
850       /*
[18165]851        * It may not actually be necessary to set png_ptr->trans here;
852        * we do it for backward compatibility with the way the png_handle_tRNS
853        * function used to do the allocation.
854        */
[17000]855#ifdef PNG_FREE_ME_SUPPORTED
856       png_free_data(png_ptr, info_ptr, PNG_FREE_TRNS, 0);
857#endif
858       /* Changed from num_trans to 256 in version 1.2.1 */
859       png_ptr->trans = info_ptr->trans = (png_bytep)png_malloc(png_ptr,
860           (png_uint_32)256);
861       png_memcpy(info_ptr->trans, trans, (png_size_t)num_trans);
862#ifdef PNG_FREE_ME_SUPPORTED
863       info_ptr->free_me |= PNG_FREE_TRNS;
864#else
865       png_ptr->flags |= PNG_FLAG_FREE_TRNS;
866#endif
867   }
[15213]868
869   if (trans_values != NULL)
870   {
871      png_memcpy(&(info_ptr->trans_values), trans_values,
872         sizeof(png_color_16));
873      if (num_trans == 0)
874        num_trans = 1;
875   }
876   info_ptr->num_trans = (png_uint_16)num_trans;
877   info_ptr->valid |= PNG_INFO_tRNS;
878}
879#endif
880
881#if defined(PNG_sPLT_SUPPORTED)
882void PNGAPI
883png_set_sPLT(png_structp png_ptr,
884             png_infop info_ptr, png_sPLT_tp entries, int nentries)
885{
886    png_sPLT_tp np;
887    int i;
888
[18165]889    np = (png_sPLT_tp)png_malloc_warn(png_ptr,
[15213]890        (info_ptr->splt_palettes_num + nentries) * sizeof(png_sPLT_t));
[18165]891    if (np == NULL)
892    {
893      png_warning(png_ptr, "No memory for sPLT palettes.");
894      return;
895    }
[15213]896
897    png_memcpy(np, info_ptr->splt_palettes,
898           info_ptr->splt_palettes_num * sizeof(png_sPLT_t));
899    png_free(png_ptr, info_ptr->splt_palettes);
900    info_ptr->splt_palettes=NULL;
901
902    for (i = 0; i < nentries; i++)
903    {
904        png_sPLT_tp to = np + info_ptr->splt_palettes_num + i;
905        png_sPLT_tp from = entries + i;
906
907        to->name = (png_charp)png_malloc(png_ptr,
[17000]908            png_strlen(from->name) + 1);
[15213]909        png_strcpy(to->name, from->name);
910        to->entries = (png_sPLT_entryp)png_malloc(png_ptr,
[17000]911            from->nentries * sizeof(png_sPLT_t));
[15213]912        png_memcpy(to->entries, from->entries,
[17000]913            from->nentries * sizeof(png_sPLT_t));
[15213]914        to->nentries = from->nentries;
915        to->depth = from->depth;
916    }
917
918    info_ptr->splt_palettes = np;
919    info_ptr->splt_palettes_num += nentries;
920    info_ptr->valid |= PNG_INFO_sPLT;
921#ifdef PNG_FREE_ME_SUPPORTED
922    info_ptr->free_me |= PNG_FREE_SPLT;
923#endif
924}
925#endif /* PNG_sPLT_SUPPORTED */
926
[17000]927#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
[15213]928void PNGAPI
929png_set_unknown_chunks(png_structp png_ptr,
930   png_infop info_ptr, png_unknown_chunkp unknowns, int num_unknowns)
931{
932    png_unknown_chunkp np;
933    int i;
934
935    if (png_ptr == NULL || info_ptr == NULL || num_unknowns == 0)
936        return;
937
[18165]938    np = (png_unknown_chunkp)png_malloc_warn(png_ptr,
[15213]939        (info_ptr->unknown_chunks_num + num_unknowns) *
940        sizeof(png_unknown_chunk));
[18165]941    if (np == NULL)
942    {
943       png_warning(png_ptr, "Out of memory while processing unknown chunk.");
944       return;
945    }
[15213]946
947    png_memcpy(np, info_ptr->unknown_chunks,
948           info_ptr->unknown_chunks_num * sizeof(png_unknown_chunk));
949    png_free(png_ptr, info_ptr->unknown_chunks);
950    info_ptr->unknown_chunks=NULL;
951
952    for (i = 0; i < num_unknowns; i++)
953    {
954        png_unknown_chunkp to = np + info_ptr->unknown_chunks_num + i;
955        png_unknown_chunkp from = unknowns + i;
956
957        png_strcpy((png_charp)to->name, (png_charp)from->name);
958        to->data = (png_bytep)png_malloc(png_ptr, from->size);
[18165]959        if (to->data == NULL)
960           png_warning(png_ptr, "Out of memory while processing unknown chunk.");
961        else
962        {
963          png_memcpy(to->data, from->data, from->size);
964          to->size = from->size;
[15213]965
[18165]966          /* note our location in the read or write sequence */
967          to->location = (png_byte)(png_ptr->mode & 0xff);
968        }
[15213]969    }
970
971    info_ptr->unknown_chunks = np;
972    info_ptr->unknown_chunks_num += num_unknowns;
973#ifdef PNG_FREE_ME_SUPPORTED
974    info_ptr->free_me |= PNG_FREE_UNKN;
975#endif
976}
977void PNGAPI
978png_set_unknown_chunk_location(png_structp png_ptr, png_infop info_ptr,
979   int chunk, int location)
980{
[17000]981   if(png_ptr != NULL && info_ptr != NULL && chunk >= 0 && chunk <
[15213]982         (int)info_ptr->unknown_chunks_num)
983      info_ptr->unknown_chunks[chunk].location = (png_byte)location;
984}
985#endif
986
987#if defined(PNG_READ_EMPTY_PLTE_SUPPORTED) || \
988    defined(PNG_WRITE_EMPTY_PLTE_SUPPORTED)
989void PNGAPI
990png_permit_empty_plte (png_structp png_ptr, int empty_plte_permitted)
991{
[17000]992   /* This function is deprecated in favor of png_permit_mng_features()
993      and will be removed from libpng-2.0.0 */
994   png_debug(1, "in png_permit_empty_plte, DEPRECATED.\n");
[15213]995   if (png_ptr == NULL)
996      return;
[17000]997   png_ptr->mng_features_permitted = (png_byte)
998     ((png_ptr->mng_features_permitted & (~(PNG_FLAG_MNG_EMPTY_PLTE))) |
999     ((empty_plte_permitted & PNG_FLAG_MNG_EMPTY_PLTE)));
[15213]1000}
1001#endif
1002
[17000]1003#if defined(PNG_MNG_FEATURES_SUPPORTED)
1004png_uint_32 PNGAPI
1005png_permit_mng_features (png_structp png_ptr, png_uint_32 mng_features)
1006{
1007   png_debug(1, "in png_permit_mng_features\n");
1008   if (png_ptr == NULL)
1009      return (png_uint_32)0;
1010   png_ptr->mng_features_permitted =
1011     (png_byte)(mng_features & PNG_ALL_MNG_FEATURES);
1012   return (png_uint_32)png_ptr->mng_features_permitted;
1013}
1014#endif
1015
[15213]1016#if defined(PNG_UNKNOWN_CHUNKS_SUPPORTED)
1017void PNGAPI
1018png_set_keep_unknown_chunks(png_structp png_ptr, int keep, png_bytep
1019   chunk_list, int num_chunks)
1020{
1021    png_bytep new_list, p;
1022    int i, old_num_chunks;
1023    if (num_chunks == 0)
1024    {
1025      if(keep == HANDLE_CHUNK_ALWAYS || keep == HANDLE_CHUNK_IF_SAFE)
1026        png_ptr->flags |= PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
1027      else
1028        png_ptr->flags &= ~PNG_FLAG_KEEP_UNKNOWN_CHUNKS;
1029
1030      if(keep == HANDLE_CHUNK_ALWAYS)
1031        png_ptr->flags |= PNG_FLAG_KEEP_UNSAFE_CHUNKS;
1032      else
1033        png_ptr->flags &= ~PNG_FLAG_KEEP_UNSAFE_CHUNKS;
1034      return;
1035    }
1036    if (chunk_list == NULL)
1037      return;
1038    old_num_chunks=png_ptr->num_chunk_list;
[17000]1039    new_list=(png_bytep)png_malloc(png_ptr,
1040       (png_uint_32)(5*(num_chunks+old_num_chunks)));
1041    if(png_ptr->chunk_list != NULL)
[15213]1042    {
[17000]1043       png_memcpy(new_list, png_ptr->chunk_list,
1044          (png_size_t)(5*old_num_chunks));
[15213]1045       png_free(png_ptr, png_ptr->chunk_list);
1046       png_ptr->chunk_list=NULL;
1047    }
[17000]1048    png_memcpy(new_list+5*old_num_chunks, chunk_list,
1049       (png_size_t)(5*num_chunks));
[15213]1050    for (p=new_list+5*old_num_chunks+4, i=0; i<num_chunks; i++, p+=5)
1051       *p=(png_byte)keep;
1052    png_ptr->num_chunk_list=old_num_chunks+num_chunks;
1053    png_ptr->chunk_list=new_list;
1054#ifdef PNG_FREE_ME_SUPPORTED
1055    png_ptr->free_me |= PNG_FREE_LIST;
1056#endif
1057}
1058#endif
1059
1060#if defined(PNG_READ_USER_CHUNKS_SUPPORTED)
1061void PNGAPI
1062png_set_read_user_chunk_fn(png_structp png_ptr, png_voidp user_chunk_ptr,
1063   png_user_chunk_ptr read_user_chunk_fn)
1064{
1065   png_debug(1, "in png_set_read_user_chunk_fn\n");
1066   png_ptr->read_user_chunk_fn = read_user_chunk_fn;
1067   png_ptr->user_chunk_ptr = user_chunk_ptr;
1068}
1069#endif
1070
1071#if defined(PNG_INFO_IMAGE_SUPPORTED)
1072void PNGAPI
1073png_set_rows(png_structp png_ptr, png_infop info_ptr, png_bytepp row_pointers)
1074{
1075   png_debug1(1, "in %s storage function\n", "rows");
1076
1077   if (png_ptr == NULL || info_ptr == NULL)
1078      return;
1079
1080   if(info_ptr->row_pointers && (info_ptr->row_pointers != row_pointers))
1081      png_free_data(png_ptr, info_ptr, PNG_FREE_ROWS, 0);
1082   info_ptr->row_pointers = row_pointers;
1083   if(row_pointers)
1084      info_ptr->valid |= PNG_INFO_IDAT;
1085}
1086#endif
1087
1088void PNGAPI
1089png_set_compression_buffer_size(png_structp png_ptr, png_uint_32 size)
1090{
1091    if(png_ptr->zbuf)
1092       png_free(png_ptr, png_ptr->zbuf);
1093    png_ptr->zbuf_size = (png_size_t)size;
1094    png_ptr->zbuf = (png_bytep)png_malloc(png_ptr, size);
1095    png_ptr->zstream.next_out = png_ptr->zbuf;
1096    png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
1097}
1098
1099void PNGAPI
1100png_set_invalid(png_structp png_ptr, png_infop info_ptr, int mask)
1101{
1102   if (png_ptr && info_ptr)
1103      info_ptr->valid &= ~(mask);
1104}
[17000]1105
1106
[18165]1107#ifndef PNG_1_0_X
[17000]1108#ifdef PNG_ASSEMBLER_CODE_SUPPORTED
1109/* this function was added to libpng 1.2.0 and should always exist by default */
1110void PNGAPI
1111png_set_asm_flags (png_structp png_ptr, png_uint_32 asm_flags)
1112{
1113    png_uint_32 settable_asm_flags;
1114    png_uint_32 settable_mmx_flags;
1115
1116    settable_mmx_flags =
1117#ifdef PNG_HAVE_ASSEMBLER_COMBINE_ROW
1118                         PNG_ASM_FLAG_MMX_READ_COMBINE_ROW  |
1119#endif
1120#ifdef PNG_HAVE_ASSEMBLER_READ_INTERLACE
1121                         PNG_ASM_FLAG_MMX_READ_INTERLACE    |
1122#endif
1123#ifdef PNG_HAVE_ASSEMBLER_READ_FILTER_ROW
1124                         PNG_ASM_FLAG_MMX_READ_FILTER_SUB   |
1125                         PNG_ASM_FLAG_MMX_READ_FILTER_UP    |
1126                         PNG_ASM_FLAG_MMX_READ_FILTER_AVG   |
1127                         PNG_ASM_FLAG_MMX_READ_FILTER_PAETH |
1128#endif
1129                         0;
1130
1131    /* could be some non-MMX ones in the future, but not currently: */
1132    settable_asm_flags = settable_mmx_flags;
1133
1134    if (!(png_ptr->asm_flags & PNG_ASM_FLAG_MMX_SUPPORT_COMPILED) ||
1135        !(png_ptr->asm_flags & PNG_ASM_FLAG_MMX_SUPPORT_IN_CPU))
1136    {
1137        /* clear all MMX flags if MMX isn't supported */
1138        settable_asm_flags &= ~settable_mmx_flags;
1139        png_ptr->asm_flags &= ~settable_mmx_flags;
1140    }
1141
1142    /* we're replacing the settable bits with those passed in by the user,
1143     * so first zero them out of the master copy, then logical-OR in the
1144     * allowed subset that was requested */
1145
[18165]1146    png_ptr->asm_flags &= ~settable_asm_flags;               /* zero them */
1147    png_ptr->asm_flags |= (asm_flags & settable_asm_flags);  /* set them */
[17000]1148}
1149#endif /* ?PNG_ASSEMBLER_CODE_SUPPORTED */
1150
1151#ifdef PNG_ASSEMBLER_CODE_SUPPORTED
1152/* this function was added to libpng 1.2.0 */
1153void PNGAPI
1154png_set_mmx_thresholds (png_structp png_ptr,
1155                        png_byte mmx_bitdepth_threshold,
1156                        png_uint_32 mmx_rowbytes_threshold)
1157{
1158    png_ptr->mmx_bitdepth_threshold = mmx_bitdepth_threshold;
1159    png_ptr->mmx_rowbytes_threshold = mmx_rowbytes_threshold;
1160}
1161#endif /* ?PNG_ASSEMBLER_CODE_SUPPORTED */
[18165]1162#endif /* ?PNG_1_0_X */
Note: See TracBrowser for help on using the repository browser.