| 81 | } |
| 82 | |
| 83 | MaskData* ReadMaskID(DecodeStream* stream) { |
| 84 | auto id = stream->readEncodedUint32(); |
| 85 | if (id > 0) { |
| 86 | auto mask = new MaskData(); |
| 87 | mask->id = id; |
| 88 | return mask; |
| 89 | } |
| 90 | return nullptr; |
| 91 | } |
| 92 | |
| 93 | Composition* ReadCompositionID(DecodeStream* stream) { |
| 94 | auto id = stream->readEncodedUint32(); |
no test coverage detected