backing out check in from jin_nance that broke Mac
git-svn-id: svn://10.0.0.236/trunk@79876 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
70dc19ecee
commit
3b9eecb7ec
@ -77,6 +77,9 @@ mailing address.
|
||||
#define HOWMANY(x, r) (((x) + ((r) - 1)) / (r))
|
||||
#define ROUNDUP(x, r) (HOWMANY(x, r) * (r))
|
||||
|
||||
int il_debug;
|
||||
PRLogModuleInfo *il_log_module = NULL;
|
||||
|
||||
#ifndef MAX
|
||||
# define MAX(x, y) (((x) > (y)) ? (x) : (y))
|
||||
#endif
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
|
||||
/*
|
||||
* jpeg.c --- Glue code to Independent JPEG Group decoder library
|
||||
* $Id: jpeg.cpp,v 1.19 2000-09-22 09:18:38 jim_nance%yahoo.com Exp $
|
||||
* $Id: jpeg.cpp,v 1.20 2000-09-22 10:42:52 jband%netscape.com Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -64,6 +64,9 @@ PR_END_EXTERN_C
|
||||
/* Normal JFIF markers can't have more bytes than this. */
|
||||
#define MAX_JPEG_MARKER_LENGTH (((PRUint32)1 << 16) - 1)
|
||||
|
||||
int il_debug;
|
||||
PRLogModuleInfo *il_log_module = NULL;
|
||||
|
||||
/*
|
||||
* States that the jpeg decoder might be in
|
||||
*/
|
||||
|
||||
@ -51,6 +51,9 @@ static void PR_CALLBACK row_callback(png_structp png_ptr, png_bytep new_row,
|
||||
static void PR_CALLBACK end_callback(png_structp png_ptr, png_infop info);
|
||||
static void PR_CALLBACK il_png_error_handler(png_structp png_ptr, png_const_charp msg);
|
||||
|
||||
int il_debug;
|
||||
PRLogModuleInfo *il_log_module = NULL;
|
||||
|
||||
#define CAN_SUPPORT_8_BIT_MASK
|
||||
|
||||
PRBool
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user