| 196 | } |
| 197 | |
| 198 | RawImage Cr2Decoder::decodeRawInternal() { |
| 199 | if (mRootIFD->getSubIFDs().size() < 4) |
| 200 | return decodeOldFormat(); |
| 201 | else // NOLINT ok, here it make sense |
| 202 | return decodeNewFormat(); |
| 203 | } |
| 204 | |
| 205 | void Cr2Decoder::checkSupportInternal(const CameraMetaData* meta) { |
| 206 | auto id = mRootIFD->getID(); |
nothing calls this directly
no outgoing calls
no test coverage detected