Valgrind report: ``` 14,960 (11,544 direct, 3,416 indirect) bytes in 37 blocks are definitely lost in loss record 20,483 of 20,540 at 0x4837DEF: operator new(unsigned long) (vg_replace_malloc.c:334) by 0xC06963: rtengine::FramesData::FramesData(Glib::ustring const&, std::unique_ptr<rtengine::RawMetaDataLocation, std::default_delete<rtengine::RawMetaDataLocation> >, bool) (imagedata.cc:1121) by 0xBD774F: rtengine::DFManager::addFileInfo(Glib::ustring const&, bool) (dfmanager.cc:380) by 0xBD6E90: rtengine::DFManager::init(Glib::ustring) (dfmanager.cc:303) by 0xC3EC5D: rtengine::init(rtengine::Settings const*, Glib::ustring, Glib::ustring, bool) [clone ._omp_fn.0] (init.cc:93) by 0x897CABD: gomp_thread_start (team.c:120) by 0x89B7A9C: start_thread (in /usr/lib/libpthread-2.28.so) by 0x8ACCB22: clone (in /usr/lib/libc-2.28.so) ```
108 lines
3.1 KiB
C++
108 lines
3.1 KiB
C++
/*
|
|
* This file is part of RawTherapee.
|
|
*
|
|
* Copyright (c) 2004-2010 Gabor Horvath <hgabor@rawtherapee.com>
|
|
*
|
|
* RawTherapee is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* RawTherapee is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with RawTherapee. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef _STDIMAGESOURCE_
|
|
#define _STDIMAGESOURCE_
|
|
|
|
#include "imagesource.h"
|
|
|
|
namespace rtengine
|
|
{
|
|
|
|
class StdImageSource : public ImageSource
|
|
{
|
|
|
|
protected:
|
|
ImageIO* img;
|
|
ColorTemp wb;
|
|
ProgressListener* plistener;
|
|
bool full;
|
|
int max[3];
|
|
bool rgbSourceModified;
|
|
|
|
//void transformPixel (int x, int y, int tran, int& tx, int& ty);
|
|
void getSampleFormat (const Glib::ustring &fname, IIOSampleFormat &sFormat, IIOSampleArrangement &sArrangement);
|
|
|
|
public:
|
|
StdImageSource ();
|
|
~StdImageSource ();
|
|
|
|
int load (const Glib::ustring &fname);
|
|
void getImage (const ColorTemp &ctemp, int tran, Imagefloat* image, const PreviewProps &pp, const ToneCurveParams &hrp, const RAWParams &raw);
|
|
ColorTemp getWB () const
|
|
{
|
|
return wb;
|
|
}
|
|
void getAutoWBMultipliers (double &rm, double &gm, double &bm);
|
|
ColorTemp getSpotWB (std::vector<Coord2D> &red, std::vector<Coord2D> &green, std::vector<Coord2D> &blue, int tran, double equal);
|
|
|
|
eSensorType getSensorType() const {return ST_NONE;}
|
|
bool isMono() const {return false;}
|
|
|
|
bool isWBProviderReady ()
|
|
{
|
|
return true;
|
|
};
|
|
|
|
void getAutoExpHistogram (LUTu &histogram, int& histcompr);
|
|
|
|
double getDefGain () const
|
|
{
|
|
return 0.0;
|
|
}
|
|
|
|
void getFullSize (int& w, int& h, int tr = TR_NONE);
|
|
void getSize (const PreviewProps &pp, int& w, int& h);
|
|
|
|
ImageIO* getImageIO ()
|
|
{
|
|
return img;
|
|
}
|
|
ImageMatrices* getImageMatrices ()
|
|
{
|
|
return (ImageMatrices*)nullptr;
|
|
}
|
|
bool isRAW() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void setProgressListener (ProgressListener* pl)
|
|
{
|
|
plistener = pl;
|
|
}
|
|
|
|
void convertColorSpace(Imagefloat* image, const ColorManagementParams &cmp, const ColorTemp &wb);// RAWParams raw will not be used for non-raw files (see imagesource.h)
|
|
static void colorSpaceConversion (Imagefloat* im, const ColorManagementParams &cmp, cmsHPROFILE embedded, IIOSampleFormat sampleFormat);
|
|
|
|
bool isRGBSourceModified() const
|
|
{
|
|
return rgbSourceModified;
|
|
}
|
|
void setCurrentFrame(unsigned int frameNum) {}
|
|
int getFrameCount() {return 1;}
|
|
int getFlatFieldAutoClipValue() {return 0;}
|
|
|
|
|
|
void getRawValues(int x, int y, int rotate, int &R, int &G, int &B) { R = G = B = 0;}
|
|
|
|
|
|
};
|
|
}
|
|
#endif
|