Home | History | Annotate | Download | only in lodepng

Lines Matching defs:idat

89     else if(name == "IDAT")
112 size_t l0 = 0; //location 0: IHDR-l0-PLTE (or IHDR-l0-l1-IDAT)
113 size_t l1 = 0; //location 1: PLTE-l1-IDAT (or IHDR-l0-l1-IDAT)
114 size_t l2 = 0; //location 2: IDAT-l2-IEND
129 else if(name == "IDAT")
166 //Read literal data from all IDAT chunks
179 if(std::string(type) == "IDAT")
193 //Decompress all IDAT data
578 std::vector<unsigned char> idat; //the data from idat chunks
581 //IDAT data is put at the start of the in buffer
590 //IDAT chunk, containing compressed image data
593 idat.insert(idat.end(), &in[pos + 4], &in[pos + 4 + chunkLength]);
609 error = zlib.decompress(out, idat);