mirror of https://github.com/axmolengine/axmol.git
Merge branch 'master' of https://github.com/cocos2d/cocos2d-x into modify_linux_port
This commit is contained in:
commit
3f7ab5a58f
|
@ -1,11 +1,2 @@
|
||||||
# This file is automatically generated by Android Tools.
|
|
||||||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
|
||||||
#
|
|
||||||
# This file must be checked in Version Control Systems.
|
|
||||||
#
|
|
||||||
# To customize properties used by the Ant build system use,
|
|
||||||
# "build.properties", and override values to adapt the script to your
|
|
||||||
# project structure.
|
|
||||||
|
|
||||||
# Project target.
|
# Project target.
|
||||||
target=android-8
|
target=android-7
|
||||||
|
|
|
@ -1,11 +1,2 @@
|
||||||
# This file is automatically generated by Android Tools.
|
|
||||||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
|
||||||
#
|
|
||||||
# This file must be checked in Version Control Systems.
|
|
||||||
#
|
|
||||||
# To customize properties used by the Ant build system use,
|
|
||||||
# "build.properties", and override values to adapt the script to your
|
|
||||||
# project structure.
|
|
||||||
|
|
||||||
# Project target.
|
# Project target.
|
||||||
target=android-7
|
target=android-15
|
||||||
|
|
|
@ -152,17 +152,7 @@ bool CCImage::_initWithJpgData(void * data, int nSize)
|
||||||
/* setup decompression process and source, then read JPEG header */
|
/* setup decompression process and source, then read JPEG header */
|
||||||
jpeg_create_decompress( &cinfo );
|
jpeg_create_decompress( &cinfo );
|
||||||
|
|
||||||
/* this makes the library read from infile */
|
|
||||||
//TODO in some linux release it use libjpeg62 which does not support jpeg_mem_src instead of libjpeg8
|
|
||||||
// load memory data as stream
|
|
||||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX)
|
|
||||||
FILE * source = fmemopen(data, nSize, "rb");
|
|
||||||
CC_BREAK_IF(!source);
|
|
||||||
jpeg_stdio_src(&cinfo, source);
|
|
||||||
fclose(source);
|
|
||||||
#else
|
|
||||||
jpeg_mem_src( &cinfo, (unsigned char *) data, nSize );
|
jpeg_mem_src( &cinfo, (unsigned char *) data, nSize );
|
||||||
#endif
|
|
||||||
|
|
||||||
/* reading the image header which contains image information */
|
/* reading the image header which contains image information */
|
||||||
jpeg_read_header( &cinfo, true );
|
jpeg_read_header( &cinfo, true );
|
||||||
|
@ -562,6 +552,7 @@ bool CCImage::_saveImageToJPG(const char * pszFilePath)
|
||||||
for (int i = 0; i < m_nHeight; ++i)
|
for (int i = 0; i < m_nHeight; ++i)
|
||||||
{
|
{
|
||||||
for (int j = 0; j < m_nWidth; ++j)
|
for (int j = 0; j < m_nWidth; ++j)
|
||||||
|
|
||||||
{
|
{
|
||||||
pTempData[(i * m_nWidth + j) * 3] = m_pData[(i * m_nWidth + j) * 4];
|
pTempData[(i * m_nWidth + j) * 3] = m_pData[(i * m_nWidth + j) * 4];
|
||||||
pTempData[(i * m_nWidth + j) * 3 + 1] = m_pData[(i * m_nWidth + j) * 4 + 1];
|
pTempData[(i * m_nWidth + j) * 3 + 1] = m_pData[(i * m_nWidth + j) * 4 + 1];
|
||||||
|
|
|
@ -0,0 +1,47 @@
|
||||||
|
/*
|
||||||
|
* jchuff.h
|
||||||
|
*
|
||||||
|
* Copyright (C) 1991-1997, Thomas G. Lane.
|
||||||
|
* This file is part of the Independent JPEG Group's software.
|
||||||
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
|
*
|
||||||
|
* This file contains declarations for Huffman entropy encoding routines
|
||||||
|
* that are shared between the sequential encoder (jchuff.c) and the
|
||||||
|
* progressive encoder (jcphuff.c). No other modules need to see these.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* The legal range of a DCT coefficient is
|
||||||
|
* -1024 .. +1023 for 8-bit data;
|
||||||
|
* -16384 .. +16383 for 12-bit data.
|
||||||
|
* Hence the magnitude should always fit in 10 or 14 bits respectively.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if BITS_IN_JSAMPLE == 8
|
||||||
|
#define MAX_COEF_BITS 10
|
||||||
|
#else
|
||||||
|
#define MAX_COEF_BITS 14
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Derived data constructed for each Huffman table */
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
unsigned int ehufco[256]; /* code for each symbol */
|
||||||
|
char ehufsi[256]; /* length of code for each symbol */
|
||||||
|
/* If no code has been allocated for a symbol S, ehufsi[S] contains 0 */
|
||||||
|
} c_derived_tbl;
|
||||||
|
|
||||||
|
/* Short forms of external names for systems with brain-damaged linkers. */
|
||||||
|
|
||||||
|
#ifdef NEED_SHORT_EXTERNAL_NAMES
|
||||||
|
#define jpeg_make_c_derived_tbl jMkCDerived
|
||||||
|
#define jpeg_gen_optimal_table jGenOptTbl
|
||||||
|
#endif /* NEED_SHORT_EXTERNAL_NAMES */
|
||||||
|
|
||||||
|
/* Expand a Huffman table definition into the derived format */
|
||||||
|
EXTERN(void) jpeg_make_c_derived_tbl
|
||||||
|
JPP((j_compress_ptr cinfo, boolean isDC, int tblno,
|
||||||
|
c_derived_tbl ** pdtbl));
|
||||||
|
|
||||||
|
/* Generate an optimal table definition given the specified counts */
|
||||||
|
EXTERN(void) jpeg_gen_optimal_table
|
||||||
|
JPP((j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[]));
|
|
@ -1,38 +1,23 @@
|
||||||
/* jconfig.h. Generated from jconfig.cfg by configure. */
|
/* jconfig.dj --- jconfig.h for DJGPP (Delorie's GNU C port) on MS-DOS. */
|
||||||
/* jconfig.cfg --- source file edited by configure script */
|
/* see jconfig.doc for explanations */
|
||||||
/* see jconfig.txt for explanations */
|
|
||||||
|
|
||||||
#define HAVE_PROTOTYPES 1
|
#define HAVE_PROTOTYPES
|
||||||
#define HAVE_UNSIGNED_CHAR 1
|
#define HAVE_UNSIGNED_CHAR
|
||||||
#define HAVE_UNSIGNED_SHORT 1
|
#define HAVE_UNSIGNED_SHORT
|
||||||
/* #undef void */
|
/* #define void char */
|
||||||
/* #undef const */
|
/* #define const */
|
||||||
/* #undef CHAR_IS_UNSIGNED */
|
#undef CHAR_IS_UNSIGNED
|
||||||
#define HAVE_STDDEF_H 1
|
#define HAVE_STDDEF_H
|
||||||
#define HAVE_STDLIB_H 1
|
#define HAVE_STDLIB_H
|
||||||
#define HAVE_LOCALE_H 1
|
#undef NEED_BSD_STRINGS
|
||||||
/* #undef NEED_BSD_STRINGS */
|
#undef NEED_SYS_TYPES_H
|
||||||
/* #undef NEED_SYS_TYPES_H */
|
#undef NEED_FAR_POINTERS /* DJGPP uses flat 32-bit addressing */
|
||||||
/* #undef NEED_FAR_POINTERS */
|
#undef NEED_SHORT_EXTERNAL_NAMES
|
||||||
/* #undef NEED_SHORT_EXTERNAL_NAMES */
|
#undef INCOMPLETE_TYPES_BROKEN
|
||||||
/* Define this if you get warnings about undefined structures. */
|
|
||||||
/* #undef INCOMPLETE_TYPES_BROKEN */
|
|
||||||
|
|
||||||
/* Define "boolean" as unsigned char, not int, on Windows systems. */
|
|
||||||
#ifdef _WIN32
|
|
||||||
#ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
|
|
||||||
typedef unsigned char boolean;
|
|
||||||
#endif
|
|
||||||
#define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef JPEG_INTERNALS
|
#ifdef JPEG_INTERNALS
|
||||||
|
|
||||||
/* #undef RIGHT_SHIFT_IS_UNSIGNED */
|
#undef RIGHT_SHIFT_IS_UNSIGNED
|
||||||
#define INLINE __inline__
|
|
||||||
/* These are for configuring the JPEG memory manager. */
|
|
||||||
/* #undef DEFAULT_MAX_MEM */
|
|
||||||
/* #undef NO_MKTEMP */
|
|
||||||
|
|
||||||
#endif /* JPEG_INTERNALS */
|
#endif /* JPEG_INTERNALS */
|
||||||
|
|
||||||
|
@ -41,14 +26,13 @@ typedef unsigned char boolean;
|
||||||
#define BMP_SUPPORTED /* BMP image file format */
|
#define BMP_SUPPORTED /* BMP image file format */
|
||||||
#define GIF_SUPPORTED /* GIF image file format */
|
#define GIF_SUPPORTED /* GIF image file format */
|
||||||
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
|
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
|
||||||
/* #undef RLE_SUPPORTED */
|
#undef RLE_SUPPORTED /* Utah RLE image file format */
|
||||||
#define TARGA_SUPPORTED /* Targa image file format */
|
#define TARGA_SUPPORTED /* Targa image file format */
|
||||||
|
|
||||||
/* #undef TWO_FILE_COMMANDLINE */
|
#undef TWO_FILE_COMMANDLINE /* optional */
|
||||||
/* #undef NEED_SIGNAL_CATCHER */
|
#define USE_SETMODE /* Needed to make one-file style work in DJGPP */
|
||||||
/* #undef DONT_USE_B_MODE */
|
#undef NEED_SIGNAL_CATCHER /* Define this if you use jmemname.c */
|
||||||
|
#undef DONT_USE_B_MODE
|
||||||
/* Define this if you want percent-done progress reports from cjpeg/djpeg. */
|
#undef PROGRESS_REPORT /* optional */
|
||||||
/* #undef PROGRESS_REPORT */
|
|
||||||
|
|
||||||
#endif /* JPEG_CJPEG_DJPEG */
|
#endif /* JPEG_CJPEG_DJPEG */
|
||||||
|
|
|
@ -0,0 +1,201 @@
|
||||||
|
/*
|
||||||
|
* jdhuff.h
|
||||||
|
*
|
||||||
|
* Copyright (C) 1991-1997, Thomas G. Lane.
|
||||||
|
* This file is part of the Independent JPEG Group's software.
|
||||||
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
|
*
|
||||||
|
* This file contains declarations for Huffman entropy decoding routines
|
||||||
|
* that are shared between the sequential decoder (jdhuff.c) and the
|
||||||
|
* progressive decoder (jdphuff.c). No other modules need to see these.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Short forms of external names for systems with brain-damaged linkers. */
|
||||||
|
|
||||||
|
#ifdef NEED_SHORT_EXTERNAL_NAMES
|
||||||
|
#define jpeg_make_d_derived_tbl jMkDDerived
|
||||||
|
#define jpeg_fill_bit_buffer jFilBitBuf
|
||||||
|
#define jpeg_huff_decode jHufDecode
|
||||||
|
#endif /* NEED_SHORT_EXTERNAL_NAMES */
|
||||||
|
|
||||||
|
|
||||||
|
/* Derived data constructed for each Huffman table */
|
||||||
|
|
||||||
|
#define HUFF_LOOKAHEAD 8 /* # of bits of lookahead */
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
/* Basic tables: (element [0] of each array is unused) */
|
||||||
|
INT32 maxcode[18]; /* largest code of length k (-1 if none) */
|
||||||
|
/* (maxcode[17] is a sentinel to ensure jpeg_huff_decode terminates) */
|
||||||
|
INT32 valoffset[17]; /* huffval[] offset for codes of length k */
|
||||||
|
/* valoffset[k] = huffval[] index of 1st symbol of code length k, less
|
||||||
|
* the smallest code of length k; so given a code of length k, the
|
||||||
|
* corresponding symbol is huffval[code + valoffset[k]]
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Link to public Huffman table (needed only in jpeg_huff_decode) */
|
||||||
|
JHUFF_TBL *pub;
|
||||||
|
|
||||||
|
/* Lookahead tables: indexed by the next HUFF_LOOKAHEAD bits of
|
||||||
|
* the input data stream. If the next Huffman code is no more
|
||||||
|
* than HUFF_LOOKAHEAD bits long, we can obtain its length and
|
||||||
|
* the corresponding symbol directly from these tables.
|
||||||
|
*/
|
||||||
|
int look_nbits[1<<HUFF_LOOKAHEAD]; /* # bits, or 0 if too long */
|
||||||
|
UINT8 look_sym[1<<HUFF_LOOKAHEAD]; /* symbol, or unused */
|
||||||
|
} d_derived_tbl;
|
||||||
|
|
||||||
|
/* Expand a Huffman table definition into the derived format */
|
||||||
|
EXTERN(void) jpeg_make_d_derived_tbl
|
||||||
|
JPP((j_decompress_ptr cinfo, boolean isDC, int tblno,
|
||||||
|
d_derived_tbl ** pdtbl));
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Fetching the next N bits from the input stream is a time-critical operation
|
||||||
|
* for the Huffman decoders. We implement it with a combination of inline
|
||||||
|
* macros and out-of-line subroutines. Note that N (the number of bits
|
||||||
|
* demanded at one time) never exceeds 15 for JPEG use.
|
||||||
|
*
|
||||||
|
* We read source bytes into get_buffer and dole out bits as needed.
|
||||||
|
* If get_buffer already contains enough bits, they are fetched in-line
|
||||||
|
* by the macros CHECK_BIT_BUFFER and GET_BITS. When there aren't enough
|
||||||
|
* bits, jpeg_fill_bit_buffer is called; it will attempt to fill get_buffer
|
||||||
|
* as full as possible (not just to the number of bits needed; this
|
||||||
|
* prefetching reduces the overhead cost of calling jpeg_fill_bit_buffer).
|
||||||
|
* Note that jpeg_fill_bit_buffer may return FALSE to indicate suspension.
|
||||||
|
* On TRUE return, jpeg_fill_bit_buffer guarantees that get_buffer contains
|
||||||
|
* at least the requested number of bits --- dummy zeroes are inserted if
|
||||||
|
* necessary.
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef INT32 bit_buf_type; /* type of bit-extraction buffer */
|
||||||
|
#define BIT_BUF_SIZE 32 /* size of buffer in bits */
|
||||||
|
|
||||||
|
/* If long is > 32 bits on your machine, and shifting/masking longs is
|
||||||
|
* reasonably fast, making bit_buf_type be long and setting BIT_BUF_SIZE
|
||||||
|
* appropriately should be a win. Unfortunately we can't define the size
|
||||||
|
* with something like #define BIT_BUF_SIZE (sizeof(bit_buf_type)*8)
|
||||||
|
* because not all machines measure sizeof in 8-bit bytes.
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef struct { /* Bitreading state saved across MCUs */
|
||||||
|
bit_buf_type get_buffer; /* current bit-extraction buffer */
|
||||||
|
int bits_left; /* # of unused bits in it */
|
||||||
|
} bitread_perm_state;
|
||||||
|
|
||||||
|
typedef struct { /* Bitreading working state within an MCU */
|
||||||
|
/* Current data source location */
|
||||||
|
/* We need a copy, rather than munging the original, in case of suspension */
|
||||||
|
const JOCTET * next_input_byte; /* => next byte to read from source */
|
||||||
|
size_t bytes_in_buffer; /* # of bytes remaining in source buffer */
|
||||||
|
/* Bit input buffer --- note these values are kept in register variables,
|
||||||
|
* not in this struct, inside the inner loops.
|
||||||
|
*/
|
||||||
|
bit_buf_type get_buffer; /* current bit-extraction buffer */
|
||||||
|
int bits_left; /* # of unused bits in it */
|
||||||
|
/* Pointer needed by jpeg_fill_bit_buffer. */
|
||||||
|
j_decompress_ptr cinfo; /* back link to decompress master record */
|
||||||
|
} bitread_working_state;
|
||||||
|
|
||||||
|
/* Macros to declare and load/save bitread local variables. */
|
||||||
|
#define BITREAD_STATE_VARS \
|
||||||
|
register bit_buf_type get_buffer; \
|
||||||
|
register int bits_left; \
|
||||||
|
bitread_working_state br_state
|
||||||
|
|
||||||
|
#define BITREAD_LOAD_STATE(cinfop,permstate) \
|
||||||
|
br_state.cinfo = cinfop; \
|
||||||
|
br_state.next_input_byte = cinfop->src->next_input_byte; \
|
||||||
|
br_state.bytes_in_buffer = cinfop->src->bytes_in_buffer; \
|
||||||
|
get_buffer = permstate.get_buffer; \
|
||||||
|
bits_left = permstate.bits_left;
|
||||||
|
|
||||||
|
#define BITREAD_SAVE_STATE(cinfop,permstate) \
|
||||||
|
cinfop->src->next_input_byte = br_state.next_input_byte; \
|
||||||
|
cinfop->src->bytes_in_buffer = br_state.bytes_in_buffer; \
|
||||||
|
permstate.get_buffer = get_buffer; \
|
||||||
|
permstate.bits_left = bits_left
|
||||||
|
|
||||||
|
/*
|
||||||
|
* These macros provide the in-line portion of bit fetching.
|
||||||
|
* Use CHECK_BIT_BUFFER to ensure there are N bits in get_buffer
|
||||||
|
* before using GET_BITS, PEEK_BITS, or DROP_BITS.
|
||||||
|
* The variables get_buffer and bits_left are assumed to be locals,
|
||||||
|
* but the state struct might not be (jpeg_huff_decode needs this).
|
||||||
|
* CHECK_BIT_BUFFER(state,n,action);
|
||||||
|
* Ensure there are N bits in get_buffer; if suspend, take action.
|
||||||
|
* val = GET_BITS(n);
|
||||||
|
* Fetch next N bits.
|
||||||
|
* val = PEEK_BITS(n);
|
||||||
|
* Fetch next N bits without removing them from the buffer.
|
||||||
|
* DROP_BITS(n);
|
||||||
|
* Discard next N bits.
|
||||||
|
* The value N should be a simple variable, not an expression, because it
|
||||||
|
* is evaluated multiple times.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define CHECK_BIT_BUFFER(state,nbits,action) \
|
||||||
|
{ if (bits_left < (nbits)) { \
|
||||||
|
if (! jpeg_fill_bit_buffer(&(state),get_buffer,bits_left,nbits)) \
|
||||||
|
{ action; } \
|
||||||
|
get_buffer = (state).get_buffer; bits_left = (state).bits_left; } }
|
||||||
|
|
||||||
|
#define GET_BITS(nbits) \
|
||||||
|
(((int) (get_buffer >> (bits_left -= (nbits)))) & ((1<<(nbits))-1))
|
||||||
|
|
||||||
|
#define PEEK_BITS(nbits) \
|
||||||
|
(((int) (get_buffer >> (bits_left - (nbits)))) & ((1<<(nbits))-1))
|
||||||
|
|
||||||
|
#define DROP_BITS(nbits) \
|
||||||
|
(bits_left -= (nbits))
|
||||||
|
|
||||||
|
/* Load up the bit buffer to a depth of at least nbits */
|
||||||
|
EXTERN(boolean) jpeg_fill_bit_buffer
|
||||||
|
JPP((bitread_working_state * state, register bit_buf_type get_buffer,
|
||||||
|
register int bits_left, int nbits));
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Code for extracting next Huffman-coded symbol from input bit stream.
|
||||||
|
* Again, this is time-critical and we make the main paths be macros.
|
||||||
|
*
|
||||||
|
* We use a lookahead table to process codes of up to HUFF_LOOKAHEAD bits
|
||||||
|
* without looping. Usually, more than 95% of the Huffman codes will be 8
|
||||||
|
* or fewer bits long. The few overlength codes are handled with a loop,
|
||||||
|
* which need not be inline code.
|
||||||
|
*
|
||||||
|
* Notes about the HUFF_DECODE macro:
|
||||||
|
* 1. Near the end of the data segment, we may fail to get enough bits
|
||||||
|
* for a lookahead. In that case, we do it the hard way.
|
||||||
|
* 2. If the lookahead table contains no entry, the next code must be
|
||||||
|
* more than HUFF_LOOKAHEAD bits long.
|
||||||
|
* 3. jpeg_huff_decode returns -1 if forced to suspend.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define HUFF_DECODE(result,state,htbl,failaction,slowlabel) \
|
||||||
|
{ register int nb, look; \
|
||||||
|
if (bits_left < HUFF_LOOKAHEAD) { \
|
||||||
|
if (! jpeg_fill_bit_buffer(&state,get_buffer,bits_left, 0)) {failaction;} \
|
||||||
|
get_buffer = state.get_buffer; bits_left = state.bits_left; \
|
||||||
|
if (bits_left < HUFF_LOOKAHEAD) { \
|
||||||
|
nb = 1; goto slowlabel; \
|
||||||
|
} \
|
||||||
|
} \
|
||||||
|
look = PEEK_BITS(HUFF_LOOKAHEAD); \
|
||||||
|
if ((nb = htbl->look_nbits[look]) != 0) { \
|
||||||
|
DROP_BITS(nb); \
|
||||||
|
result = htbl->look_sym[look]; \
|
||||||
|
} else { \
|
||||||
|
nb = HUFF_LOOKAHEAD+1; \
|
||||||
|
slowlabel: \
|
||||||
|
if ((result=jpeg_huff_decode(&state,get_buffer,bits_left,htbl,nb)) < 0) \
|
||||||
|
{ failaction; } \
|
||||||
|
get_buffer = state.get_buffer; bits_left = state.bits_left; \
|
||||||
|
} \
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Out-of-line case for Huffman code fetching */
|
||||||
|
EXTERN(int) jpeg_huff_decode
|
||||||
|
JPP((bitread_working_state * state, register bit_buf_type get_buffer,
|
||||||
|
register int bits_left, d_derived_tbl * htbl, int min_bits));
|
|
@ -1 +1 @@
|
||||||
37d0b7101cea5dff8e28a57fe552d2301d6acd23
|
dcd9ca68ab355cd31812a2d804f63d24166079fa
|
|
@ -1,11 +1,2 @@
|
||||||
# This file is automatically generated by Android Tools.
|
|
||||||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
|
||||||
#
|
|
||||||
# This file must be checked in Version Control Systems.
|
|
||||||
#
|
|
||||||
# To customize properties used by the Ant build system use,
|
|
||||||
# "build.properties", and override values to adapt the script to your
|
|
||||||
# project structure.
|
|
||||||
|
|
||||||
# Project target.
|
# Project target.
|
||||||
target=android-7
|
target=android-7
|
||||||
|
|
Loading…
Reference in New Issue