| 55 | namespace rawspeed { |
| 56 | |
| 57 | bool __attribute__((pure)) |
| 58 | DngDecoder::isAppropriateDecoder(const TiffRootIFD* rootIFD, |
| 59 | const Buffer* file) { |
| 60 | return rootIFD->hasEntryRecursive(DNGVERSION); |
| 61 | } |
| 62 | |
| 63 | DngDecoder::DngDecoder(TiffRootIFDOwner&& rootIFD, const Buffer* file) |
| 64 | : AbstractTiffDecoder(move(rootIFD), file) { |
nothing calls this directly
no test coverage detected