2005-12-02 14:34:15 +01:00
|
|
|
/*
|
2017-05-15 12:21:30 +02:00
|
|
|
* The copyright in this software is being made available under the 2-clauses
|
|
|
|
* BSD License, included below. This software may be subject to other third
|
2014-04-03 17:30:57 +02:00
|
|
|
* party and contributor rights, including patent rights, and no such rights
|
|
|
|
* are granted under this license.
|
|
|
|
*
|
2011-01-29 15:15:26 +01:00
|
|
|
* Copyright (c) 2005, Herve Drolon, FreeImage Team
|
2017-05-15 12:21:30 +02:00
|
|
|
* Copyright (c) 2008, 2011-2012, Centre National d'Etudes Spatiales (CNES), FR
|
2012-11-15 16:22:29 +01:00
|
|
|
* Copyright (c) 2012, CS Systemes d'Information, France
|
2005-12-02 14:34:15 +01:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
#ifndef OPJ_INCLUDES_H
|
|
|
|
#define OPJ_INCLUDES_H
|
|
|
|
|
2011-11-28 16:32:22 +01:00
|
|
|
/*
|
|
|
|
* This must be included before any system headers,
|
|
|
|
* since they can react to macro defined there
|
|
|
|
*/
|
2013-03-25 13:43:27 +01:00
|
|
|
#include "opj_config_private.h"
|
2011-11-28 16:32:22 +01:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
/*
|
|
|
|
==========================================================
|
|
|
|
Standard includes used by the library
|
|
|
|
==========================================================
|
|
|
|
*/
|
|
|
|
#include <memory.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <float.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
2005-12-08 10:38:47 +01:00
|
|
|
#include <ctype.h>
|
2011-09-19 15:04:04 +02:00
|
|
|
#include <assert.h>
|
2016-09-14 00:12:43 +02:00
|
|
|
#include <limits.h>
|
2005-12-02 14:34:15 +01:00
|
|
|
|
2011-11-28 16:32:22 +01:00
|
|
|
/*
|
|
|
|
Use fseeko() and ftello() if they are available since they use
|
|
|
|
'off_t' rather than 'long'. It is wrong to use fseeko() and
|
|
|
|
ftello() only on systems with special LFS support since some systems
|
|
|
|
(e.g. FreeBSD) support a 64-bit off_t by default.
|
|
|
|
*/
|
2014-03-11 11:27:01 +01:00
|
|
|
#if defined(OPJ_HAVE_FSEEKO) && !defined(fseek)
|
2011-11-28 16:32:22 +01:00
|
|
|
# define fseek fseeko
|
|
|
|
# define ftell ftello
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-11-30 17:55:25 +01:00
|
|
|
#if defined(WIN32) && !defined(Windows95) && !defined(__BORLANDC__) && \
|
2011-11-28 16:32:22 +01:00
|
|
|
!(defined(_MSC_VER) && _MSC_VER < 1400) && \
|
|
|
|
!(defined(__MINGW32__) && __MSVCRT_VERSION__ < 0x800)
|
2017-05-15 12:21:30 +02:00
|
|
|
/*
|
|
|
|
Windows '95 and Borland C do not support _lseeki64
|
|
|
|
Visual Studio does not support _fseeki64 and _ftelli64 until the 2005 release.
|
|
|
|
Without these interfaces, files over 2GB in size are not supported for Windows.
|
|
|
|
*/
|
2011-11-28 16:32:22 +01:00
|
|
|
# define OPJ_FSEEK(stream,offset,whence) _fseeki64(stream,/* __int64 */ offset,whence)
|
|
|
|
# define OPJ_FSTAT(fildes,stat_buff) _fstati64(fildes,/* struct _stati64 */ stat_buff)
|
|
|
|
# define OPJ_FTELL(stream) /* __int64 */ _ftelli64(stream)
|
|
|
|
# define OPJ_STAT_STRUCT_T struct _stati64
|
|
|
|
# define OPJ_STAT(path,stat_buff) _stati64(path,/* struct _stati64 */ stat_buff)
|
|
|
|
#else
|
|
|
|
# define OPJ_FSEEK(stream,offset,whence) fseek(stream,offset,whence)
|
|
|
|
# define OPJ_FSTAT(fildes,stat_buff) fstat(fildes,stat_buff)
|
|
|
|
# define OPJ_FTELL(stream) ftell(stream)
|
|
|
|
# define OPJ_STAT_STRUCT_T struct stat
|
|
|
|
# define OPJ_STAT(path,stat_buff) stat(path,stat_buff)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
/*
|
|
|
|
==========================================================
|
|
|
|
OpenJPEG interface
|
|
|
|
==========================================================
|
|
|
|
*/
|
|
|
|
#include "openjpeg.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
==========================================================
|
|
|
|
OpenJPEG modules
|
|
|
|
==========================================================
|
|
|
|
*/
|
|
|
|
|
2007-11-13 18:35:12 +01:00
|
|
|
/* Are restricted pointers available? (C99) */
|
2016-09-06 00:49:53 +02:00
|
|
|
#if (__STDC_VERSION__ >= 199901L)
|
2017-05-15 12:21:30 +02:00
|
|
|
#define OPJ_RESTRICT restrict
|
2016-09-06 00:49:53 +02:00
|
|
|
#else
|
2017-05-15 12:21:30 +02:00
|
|
|
/* Not a C99 compiler */
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
#define OPJ_RESTRICT __restrict__
|
2016-09-06 00:49:53 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
vc14 (2015) outputs wrong results.
|
|
|
|
Need to check OPJ_RESTRICT usage (or a bug in vc14)
|
2017-05-15 12:21:30 +02:00
|
|
|
#elif defined(_MSC_VER) && (_MSC_VER >= 1400)
|
|
|
|
#define OPJ_RESTRICT __restrict
|
2016-09-06 00:49:53 +02:00
|
|
|
*/
|
2017-05-15 12:21:30 +02:00
|
|
|
#else
|
|
|
|
#define OPJ_RESTRICT /* restrict */
|
|
|
|
#endif
|
2007-11-13 18:35:12 +01:00
|
|
|
#endif
|
|
|
|
|
2016-04-28 13:16:43 +02:00
|
|
|
#ifdef __has_attribute
|
2017-05-15 12:21:30 +02:00
|
|
|
#if __has_attribute(no_sanitize)
|
|
|
|
#define OPJ_NOSANITIZE(kind) __attribute__((no_sanitize(kind)))
|
|
|
|
#endif
|
2016-04-28 13:16:43 +02:00
|
|
|
#endif
|
|
|
|
#ifndef OPJ_NOSANITIZE
|
2017-05-15 12:21:30 +02:00
|
|
|
#define OPJ_NOSANITIZE(kind)
|
2016-04-28 13:16:43 +02:00
|
|
|
#endif
|
2015-06-20 06:01:19 +02:00
|
|
|
|
|
|
|
|
2014-02-25 15:03:30 +01:00
|
|
|
/* MSVC before 2013 and Borland C do not have lrintf */
|
2015-06-20 06:01:19 +02:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#include <intrin.h>
|
2017-05-15 12:21:30 +02:00
|
|
|
static INLINE long opj_lrintf(float f)
|
|
|
|
{
|
2010-10-22 11:45:53 +02:00
|
|
|
#ifdef _M_X64
|
2017-05-15 12:21:30 +02:00
|
|
|
return _mm_cvt_ss2si(_mm_load_ss(&f));
|
2015-06-20 06:01:19 +02:00
|
|
|
|
2017-05-15 12:21:30 +02:00
|
|
|
/* commented out line breaks many tests */
|
|
|
|
/* return (long)((f>0.0f) ? (f + 0.5f):(f -0.5f)); */
|
2015-07-26 21:12:36 +02:00
|
|
|
#elif defined(_M_IX86)
|
2010-10-22 11:45:53 +02:00
|
|
|
int i;
|
2017-05-15 12:21:30 +02:00
|
|
|
_asm{
|
2010-10-22 11:45:53 +02:00
|
|
|
fld f
|
|
|
|
fistp i
|
|
|
|
};
|
2017-05-15 12:21:30 +02:00
|
|
|
|
2010-10-22 11:45:53 +02:00
|
|
|
return i;
|
2017-05-15 12:21:30 +02:00
|
|
|
#else
|
|
|
|
return (long)((f>0.0f) ? (f + 0.5f) : (f - 0.5f));
|
2010-10-22 11:45:53 +02:00
|
|
|
#endif
|
2007-11-13 18:35:12 +01:00
|
|
|
}
|
2015-07-26 02:41:39 +02:00
|
|
|
#elif defined(__BORLANDC__)
|
2017-05-15 12:21:30 +02:00
|
|
|
static INLINE long opj_lrintf(float f)
|
|
|
|
{
|
2015-06-20 06:01:19 +02:00
|
|
|
#ifdef _M_X64
|
2017-05-15 12:21:30 +02:00
|
|
|
return (long)((f > 0.0f) ? (f + 0.5f) : (f - 0.5f));
|
2015-06-20 06:01:19 +02:00
|
|
|
#else
|
2017-05-15 12:21:30 +02:00
|
|
|
int i;
|
2015-06-20 06:01:19 +02:00
|
|
|
|
2017-05-15 12:21:30 +02:00
|
|
|
_asm {
|
|
|
|
fld f
|
|
|
|
fistp i
|
|
|
|
};
|
2015-06-20 06:01:19 +02:00
|
|
|
|
2017-05-15 12:21:30 +02:00
|
|
|
return i;
|
2015-06-20 06:01:19 +02:00
|
|
|
#endif
|
|
|
|
}
|
2015-07-26 02:41:39 +02:00
|
|
|
#else
|
2017-05-15 12:21:30 +02:00
|
|
|
static INLINE long opj_lrintf(float f)
|
|
|
|
{
|
|
|
|
return lrintf(f);
|
2015-07-26 02:41:39 +02:00
|
|
|
}
|
2015-06-20 06:01:19 +02:00
|
|
|
#endif
|
|
|
|
|
2014-12-09 06:44:55 +01:00
|
|
|
#if defined(_MSC_VER) && (_MSC_VER < 1400)
|
2017-05-15 12:21:30 +02:00
|
|
|
#define vsnprintf _vsnprintf
|
2014-12-09 06:44:55 +01:00
|
|
|
#endif
|
|
|
|
|
2015-07-27 20:12:48 +02:00
|
|
|
/* MSVC x86 is really bad at doing int64 = int32 * int32 on its own. Use intrinsic. */
|
2015-07-30 23:26:31 +02:00
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1400) && !defined(__INTEL_COMPILER) && defined(_M_IX86)
|
2017-05-15 12:21:30 +02:00
|
|
|
# include <intrin.h>
|
|
|
|
# pragma intrinsic(__emul)
|
2015-07-27 20:12:48 +02:00
|
|
|
#endif
|
|
|
|
|
2017-06-20 18:24:21 +02:00
|
|
|
/* Apparently Visual Studio doesn't define __SSE__ / __SSE2__ macros */
|
|
|
|
#if defined(_M_X64)
|
|
|
|
/* Intel 64bit support SSE and SSE2 */
|
|
|
|
# ifndef __SSE__
|
|
|
|
# define __SSE__ 1
|
|
|
|
# endif
|
|
|
|
# ifndef __SSE2__
|
|
|
|
# define __SSE2__ 1
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* For x86, test the value of the _M_IX86_FP macro. */
|
|
|
|
/* See https://msdn.microsoft.com/en-us/library/b0084kay.aspx */
|
|
|
|
#if defined(_M_IX86_FP)
|
|
|
|
# if _M_IX86_FP >= 1
|
|
|
|
# ifndef __SSE__
|
|
|
|
# define __SSE__ 1
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# if _M_IX86_FP >= 2
|
|
|
|
# ifndef __SSE2__
|
|
|
|
# define __SSE2__ 1
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2016-09-07 08:41:01 +02:00
|
|
|
/* Type to use for bit-fields in internal headers */
|
|
|
|
typedef unsigned int OPJ_BITFIELD;
|
|
|
|
|
2017-09-01 16:30:29 +02:00
|
|
|
#define OPJ_UNUSED(x) (void)x
|
|
|
|
|
2012-03-19 11:15:46 +01:00
|
|
|
#include "opj_inttypes.h"
|
2012-10-15 14:58:32 +02:00
|
|
|
#include "opj_clock.h"
|
2007-10-18 14:26:11 +02:00
|
|
|
#include "opj_malloc.h"
|
2005-12-02 14:34:15 +01:00
|
|
|
#include "event.h"
|
2015-07-30 23:26:31 +02:00
|
|
|
#include "function_list.h"
|
2011-09-19 18:53:10 +02:00
|
|
|
#include "bio.h"
|
2005-12-02 14:34:15 +01:00
|
|
|
#include "cio.h"
|
|
|
|
|
2016-05-25 16:34:52 +02:00
|
|
|
#include "thread.h"
|
2016-05-25 16:38:44 +02:00
|
|
|
#include "tls_keys.h"
|
2016-05-25 16:34:52 +02:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
#include "image.h"
|
2012-10-24 17:19:51 +02:00
|
|
|
#include "invert.h"
|
2005-12-02 14:34:15 +01:00
|
|
|
#include "j2k.h"
|
|
|
|
#include "jp2.h"
|
|
|
|
|
|
|
|
#include "mqc.h"
|
|
|
|
#include "bio.h"
|
2012-10-25 16:49:10 +02:00
|
|
|
|
2007-03-20 18:15:18 +01:00
|
|
|
#include "pi.h"
|
2012-10-25 16:49:10 +02:00
|
|
|
#include "tgt.h"
|
2005-12-02 14:34:15 +01:00
|
|
|
#include "tcd.h"
|
|
|
|
#include "t1.h"
|
|
|
|
#include "dwt.h"
|
|
|
|
#include "t2.h"
|
|
|
|
#include "mct.h"
|
2012-10-05 11:10:15 +02:00
|
|
|
#include "opj_intmath.h"
|
2017-09-01 16:30:29 +02:00
|
|
|
#include "sparse_array.h"
|
2005-12-02 14:34:15 +01:00
|
|
|
|
2012-10-05 18:57:30 +02:00
|
|
|
#ifdef USE_JPIP
|
2011-09-09 16:49:08 +02:00
|
|
|
#include "cidx_manager.h"
|
|
|
|
#include "indexbox_manager.h"
|
2012-10-05 18:57:30 +02:00
|
|
|
#endif
|
2011-09-09 16:49:08 +02:00
|
|
|
|
2006-12-04 15:59:33 +01:00
|
|
|
/* JPWL>> */
|
|
|
|
#ifdef USE_JPWL
|
2012-09-28 10:11:41 +02:00
|
|
|
#include "openjpwl/jpwl.h"
|
2006-12-04 15:59:33 +01:00
|
|
|
#endif /* USE_JPWL */
|
|
|
|
/* <<JPWL */
|
2005-12-02 14:34:15 +01:00
|
|
|
|
2012-03-02 16:53:14 +01:00
|
|
|
/* V2 */
|
2014-03-07 10:44:32 +01:00
|
|
|
#include "opj_codec.h"
|
2012-10-25 16:49:10 +02:00
|
|
|
|
2011-09-19 15:04:04 +02:00
|
|
|
|
2005-12-02 14:34:15 +01:00
|
|
|
#endif /* OPJ_INCLUDES_H */
|