Home | History | Annotate | Download | only in codec

Lines Matching defs:fNegative

472         if (!fHost || !fInfo || !fNegative || !fDngStream) {
481 // render() takes ownership of fHost, fInfo, fNegative and fDngStream when available.
484 std::unique_ptr<dng_negative> negative(fNegative.release());
596 fNegative.reset(fHost->Make_dng_negative());
597 fNegative->Parse(*fHost, *fDngStream, *fInfo);
598 fNegative->PostParse(*fHost, *fDngStream, *fInfo);
599 fNegative->SynchronizeMetadata();
602 if (fNegative->GetMosaicInfo() != nullptr) {
603 cfaPatternSize = fNegative->GetMosaicInfo()->fCFAPatternSize;
605 return this->init(static_cast<int>(fNegative->DefaultCropSizeH().As_real64()),
606 static_cast<int>(fNegative->DefaultCropSizeV().As_real64()),
623 std::unique_ptr<dng_negative> fNegative;