79348611

Date: 2025-01-11 18:09:11
Score: 0.5
Natty:
Report link

In case someone still need it:

Add one more if branch at WebpContainerReader:

if (isFourCc(fcc, 'I', 'C', 'C', 'P'))
                return readIccp();
Also implement this func:
private WebpChunk readIccp() throws IOException {
        int chunkSize = readUInt32();
        WebpChunk chunk = new WebpChunk(WebpChunkType.VP8);
        chunk.isLossless = false;
        readPayload(chunkSize);
        chunk.payload = null;
        debug(String.format("iccp: bytes = %d", chunkSize));
        return chunk;
    }

source : https://github.com/b4rtaz/android-webp-encoder/issues/2#issuecomment-929169092

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Rishabh Gupta