summaryrefslogtreecommitdiff
path: root/src/external/rawspeed/src/librawspeed/common/RawImage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/external/rawspeed/src/librawspeed/common/RawImage.h')
-rw-r--r--src/external/rawspeed/src/librawspeed/common/RawImage.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/external/rawspeed/src/librawspeed/common/RawImage.h b/src/external/rawspeed/src/librawspeed/common/RawImage.h
index 79d8efdc3..d63511afd 100644
--- a/src/external/rawspeed/src/librawspeed/common/RawImage.h
+++ b/src/external/rawspeed/src/librawspeed/common/RawImage.h
@@ -86,7 +86,7 @@ public:
double pixelAspectRatio;
// White balance coefficients of the image
- float wbCoeffs[4];
+ std::array<float, 4> wbCoeffs;
// How many pixels far down the left edge and far up the right edge the image
// corners are when the image is rotated 45 degrees in Fuji rotated sensors.
@@ -206,7 +206,7 @@ protected:
void doLookup(int start_y, int end_y) override;
RawImageDataU16();
- explicit RawImageDataU16(const iPoint2D& dim, uint32 cpp = 1);
+ explicit RawImageDataU16(const iPoint2D& dim_, uint32 cpp_ = 1);
friend class RawImage;
};
@@ -221,7 +221,7 @@ protected:
void fixBadPixel(uint32 x, uint32 y, int component = 0) override;
[[noreturn]] void doLookup(int start_y, int end_y) override;
RawImageDataFloat();
- explicit RawImageDataFloat(const iPoint2D& dim, uint32 cpp = 1);
+ explicit RawImageDataFloat(const iPoint2D& dim_, uint32 cpp_ = 1);
friend class RawImage;
};