Merge commit '638ecc4cde79b0296f2e04f683ca4cb881c28f36' as 'rtengine/libraw'
This commit is contained in:
133
rtengine/libraw/internal/libraw_cxx_defs.h
Normal file
133
rtengine/libraw/internal/libraw_cxx_defs.h
Normal file
@@ -0,0 +1,133 @@
|
||||
/* -*- C++ -*-
|
||||
* File: internal/libraw_cxx_defs.h
|
||||
* Copyright 2008-2021 LibRaw LLC (info@libraw.org)
|
||||
* Created: Sat Aug 17, 2020
|
||||
|
||||
LibRaw is free software; you can redistribute it and/or modify
|
||||
it under the terms of the one of two licenses as you choose:
|
||||
|
||||
1. GNU LESSER GENERAL PUBLIC LICENSE version 2.1
|
||||
(See file LICENSE.LGPL provided in LibRaw distribution archive for details).
|
||||
|
||||
2. COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
|
||||
(See file LICENSE.CDDL provided in LibRaw distribution archive for details).
|
||||
|
||||
*/
|
||||
|
||||
#ifndef _LIBRAW_CXX_DEFS_H
|
||||
#define _LIBRAW_CXX_DEFS_H
|
||||
|
||||
#include <math.h>
|
||||
#include <errno.h>
|
||||
#include <float.h>
|
||||
#include <new>
|
||||
#include <exception>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#define LIBRAW_LIBRARY_BUILD
|
||||
#include "libraw/libraw.h"
|
||||
#include "internal/defines.h"
|
||||
#ifdef USE_ZLIB
|
||||
#include <zlib.h>
|
||||
#endif
|
||||
|
||||
#ifndef LIBRAW_WIN32_CALLS
|
||||
#include <netinet/in.h>
|
||||
#else
|
||||
#ifndef LIBRAW_NO_WINSOCK2
|
||||
#include <winsock2.h>
|
||||
#endif
|
||||
#include <io.h>
|
||||
#endif
|
||||
|
||||
#ifdef USE_RAWSPEED
|
||||
#include <RawSpeed/StdAfx.h>
|
||||
#include <RawSpeed/FileMap.h>
|
||||
#include <RawSpeed/RawParser.h>
|
||||
#include <RawSpeed/RawDecoder.h>
|
||||
#include <RawSpeed/CameraMetaData.h>
|
||||
#include <RawSpeed/ColorFilterArray.h>
|
||||
extern const char *_rawspeed_data_xml[];
|
||||
extern const int RAWSPEED_DATA_COUNT;
|
||||
class CameraMetaDataLR : public RawSpeed::CameraMetaData
|
||||
{
|
||||
public:
|
||||
CameraMetaDataLR() : CameraMetaData() {}
|
||||
CameraMetaDataLR(char *filename) : RawSpeed::CameraMetaData(filename) {}
|
||||
CameraMetaDataLR(char *data, int sz);
|
||||
};
|
||||
|
||||
CameraMetaDataLR *make_camera_metadata();
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef USE_DNGSDK
|
||||
#include "dng_host.h"
|
||||
#include "dng_negative.h"
|
||||
#include "dng_simple_image.h"
|
||||
#include "dng_info.h"
|
||||
#endif
|
||||
|
||||
#define P1 imgdata.idata
|
||||
#define S imgdata.sizes
|
||||
#define O imgdata.params
|
||||
#define C imgdata.color
|
||||
#define T imgdata.thumbnail
|
||||
#define MN imgdata.makernotes
|
||||
#define IO libraw_internal_data.internal_output_params
|
||||
#define ID libraw_internal_data.internal_data
|
||||
|
||||
#define makeIs(idx) (imgdata.idata.maker_index == idx)
|
||||
#define mnCamID imgdata.lens.makernotes.CamID
|
||||
|
||||
#define EXCEPTION_HANDLER(e) \
|
||||
do \
|
||||
{ \
|
||||
switch (e) \
|
||||
{ \
|
||||
case LIBRAW_EXCEPTION_MEMPOOL: \
|
||||
recycle(); \
|
||||
return LIBRAW_MEMPOOL_OVERFLOW; \
|
||||
case LIBRAW_EXCEPTION_ALLOC: \
|
||||
recycle(); \
|
||||
return LIBRAW_UNSUFFICIENT_MEMORY; \
|
||||
case LIBRAW_EXCEPTION_TOOBIG: \
|
||||
recycle(); \
|
||||
return LIBRAW_TOO_BIG; \
|
||||
case LIBRAW_EXCEPTION_DECODE_RAW: \
|
||||
case LIBRAW_EXCEPTION_DECODE_JPEG: \
|
||||
recycle(); \
|
||||
return LIBRAW_DATA_ERROR; \
|
||||
case LIBRAW_EXCEPTION_DECODE_JPEG2000: \
|
||||
recycle(); \
|
||||
return LIBRAW_DATA_ERROR; \
|
||||
case LIBRAW_EXCEPTION_IO_EOF: \
|
||||
case LIBRAW_EXCEPTION_IO_CORRUPT: \
|
||||
recycle(); \
|
||||
return LIBRAW_IO_ERROR; \
|
||||
case LIBRAW_EXCEPTION_CANCELLED_BY_CALLBACK: \
|
||||
recycle(); \
|
||||
return LIBRAW_CANCELLED_BY_CALLBACK; \
|
||||
case LIBRAW_EXCEPTION_BAD_CROP: \
|
||||
recycle(); \
|
||||
return LIBRAW_BAD_CROP; \
|
||||
case LIBRAW_EXCEPTION_UNSUPPORTED_FORMAT: \
|
||||
recycle(); \
|
||||
return LIBRAW_FILE_UNSUPPORTED; \
|
||||
default: \
|
||||
return LIBRAW_UNSPECIFIED_ERROR; \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
// copy-n-paste from image pipe
|
||||
#define MIN(a, b) ((a) < (b) ? (a) : (b))
|
||||
#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
||||
#define LIM(x, min, max) MAX(min, MIN(x, max))
|
||||
#ifndef CLIP
|
||||
#define CLIP(x) LIM(x, 0, 65535)
|
||||
#endif
|
||||
#define THUMB_READ_BEYOND 16384
|
||||
|
||||
#define ZERO(a) memset(&a, 0, sizeof(a))
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user