Searched defs:biCompression (Results 1 - 4 of 4) sorted by relevance

/external/jpeg/
H A Drdbmp.c257 INT32 biCompression; local
314 biCompression = GET_4B(bmpinfoheader,16);
334 if (biCompression != 0)
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_bmp.c75 Uint32 biCompression; local
115 biCompression = BI_RGB;
126 biCompression = SDL_ReadLE32(src);
154 switch (biCompression) {
351 Uint32 biCompression; local
433 biCompression = BI_RGB;
450 SDL_WriteLE32(dst, biCompression);
/external/webkit/WebCore/platform/image-decoders/bmp/
H A DBMPImageReader.cpp103 if ((m_infoHeader.biCompression == RLE4)
104 || (m_infoHeader.biCompression == RLE8)
105 || (m_infoHeader.biCompression == RLE24)) {
201 if (m_infoHeader.biCompression == RLE8)
203 else if (m_infoHeader.biCompression == RLE4)
218 m_infoHeader.biCompression = RGB;
237 uint32_t biCompression = readUint32(16); local
240 if ((biCompression == 3) && (m_infoHeader.biBitCount == 1)) {
241 m_infoHeader.biCompression = HUFFMAN1D;
243 } else if ((biCompression
[all...]
H A DBMPImageReader.h112 CompressionType biCompression; member in struct:WebCore::BMPImageReader::BitmapInfoHeader

Completed in 79 milliseconds