iPatch by Jorma Karvonen : fix warning about deprecated convertion in raw translator.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37206 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1348,7 +1348,7 @@ DCRaw::_CameraXYZCoefficients(double cameraXYZ[4][3])
|
|||||||
/*! Thanks to Adobe for providing these excellent CAM -> XYZ matrices!
|
/*! Thanks to Adobe for providing these excellent CAM -> XYZ matrices!
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
DCRaw::_AdobeCoefficients(char *make, char *model)
|
DCRaw::_AdobeCoefficients(const char *make, const char *model)
|
||||||
{
|
{
|
||||||
static const struct {
|
static const struct {
|
||||||
const char *prefix;
|
const char *prefix;
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ class DCRaw {
|
|||||||
void _PreInterpolate();
|
void _PreInterpolate();
|
||||||
void _CameraToCIELab(ushort cam[4], float lab[3]);
|
void _CameraToCIELab(ushort cam[4], float lab[3]);
|
||||||
void _CameraXYZCoefficients(double cam_xyz[4][3]);
|
void _CameraXYZCoefficients(double cam_xyz[4][3]);
|
||||||
void _AdobeCoefficients(char* manufacturer, char* model);
|
void _AdobeCoefficients(const char *manufacturer, const char *model);
|
||||||
void _BorderInterpolate(uint32 border);
|
void _BorderInterpolate(uint32 border);
|
||||||
void _AHDInterpolate();
|
void _AHDInterpolate();
|
||||||
void _PseudoInverse(double (*in)[3], double (*out)[3], uint32 size);
|
void _PseudoInverse(double (*in)[3], double (*out)[3], uint32 size);
|
||||||
|
|||||||
Reference in New Issue
Block a user