Home | History | Annotate | Download | only in lodepng

Lines Matching defs:filterType

3934     /*if passw[i] is 0, it's 0 bytes, not 1 (no filtertype-byte)*/
4009 size_t bytewidth, unsigned char filterType, size_t length)
4016 the incoming scanlines do NOT include the filtertype byte, that one is given in the parameter filterType instead
4021 switch(filterType)
4087 out must have enough bytes allocated already, in must have the scanlines + 1 filtertype byte per scanline
4103 unsigned char filterType = in[inindex];
4105 CERROR_TRY_RETURN(unfilterScanline(&out[outindex], &in[inindex + 1], prevline, bytewidth, filterType, linebytes));
5159 size_t length, size_t bytewidth, unsigned char filterType)
5162 switch(filterType)
5313 (converted to signed char). Filtertype 0 isn't a difference though, so use unsigned there.
5314 This means filtertype 0 is almost never chosen, but that is justified.*/
5407 /*use fixed tree on the attempts so that the tree is not adapted to the filtertype on purpose,