1*38e8c45fSAndroid Build Coastguard Worker // Copyright 2009 Google Inc. 2*38e8c45fSAndroid Build Coastguard Worker // 3*38e8c45fSAndroid Build Coastguard Worker // Licensed under the Apache License, Version 2.0 (the "License"); 4*38e8c45fSAndroid Build Coastguard Worker // you may not use this file except in compliance with the License. 5*38e8c45fSAndroid Build Coastguard Worker // You may obtain a copy of the License at 6*38e8c45fSAndroid Build Coastguard Worker // 7*38e8c45fSAndroid Build Coastguard Worker // http://www.apache.org/licenses/LICENSE-2.0 8*38e8c45fSAndroid Build Coastguard Worker // 9*38e8c45fSAndroid Build Coastguard Worker // Unless required by applicable law or agreed to in writing, software 10*38e8c45fSAndroid Build Coastguard Worker // distributed under the License is distributed on an "AS IS" BASIS, 11*38e8c45fSAndroid Build Coastguard Worker // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12*38e8c45fSAndroid Build Coastguard Worker // See the License for the specific language governing permissions and 13*38e8c45fSAndroid Build Coastguard Worker // limitations under the License. 14*38e8c45fSAndroid Build Coastguard Worker 15*38e8c45fSAndroid Build Coastguard Worker #ifndef __etc1_h__ 16*38e8c45fSAndroid Build Coastguard Worker #define __etc1_h__ 17*38e8c45fSAndroid Build Coastguard Worker 18*38e8c45fSAndroid Build Coastguard Worker #define ETC1_ENCODED_BLOCK_SIZE 8 19*38e8c45fSAndroid Build Coastguard Worker #define ETC1_DECODED_BLOCK_SIZE 48 20*38e8c45fSAndroid Build Coastguard Worker 21*38e8c45fSAndroid Build Coastguard Worker #ifndef ETC1_RGB8_OES 22*38e8c45fSAndroid Build Coastguard Worker #define ETC1_RGB8_OES 0x8D64 23*38e8c45fSAndroid Build Coastguard Worker #endif 24*38e8c45fSAndroid Build Coastguard Worker 25*38e8c45fSAndroid Build Coastguard Worker typedef unsigned char etc1_byte; 26*38e8c45fSAndroid Build Coastguard Worker typedef int etc1_bool; 27*38e8c45fSAndroid Build Coastguard Worker typedef unsigned int etc1_uint32; 28*38e8c45fSAndroid Build Coastguard Worker 29*38e8c45fSAndroid Build Coastguard Worker #ifdef __cplusplus 30*38e8c45fSAndroid Build Coastguard Worker extern "C" { 31*38e8c45fSAndroid Build Coastguard Worker #endif 32*38e8c45fSAndroid Build Coastguard Worker 33*38e8c45fSAndroid Build Coastguard Worker // Encode a block of pixels. 34*38e8c45fSAndroid Build Coastguard Worker // 35*38e8c45fSAndroid Build Coastguard Worker // pIn is a pointer to a ETC_DECODED_BLOCK_SIZE array of bytes that represent a 36*38e8c45fSAndroid Build Coastguard Worker // 4 x 4 square of 3-byte pixels in form R, G, B. Byte (3 * (x + 4 * y) is the R 37*38e8c45fSAndroid Build Coastguard Worker // value of pixel (x, y). 38*38e8c45fSAndroid Build Coastguard Worker // 39*38e8c45fSAndroid Build Coastguard Worker // validPixelMask is a 16-bit mask where bit (1 << (x + y * 4)) indicates whether 40*38e8c45fSAndroid Build Coastguard Worker // the corresponding (x,y) pixel is valid. Invalid pixel color values are ignored when compressing. 41*38e8c45fSAndroid Build Coastguard Worker // 42*38e8c45fSAndroid Build Coastguard Worker // pOut is an ETC1 compressed version of the data. 43*38e8c45fSAndroid Build Coastguard Worker 44*38e8c45fSAndroid Build Coastguard Worker void etc1_encode_block(const etc1_byte* pIn, etc1_uint32 validPixelMask, etc1_byte* pOut); 45*38e8c45fSAndroid Build Coastguard Worker 46*38e8c45fSAndroid Build Coastguard Worker // Decode a block of pixels. 47*38e8c45fSAndroid Build Coastguard Worker // 48*38e8c45fSAndroid Build Coastguard Worker // pIn is an ETC1 compressed version of the data. 49*38e8c45fSAndroid Build Coastguard Worker // 50*38e8c45fSAndroid Build Coastguard Worker // pOut is a pointer to a ETC_DECODED_BLOCK_SIZE array of bytes that represent a 51*38e8c45fSAndroid Build Coastguard Worker // 4 x 4 square of 3-byte pixels in form R, G, B. Byte (3 * (x + 4 * y) is the R 52*38e8c45fSAndroid Build Coastguard Worker // value of pixel (x, y). 53*38e8c45fSAndroid Build Coastguard Worker 54*38e8c45fSAndroid Build Coastguard Worker void etc1_decode_block(const etc1_byte* pIn, etc1_byte* pOut); 55*38e8c45fSAndroid Build Coastguard Worker 56*38e8c45fSAndroid Build Coastguard Worker // Return the size of the encoded image data (does not include size of PKM header). 57*38e8c45fSAndroid Build Coastguard Worker 58*38e8c45fSAndroid Build Coastguard Worker etc1_uint32 etc1_get_encoded_data_size(etc1_uint32 width, etc1_uint32 height); 59*38e8c45fSAndroid Build Coastguard Worker 60*38e8c45fSAndroid Build Coastguard Worker // Encode an entire image. 61*38e8c45fSAndroid Build Coastguard Worker // pIn - pointer to the image data. Formatted such that 62*38e8c45fSAndroid Build Coastguard Worker // pixel (x,y) is at pIn + pixelSize * x + stride * y; 63*38e8c45fSAndroid Build Coastguard Worker // pOut - pointer to encoded data. Must be large enough to store entire encoded image. 64*38e8c45fSAndroid Build Coastguard Worker // pixelSize can be 2 or 3. 2 is an GL_UNSIGNED_SHORT_5_6_5 image, 3 is a GL_BYTE RGB image. 65*38e8c45fSAndroid Build Coastguard Worker // returns non-zero if there is an error. 66*38e8c45fSAndroid Build Coastguard Worker 67*38e8c45fSAndroid Build Coastguard Worker int etc1_encode_image(const etc1_byte* pIn, etc1_uint32 width, etc1_uint32 height, 68*38e8c45fSAndroid Build Coastguard Worker etc1_uint32 pixelSize, etc1_uint32 stride, etc1_byte* pOut); 69*38e8c45fSAndroid Build Coastguard Worker 70*38e8c45fSAndroid Build Coastguard Worker // Decode an entire image. 71*38e8c45fSAndroid Build Coastguard Worker // pIn - pointer to encoded data. 72*38e8c45fSAndroid Build Coastguard Worker // pOut - pointer to the image data. Will be written such that 73*38e8c45fSAndroid Build Coastguard Worker // pixel (x,y) is at pIn + pixelSize * x + stride * y. Must be 74*38e8c45fSAndroid Build Coastguard Worker // large enough to store entire image. 75*38e8c45fSAndroid Build Coastguard Worker // pixelSize can be 2 or 3. 2 is an GL_UNSIGNED_SHORT_5_6_5 image, 3 is a GL_BYTE RGB image. 76*38e8c45fSAndroid Build Coastguard Worker // returns non-zero if there is an error. 77*38e8c45fSAndroid Build Coastguard Worker 78*38e8c45fSAndroid Build Coastguard Worker int etc1_decode_image(const etc1_byte* pIn, etc1_byte* pOut, 79*38e8c45fSAndroid Build Coastguard Worker etc1_uint32 width, etc1_uint32 height, 80*38e8c45fSAndroid Build Coastguard Worker etc1_uint32 pixelSize, etc1_uint32 stride); 81*38e8c45fSAndroid Build Coastguard Worker 82*38e8c45fSAndroid Build Coastguard Worker // Size of a PKM header, in bytes. 83*38e8c45fSAndroid Build Coastguard Worker 84*38e8c45fSAndroid Build Coastguard Worker #define ETC_PKM_HEADER_SIZE 16 85*38e8c45fSAndroid Build Coastguard Worker 86*38e8c45fSAndroid Build Coastguard Worker // Format a PKM header 87*38e8c45fSAndroid Build Coastguard Worker 88*38e8c45fSAndroid Build Coastguard Worker void etc1_pkm_format_header(etc1_byte* pHeader, etc1_uint32 width, etc1_uint32 height); 89*38e8c45fSAndroid Build Coastguard Worker 90*38e8c45fSAndroid Build Coastguard Worker // Check if a PKM header is correctly formatted. 91*38e8c45fSAndroid Build Coastguard Worker 92*38e8c45fSAndroid Build Coastguard Worker etc1_bool etc1_pkm_is_valid(const etc1_byte* pHeader); 93*38e8c45fSAndroid Build Coastguard Worker 94*38e8c45fSAndroid Build Coastguard Worker // Read the image width from a PKM header 95*38e8c45fSAndroid Build Coastguard Worker 96*38e8c45fSAndroid Build Coastguard Worker etc1_uint32 etc1_pkm_get_width(const etc1_byte* pHeader); 97*38e8c45fSAndroid Build Coastguard Worker 98*38e8c45fSAndroid Build Coastguard Worker // Read the image height from a PKM header 99*38e8c45fSAndroid Build Coastguard Worker 100*38e8c45fSAndroid Build Coastguard Worker etc1_uint32 etc1_pkm_get_height(const etc1_byte* pHeader); 101*38e8c45fSAndroid Build Coastguard Worker 102*38e8c45fSAndroid Build Coastguard Worker #ifdef __cplusplus 103*38e8c45fSAndroid Build Coastguard Worker } 104*38e8c45fSAndroid Build Coastguard Worker #endif 105*38e8c45fSAndroid Build Coastguard Worker 106*38e8c45fSAndroid Build Coastguard Worker #endif 107