[devel] Fix whitespace in pngerror.c and pngset.c
This commit is contained in:
parent
45624d6c2c
commit
da30135c4c
@ -401,7 +401,8 @@ png_set_strip_error_numbers(png_structp png_ptr, png_uint_32 strip_mode)
|
|||||||
if (png_ptr != NULL)
|
if (png_ptr != NULL)
|
||||||
{
|
{
|
||||||
png_ptr->flags &=
|
png_ptr->flags &=
|
||||||
((~(PNG_FLAG_STRIP_ERROR_NUMBERS|PNG_FLAG_STRIP_ERROR_TEXT))&strip_mode);
|
((~(PNG_FLAG_STRIP_ERROR_NUMBERS |
|
||||||
|
PNG_FLAG_STRIP_ERROR_TEXT))&strip_mode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
26
pngset.c
26
pngset.c
@ -57,14 +57,14 @@ png_set_cHRM(png_structp png_ptr, png_infop info_ptr,
|
|||||||
info_ptr->x_blue = (float)blue_x;
|
info_ptr->x_blue = (float)blue_x;
|
||||||
info_ptr->y_blue = (float)blue_y;
|
info_ptr->y_blue = (float)blue_y;
|
||||||
#ifdef PNG_FIXED_POINT_SUPPORTED
|
#ifdef PNG_FIXED_POINT_SUPPORTED
|
||||||
info_ptr->int_x_white = (png_fixed_point)(white_x*100000.+0.5);
|
info_ptr->int_x_white = (png_fixed_point)(white_x*100000. + 0.5);
|
||||||
info_ptr->int_y_white = (png_fixed_point)(white_y*100000.+0.5);
|
info_ptr->int_y_white = (png_fixed_point)(white_y*100000. + 0.5);
|
||||||
info_ptr->int_x_red = (png_fixed_point)( red_x*100000.+0.5);
|
info_ptr->int_x_red = (png_fixed_point)( red_x*100000. + 0.5);
|
||||||
info_ptr->int_y_red = (png_fixed_point)( red_y*100000.+0.5);
|
info_ptr->int_y_red = (png_fixed_point)( red_y*100000. + 0.5);
|
||||||
info_ptr->int_x_green = (png_fixed_point)(green_x*100000.+0.5);
|
info_ptr->int_x_green = (png_fixed_point)(green_x*100000. + 0.5);
|
||||||
info_ptr->int_y_green = (png_fixed_point)(green_y*100000.+0.5);
|
info_ptr->int_y_green = (png_fixed_point)(green_y*100000. + 0.5);
|
||||||
info_ptr->int_x_blue = (png_fixed_point)( blue_x*100000.+0.5);
|
info_ptr->int_x_blue = (png_fixed_point)( blue_x*100000. + 0.5);
|
||||||
info_ptr->int_y_blue = (png_fixed_point)( blue_y*100000.+0.5);
|
info_ptr->int_y_blue = (png_fixed_point)( blue_y*100000. + 0.5);
|
||||||
#endif
|
#endif
|
||||||
info_ptr->valid |= PNG_INFO_cHRM;
|
info_ptr->valid |= PNG_INFO_cHRM;
|
||||||
}
|
}
|
||||||
@ -127,7 +127,7 @@ png_set_gAMA(png_structp png_ptr, png_infop info_ptr, double file_gamma)
|
|||||||
if (file_gamma > 21474.83)
|
if (file_gamma > 21474.83)
|
||||||
{
|
{
|
||||||
png_warning(png_ptr, "Limiting gamma to 21474.83");
|
png_warning(png_ptr, "Limiting gamma to 21474.83");
|
||||||
png_gamma=21474.83;
|
png_gamma = 21474.83;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
png_gamma = file_gamma;
|
png_gamma = file_gamma;
|
||||||
@ -137,7 +137,7 @@ png_set_gAMA(png_structp png_ptr, png_infop info_ptr, double file_gamma)
|
|||||||
#endif
|
#endif
|
||||||
info_ptr->valid |= PNG_INFO_gAMA;
|
info_ptr->valid |= PNG_INFO_gAMA;
|
||||||
if (png_gamma == 0.0)
|
if (png_gamma == 0.0)
|
||||||
png_warning(png_ptr, "Setting gamma=0");
|
png_warning(png_ptr, "Setting gamma = 0");
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
void PNGAPI
|
void PNGAPI
|
||||||
@ -154,7 +154,7 @@ png_set_gAMA_fixed(png_structp png_ptr, png_infop info_ptr, png_fixed_point
|
|||||||
if (int_gamma > (png_fixed_point)PNG_UINT_31_MAX)
|
if (int_gamma > (png_fixed_point)PNG_UINT_31_MAX)
|
||||||
{
|
{
|
||||||
png_warning(png_ptr, "Limiting gamma to 21474.83");
|
png_warning(png_ptr, "Limiting gamma to 21474.83");
|
||||||
png_gamma=PNG_UINT_31_MAX;
|
png_gamma = PNG_UINT_31_MAX;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -174,7 +174,7 @@ png_set_gAMA_fixed(png_structp png_ptr, png_infop info_ptr, png_fixed_point
|
|||||||
#endif
|
#endif
|
||||||
info_ptr->valid |= PNG_INFO_gAMA;
|
info_ptr->valid |= PNG_INFO_gAMA;
|
||||||
if (png_gamma == 0)
|
if (png_gamma == 0)
|
||||||
png_warning(png_ptr, "Setting gamma=0");
|
png_warning(png_ptr, "Setting gamma = 0");
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -253,7 +253,7 @@ png_set_IHDR(png_structp png_ptr, png_infop info_ptr,
|
|||||||
|
|
||||||
/* Check for potential overflow */
|
/* Check for potential overflow */
|
||||||
if (width > (PNG_UINT_32_MAX
|
if (width > (PNG_UINT_32_MAX
|
||||||
>> 3) /* 8-byte RGBA pixels */
|
>> 3) /* 8-byte RRGGBBAA pixels */
|
||||||
- 64 /* bigrowbuf hack */
|
- 64 /* bigrowbuf hack */
|
||||||
- 1 /* filter byte */
|
- 1 /* filter byte */
|
||||||
- 7*8 /* rounding of width to multiple of 8 pixels */
|
- 7*8 /* rounding of width to multiple of 8 pixels */
|
||||||
|
Loading…
Reference in New Issue
Block a user