| 39 | class CameraMetaData; |
| 40 | |
| 41 | bool DcrDecoder::isAppropriateDecoder(const TiffRootIFD* rootIFD, |
| 42 | const Buffer* file) { |
| 43 | const auto id = rootIFD->getID(); |
| 44 | const std::string& make = id.make; |
| 45 | |
| 46 | // FIXME: magic |
| 47 | |
| 48 | return make == "Kodak"; |
| 49 | } |
| 50 | |
| 51 | void DcrDecoder::checkImageDimensions() { |
| 52 | if (width > 4516 || height > 3012) |