Home | History | Annotate | Download | only in codec

Lines Matching defs:markerIndex

131     // Note that 256 will be enough storage space since each markerIndex is stored in 8-bits.
152 // Verify that the markerIndex is valid and unique. Note that zero is not
154 uint8_t markerIndex = marker->data[12];
155 if (markerIndex == 0 || markerIndex > numMarkers) {
156 SkCodecPrintf("ICC Profile Error: markerIndex is invalid.\n");
159 if (markerSequence[markerIndex]) {
160 SkCodecPrintf("ICC Profile Error: Duplicate value of markerIndex.\n");
163 markerSequence[markerIndex] = marker;