clean up, added the deps to the repo since the version matters
5
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"files.associations": {
|
||||||
|
"libgldemo.h": "c"
|
||||||
|
}
|
||||||
|
}
|
742
library/deps/libjpeg-turbo/BUILDING.txt
Normal file
|
@ -0,0 +1,742 @@
|
||||||
|
*******************************************************************************
|
||||||
|
** Building on Unix Platforms (including Cygwin)
|
||||||
|
*******************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
==================
|
||||||
|
Build Requirements
|
||||||
|
==================
|
||||||
|
|
||||||
|
-- autoconf 2.56 or later
|
||||||
|
-- automake 1.7 or later
|
||||||
|
-- libtool 1.4 or later
|
||||||
|
|
||||||
|
-- NASM (if building x86 or x86-64 SIMD extensions)
|
||||||
|
* 0.98, or 2.01 or later is required for a 32-bit build
|
||||||
|
* NASM 2.00 or later is required for a 64-bit build
|
||||||
|
* NASM 2.07 or later is required for a 64-bit build on OS X. This can be
|
||||||
|
obtained from MacPorts (http://www.macports.org/).
|
||||||
|
|
||||||
|
The binary RPMs released by the NASM project do not work on older Linux
|
||||||
|
systems, such as Red Hat Enterprise Linux 4. On such systems, you can
|
||||||
|
easily build and install NASM from a source RPM by downloading one of the
|
||||||
|
SRPMs from
|
||||||
|
|
||||||
|
http://www.nasm.us/pub/nasm/releasebuilds
|
||||||
|
|
||||||
|
and executing the following as root:
|
||||||
|
|
||||||
|
ARCH=`uname -m`
|
||||||
|
rpmbuild --rebuild nasm-{version}.src.rpm
|
||||||
|
rpm -Uvh /usr/src/redhat/RPMS/$ARCH/nasm-{version}.$ARCH.rpm
|
||||||
|
|
||||||
|
NOTE: the NASM build will fail if texinfo is not installed.
|
||||||
|
|
||||||
|
-- GCC v4.1 or later recommended for best performance
|
||||||
|
|
||||||
|
-- If building the TurboJPEG/OSS Java wrapper, JDK or OpenJDK 1.5 or later is
|
||||||
|
required. Some systems, such as OS X 10.4, Solaris 10 and later, and Red
|
||||||
|
Hat Enterprise Linux 5 and later, have this pre-installed. On OS X 10.5 and
|
||||||
|
later, it will be necessary to install the Java Developer Package, which can
|
||||||
|
be downloaded from http://connect.apple.com. For systems that do not have a
|
||||||
|
JDK installed, you can obtain the Oracle Java Development Kit from
|
||||||
|
http://www.java.com.
|
||||||
|
|
||||||
|
|
||||||
|
==================
|
||||||
|
Out-of-Tree Builds
|
||||||
|
==================
|
||||||
|
|
||||||
|
Binary objects, libraries, and executables are generated in the same directory
|
||||||
|
from which configure was executed (the "binary directory"), and this directory
|
||||||
|
need not necessarily be the same as the libjpeg-turbo source directory. You
|
||||||
|
can create multiple independent binary directories, in which different versions
|
||||||
|
of libjpeg-turbo can be built from the same source tree using different
|
||||||
|
compilers or settings. In the sections below, {build_directory} refers to the
|
||||||
|
binary directory, whereas {source_directory} refers to the libjpeg-turbo source
|
||||||
|
directory. For in-tree builds, these directories are the same.
|
||||||
|
|
||||||
|
|
||||||
|
======================
|
||||||
|
Building libjpeg-turbo
|
||||||
|
======================
|
||||||
|
|
||||||
|
The following procedure will build libjpeg-turbo on Linux, FreeBSD, 32-bit
|
||||||
|
OS X, Cygwin, and Solaris/x86 systems (on Solaris, this generates a 32-bit
|
||||||
|
library. See below for 64-bit build instructions.)
|
||||||
|
|
||||||
|
cd {source_directory}
|
||||||
|
autoreconf -fiv
|
||||||
|
cd {build_directory}
|
||||||
|
sh {source_directory}/configure [additional configure flags]
|
||||||
|
make
|
||||||
|
|
||||||
|
NOTE: Running autoreconf in the source directory is only necessary if building
|
||||||
|
libjpeg-turbo from the SVN repository.
|
||||||
|
|
||||||
|
This will generate the following files under .libs/
|
||||||
|
|
||||||
|
libjpeg.a
|
||||||
|
Static link library for libjpeg-turbo
|
||||||
|
|
||||||
|
libjpeg.so.{version} (Linux, Solaris)
|
||||||
|
libjpeg.{version}.dylib (OS X)
|
||||||
|
cygjpeg-{version}.dll (Cygwin)
|
||||||
|
Shared library for libjpeg-turbo
|
||||||
|
|
||||||
|
libjpeg.so (Linux, Solaris)
|
||||||
|
libjpeg.dylib (OS X)
|
||||||
|
libjpeg.dll.a (Cygwin)
|
||||||
|
Development stub for libjpeg-turbo shared library
|
||||||
|
|
||||||
|
libturbojpeg.a
|
||||||
|
Static link library for TurboJPEG/OSS
|
||||||
|
|
||||||
|
libturbojpeg.so (Linux, Solaris)
|
||||||
|
libturbojpeg.dylib (OS X)
|
||||||
|
Shared library and development stub for TurboJPEG/OSS
|
||||||
|
|
||||||
|
cygturbojpeg.dll (Cygwin)
|
||||||
|
Shared library for TurboJPEG/OSS
|
||||||
|
|
||||||
|
libturbojpeg.dll.a (Cygwin)
|
||||||
|
Development stub for TurboJPEG/OSS shared library
|
||||||
|
|
||||||
|
{version} is 62.0.0, 7.0.0, or 8.0.2, depending on whether libjpeg v6b
|
||||||
|
(default), v7, or v8 emulation is enabled. If using Cygwin, {version} is
|
||||||
|
62, 7, or 8.
|
||||||
|
|
||||||
|
|
||||||
|
libjpeg v7 or v8 API/ABI Emulation
|
||||||
|
----------------------------------
|
||||||
|
|
||||||
|
Add --with-jpeg7 to the configure command line to build a version of
|
||||||
|
libjpeg-turbo that is API/ABI-compatible with libjpeg v7. Add --with-jpeg8 to
|
||||||
|
the configure command to build a version of libjpeg-turbo that is
|
||||||
|
API/ABI-compatible with libjpeg v8. See README-turbo.txt for more information
|
||||||
|
on libjpeg v7 and v8 emulation.
|
||||||
|
|
||||||
|
|
||||||
|
Arithmetic Coding Support
|
||||||
|
-------------------------
|
||||||
|
|
||||||
|
Since the patent on arithmetic coding has expired, this functionality has been
|
||||||
|
included in this release of libjpeg-turbo. libjpeg-turbo's implementation is
|
||||||
|
based on the implementation in libjpeg v8, but it works when emulating libjpeg
|
||||||
|
v7 or v6b as well. The default is to enable both arithmetic encoding and
|
||||||
|
decoding, but those who have philosophical objections to arithmetic coding can
|
||||||
|
add --without-arith-enc or --without-arith-dec to the configure command line to
|
||||||
|
disable encoding or decoding (respectively.)
|
||||||
|
|
||||||
|
|
||||||
|
TurboJPEG/OSS Java Wrapper
|
||||||
|
--------------------------
|
||||||
|
Add --with-java to the configure command line to incorporate an optional Java
|
||||||
|
Native Interface wrapper into the TurboJPEG/OSS dynamic library and build the
|
||||||
|
Java front-end classes to support it. This allows the TurboJPEG/OSS dynamic
|
||||||
|
library to be used directly from Java applications. See java/README for more
|
||||||
|
details.
|
||||||
|
|
||||||
|
You can set the JAVAC, JAR, and JAVA configure variables to specify
|
||||||
|
alternate commands for javac, jar, and java (respectively.) You can also
|
||||||
|
set the JAVACFLAGS configure variable to specify arguments that should be
|
||||||
|
passed to the Java compiler when building the front-end classes, and JNI_CFLAGS
|
||||||
|
to specify arguments that should be passed to the C compiler when building the
|
||||||
|
JNI wrapper. Run 'configure --help' for more details.
|
||||||
|
|
||||||
|
|
||||||
|
========================
|
||||||
|
Installing libjpeg-turbo
|
||||||
|
========================
|
||||||
|
|
||||||
|
If you intend to install these libraries and the associated header files, then
|
||||||
|
replace 'make' in the instructions above with
|
||||||
|
|
||||||
|
make install prefix={base dir} libdir={library directory}
|
||||||
|
|
||||||
|
For example,
|
||||||
|
|
||||||
|
make install prefix=/usr/local libdir=/usr/local/lib64
|
||||||
|
|
||||||
|
will install the header files in /usr/local/include and the library files in
|
||||||
|
/usr/local/lib64. If 'prefix' and 'libdir' are not specified, then the default
|
||||||
|
is to install the header files in /opt/libjpeg-turbo/include and the library
|
||||||
|
files in /opt/libjpeg-turbo/lib.
|
||||||
|
|
||||||
|
NOTE: You can specify a prefix of /usr and a libdir of, for instance,
|
||||||
|
/usr/lib64 to overwrite the system's version of libjpeg. If you do this,
|
||||||
|
however, then be sure to BACK UP YOUR SYSTEM'S INSTALLATION OF LIBJPEG before
|
||||||
|
overwriting it. It is recommended that you instead install libjpeg-turbo into
|
||||||
|
a non-system directory and manipulate the LD_LIBRARY_PATH or create sym links
|
||||||
|
to force applications to use libjpeg-turbo instead of libjpeg. See
|
||||||
|
README-turbo.txt for more information.
|
||||||
|
|
||||||
|
|
||||||
|
=============
|
||||||
|
Build Recipes
|
||||||
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
32-bit Library Build on 64-bit Linux
|
||||||
|
------------------------------------
|
||||||
|
|
||||||
|
Add
|
||||||
|
|
||||||
|
--host i686-pc-linux-gnu CFLAGS='-O3 -m32' LDFLAGS=-m32
|
||||||
|
|
||||||
|
to the configure command line.
|
||||||
|
|
||||||
|
|
||||||
|
64-bit Library Build on 64-bit OS X
|
||||||
|
-----------------------------------
|
||||||
|
|
||||||
|
Add
|
||||||
|
|
||||||
|
--host x86_64-apple-darwin NASM=/opt/local/bin/nasm
|
||||||
|
|
||||||
|
to the configure command line. NASM 2.07 or later from MacPorts must be
|
||||||
|
installed.
|
||||||
|
|
||||||
|
|
||||||
|
32-bit Library Build on 64-bit OS X
|
||||||
|
-----------------------------------
|
||||||
|
|
||||||
|
Add
|
||||||
|
|
||||||
|
CFLAGS='-O3 -m32' LDFLAGS=-m32
|
||||||
|
|
||||||
|
to the configure command line.
|
||||||
|
|
||||||
|
|
||||||
|
64-bit Backward-Compatible Library Build on 64-bit OS X
|
||||||
|
-------------------------------------------------------
|
||||||
|
|
||||||
|
Add
|
||||||
|
|
||||||
|
--host x86_64-apple-darwin NASM=/opt/local/bin/nasm \
|
||||||
|
CFLAGS='-isysroot /Developer/SDKs/MacOSX10.4u.sdk \
|
||||||
|
-mmacosx-version-min=10.4 -O3' \
|
||||||
|
LDFLAGS='-isysroot /Developer/SDKs/MacOSX10.4u.sdk \
|
||||||
|
-mmacosx-version-min=10.4'
|
||||||
|
|
||||||
|
to the configure command line. The OS X 10.4 SDK, and NASM 2.07 or later from
|
||||||
|
MacPorts, must be installed.
|
||||||
|
|
||||||
|
|
||||||
|
32-bit Backward-Compatible Library Build on OS X
|
||||||
|
------------------------------------------------
|
||||||
|
|
||||||
|
Add
|
||||||
|
|
||||||
|
CFLAGS='-isysroot /Developer/SDKs/MacOSX10.4u.sdk \
|
||||||
|
-mmacosx-version-min=10.4 -O3 -m32' \
|
||||||
|
LDFLAGS='-isysroot /Developer/SDKs/MacOSX10.4u.sdk \
|
||||||
|
-mmacosx-version-min=10.4 -m32'
|
||||||
|
|
||||||
|
to the configure command line. The OS X 10.4 SDK must be installed.
|
||||||
|
|
||||||
|
|
||||||
|
64-bit Library Build on 64-bit Solaris
|
||||||
|
--------------------------------------
|
||||||
|
|
||||||
|
Add
|
||||||
|
|
||||||
|
--host x86_64-pc-solaris CFLAGS='-O3 -m64' LDFLAGS=-m64
|
||||||
|
|
||||||
|
to the configure command line.
|
||||||
|
|
||||||
|
|
||||||
|
32-bit Library Build on 64-bit FreeBSD
|
||||||
|
--------------------------------------
|
||||||
|
|
||||||
|
Add
|
||||||
|
|
||||||
|
--host i386-unknown-freebsd CC='gcc -B /usr/lib32' CFLAGS='-O3 -m32' \
|
||||||
|
LDFLAGS='-B/usr/lib32'
|
||||||
|
|
||||||
|
to the configure command line. NASM 2.07 or later from FreeBSD ports must be
|
||||||
|
installed.
|
||||||
|
|
||||||
|
|
||||||
|
Sun Studio
|
||||||
|
----------
|
||||||
|
|
||||||
|
Add
|
||||||
|
|
||||||
|
CC=cc
|
||||||
|
|
||||||
|
to the configure command line. libjpeg-turbo will automatically be built with
|
||||||
|
the maximum optimization level (-xO5) unless you override CFLAGS.
|
||||||
|
|
||||||
|
To build a 64-bit version of libjpeg-turbo using Sun Studio, add
|
||||||
|
|
||||||
|
--host x86_64-pc-solaris CC=cc CFLAGS='-xO5 -m64' LDFLAGS=-m64
|
||||||
|
|
||||||
|
to the configure command line.
|
||||||
|
|
||||||
|
|
||||||
|
MinGW Build on Cygwin
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
Use CMake (see recipes below)
|
||||||
|
|
||||||
|
|
||||||
|
===========
|
||||||
|
ARM Support
|
||||||
|
===========
|
||||||
|
|
||||||
|
This release of libjpeg-turbo can use ARM NEON SIMD instructions to accelerate
|
||||||
|
JPEG compression/decompression by approximately 2-4x on ARMv7 and later
|
||||||
|
platforms. If libjpeg-turbo is configured on an ARM Linux platform, then the
|
||||||
|
build system will automatically include the NEON SIMD routines, if they are
|
||||||
|
supported.
|
||||||
|
|
||||||
|
|
||||||
|
Building libjpeg-turbo for iOS
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
iOS platforms, such as the iPhone and iPad, also use ARM processors, some of
|
||||||
|
which support NEON instructions. Additional steps are required to build
|
||||||
|
libjpeg-turbo for these platforms. The steps below assume iOS SDK v4.3. If
|
||||||
|
you are using a different SDK version, then you will need to modify the
|
||||||
|
examples accordingly.
|
||||||
|
|
||||||
|
Additional build requirements:
|
||||||
|
|
||||||
|
gas-preprocessor.pl (https://github.com/yuvi/gas-preprocessor) should be
|
||||||
|
installed in your PATH.
|
||||||
|
|
||||||
|
Set the following shell variables for simplicity:
|
||||||
|
|
||||||
|
IOS_PLATFORMDIR="/Developer/Platforms/iPhoneOS.platform"
|
||||||
|
IOS_SYSROOT="$IOS_PLATFORMDIR/Developer/SDKs/iPhoneOS4.3.sdk"
|
||||||
|
IOS_GCC="$IOS_PLATFORMDIR/Developer/usr/bin/arm-apple-darwin10-llvm-gcc-4.2"
|
||||||
|
|
||||||
|
ARM v6 only (up to and including iPhone 3G):
|
||||||
|
IOS_CFLAGS="-march=armv6 -mcpu=arm1176jzf-s -mfpu=vfp"
|
||||||
|
|
||||||
|
ARM v7 only (iPhone 3GS and newer, iPad):
|
||||||
|
IOS_CFLAGS="-march=armv7 -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon"
|
||||||
|
|
||||||
|
Follow the procedure under "Building libjpeg-turbo" above, adding
|
||||||
|
|
||||||
|
--host arm-apple-darwin10 --enable-static --disable-shared \
|
||||||
|
CC="$IOS_GCC" LD="$IOS_GCC" \
|
||||||
|
CFLAGS="-mfloat-abi=softfp -isysroot $IOS_SYSROOT -O3 $IOS_CFLAGS" \
|
||||||
|
LDFLAGS="-mfloat-abi=softfp -isysroot $IOS_SYSROOT $IOS_CFLAGS"
|
||||||
|
|
||||||
|
to the configure command line.
|
||||||
|
|
||||||
|
Once built, lipo can be used to combine the ARM v6 and v7 variants into a
|
||||||
|
universal library.
|
||||||
|
|
||||||
|
|
||||||
|
*******************************************************************************
|
||||||
|
** Building on Windows (Visual C++ or MinGW)
|
||||||
|
*******************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
==================
|
||||||
|
Build Requirements
|
||||||
|
==================
|
||||||
|
|
||||||
|
-- CMake (http://www.cmake.org) v2.6 or later
|
||||||
|
|
||||||
|
-- Microsoft Visual C++ 2005 or later
|
||||||
|
|
||||||
|
If you don't already have Visual C++, then the easiest way to get it is by
|
||||||
|
installing the Windows SDK:
|
||||||
|
|
||||||
|
http://msdn.microsoft.com/en-us/windows/bb980924.aspx
|
||||||
|
|
||||||
|
The Windows SDK includes both 32-bit and 64-bit Visual C++ compilers and
|
||||||
|
everything necessary to build libjpeg-turbo.
|
||||||
|
|
||||||
|
* For 32-bit builds, you can also use Microsoft Visual C++ Express
|
||||||
|
Edition. Visual C++ Express Edition is a free download.
|
||||||
|
* If you intend to build libjpeg-turbo from the command line, then add the
|
||||||
|
appropriate compiler and SDK directories to the INCLUDE, LIB, and PATH
|
||||||
|
environment variables. This is generally accomplished by executing
|
||||||
|
vcvars32.bat or vcvars64.bat and SetEnv.cmd. vcvars32.bat and
|
||||||
|
vcvars64.bat are part of Visual C++ and are located in the same directory
|
||||||
|
as the compiler. SetEnv.cmd is part of the Windows SDK. You can pass
|
||||||
|
optional arguments to SetEnv.cmd to specify a 32-bit or 64-bit build
|
||||||
|
environment.
|
||||||
|
|
||||||
|
... OR ...
|
||||||
|
|
||||||
|
-- MinGW
|
||||||
|
|
||||||
|
GCC v4.1 or later recommended for best performance
|
||||||
|
|
||||||
|
-- NASM (http://www.nasm.us/) 0.98 or later (NASM 2.05 or later is required for
|
||||||
|
a 64-bit build)
|
||||||
|
|
||||||
|
-- If building the TurboJPEG/OSS Java wrapper, JDK 1.5 or later is required.
|
||||||
|
This can be downloaded from http://www.java.com.
|
||||||
|
|
||||||
|
|
||||||
|
==================
|
||||||
|
Out-of-Tree Builds
|
||||||
|
==================
|
||||||
|
|
||||||
|
Binary objects, libraries, and executables are generated in the same directory
|
||||||
|
from which cmake was executed (the "binary directory"), and this directory need
|
||||||
|
not necessarily be the same as the libjpeg-turbo source directory. You can
|
||||||
|
create multiple independent binary directories, in which different versions of
|
||||||
|
libjpeg-turbo can be built from the same source tree using different compilers
|
||||||
|
or settings. In the sections below, {build_directory} refers to the binary
|
||||||
|
directory, whereas {source_directory} refers to the libjpeg-turbo source
|
||||||
|
directory. For in-tree builds, these directories are the same.
|
||||||
|
|
||||||
|
|
||||||
|
======================
|
||||||
|
Building libjpeg-turbo
|
||||||
|
======================
|
||||||
|
|
||||||
|
|
||||||
|
Visual C++ (Command Line)
|
||||||
|
-------------------------
|
||||||
|
|
||||||
|
cd {build_directory}
|
||||||
|
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release {source_directory}
|
||||||
|
nmake
|
||||||
|
|
||||||
|
This will build either a 32-bit or a 64-bit version of libjpeg-turbo, depending
|
||||||
|
on which version of cl.exe is in the PATH.
|
||||||
|
|
||||||
|
The following files will be generated under {build_directory}:
|
||||||
|
|
||||||
|
jpeg-static.lib
|
||||||
|
Static link library for libjpeg-turbo
|
||||||
|
sharedlib/jpeg{version}.dll
|
||||||
|
DLL for libjpeg-turbo
|
||||||
|
sharedlib/jpeg.lib
|
||||||
|
Import library for libjpeg-turbo DLL
|
||||||
|
turbojpeg-static.lib
|
||||||
|
Static link library for TurboJPEG/OSS
|
||||||
|
turbojpeg.dll
|
||||||
|
DLL for TurboJPEG/OSS
|
||||||
|
turbojpeg.lib
|
||||||
|
Import library for TurboJPEG/OSS DLL
|
||||||
|
|
||||||
|
{version} is 62, 7, or 8, depending on whether libjpeg v6b (default), v7, or
|
||||||
|
v8 emulation is enabled.
|
||||||
|
|
||||||
|
|
||||||
|
Visual C++ (IDE)
|
||||||
|
----------------
|
||||||
|
|
||||||
|
Choose the appropriate CMake generator option for your version of Visual Studio
|
||||||
|
(run "cmake" with no arguments for a list of available generators.) For
|
||||||
|
instance:
|
||||||
|
|
||||||
|
cd {build_directory}
|
||||||
|
cmake -G "Visual Studio 9 2008" {source_directory}
|
||||||
|
|
||||||
|
You can then open ALL_BUILD.vcproj in Visual Studio and build one of the
|
||||||
|
configurations in that project ("Debug", "Release", etc.) to generate a full
|
||||||
|
build of libjpeg-turbo.
|
||||||
|
|
||||||
|
This will generate the following files under {build_directory}:
|
||||||
|
|
||||||
|
{configuration}/jpeg-static.lib
|
||||||
|
Static link library for libjpeg-turbo
|
||||||
|
sharedlib/{configuration}/jpeg{version}.dll
|
||||||
|
DLL for libjpeg-turbo
|
||||||
|
sharedlib/{configuration}/jpeg.lib
|
||||||
|
Import library for libjpeg-turbo DLL
|
||||||
|
{configuration}/turbojpeg-static.lib
|
||||||
|
Static link library for TurboJPEG/OSS
|
||||||
|
{configuration}/turbojpeg.dll
|
||||||
|
DLL for TurboJPEG/OSS
|
||||||
|
{configuration}/turbojpeg.lib
|
||||||
|
Import library for TurboJPEG/OSS DLL
|
||||||
|
|
||||||
|
{configuration} is Debug, Release, RelWithDebInfo, or MinSizeRel, depending on
|
||||||
|
the configuration you built in the IDE, and {version} is 62, 7, or 8,
|
||||||
|
depending on whether libjpeg v6b (default), v7, or v8 emulation is enabled.
|
||||||
|
|
||||||
|
|
||||||
|
MinGW
|
||||||
|
-----
|
||||||
|
|
||||||
|
cd {build_directory}
|
||||||
|
cmake -G "MSYS Makefiles" {source_directory}
|
||||||
|
make
|
||||||
|
|
||||||
|
This will generate the following files under {build_directory}
|
||||||
|
|
||||||
|
libjpeg.a
|
||||||
|
Static link library for libjpeg-turbo
|
||||||
|
sharedlib/libjpeg-{version}.dll
|
||||||
|
DLL for libjpeg-turbo
|
||||||
|
sharedlib/libjpeg.dll.a
|
||||||
|
Import library for libjpeg-turbo DLL
|
||||||
|
libturbojpeg.a
|
||||||
|
Static link library for TurboJPEG/OSS
|
||||||
|
libturbojpeg.dll
|
||||||
|
DLL for TurboJPEG/OSS
|
||||||
|
libturbojpeg.dll.a
|
||||||
|
Import library for TurboJPEG/OSS DLL
|
||||||
|
|
||||||
|
{version} is 62, 7, or 8, depending on whether libjpeg v6b (default), v7, or
|
||||||
|
v8 emulation is enabled.
|
||||||
|
|
||||||
|
|
||||||
|
Debug Build
|
||||||
|
-----------
|
||||||
|
|
||||||
|
Add "-DCMAKE_BUILD_TYPE=Debug" to the cmake command line. Or, if building with
|
||||||
|
NMake, remove "-DCMAKE_BUILD_TYPE=Release" (Debug builds are the default with
|
||||||
|
NMake.)
|
||||||
|
|
||||||
|
|
||||||
|
libjpeg v7 or v8 API/ABI Emulation
|
||||||
|
-----------------------------------
|
||||||
|
|
||||||
|
Add "-DWITH_JPEG7=1" to the cmake command line to build a version of
|
||||||
|
libjpeg-turbo that is API/ABI-compatible with libjpeg v7. Add "-DWITH_JPEG8=1"
|
||||||
|
to the cmake command to build a version of libjpeg-turbo that is
|
||||||
|
API/ABI-compatible with libjpeg v8. See README-turbo.txt for more information
|
||||||
|
on libjpeg v7 and v8 emulation.
|
||||||
|
|
||||||
|
|
||||||
|
Arithmetic Coding Support
|
||||||
|
-------------------------
|
||||||
|
|
||||||
|
Since the patent on arithmetic coding has expired, this functionality has been
|
||||||
|
included in this release of libjpeg-turbo. libjpeg-turbo's implementation is
|
||||||
|
based on the implementation in libjpeg v8, but it works when emulating libjpeg
|
||||||
|
v7 or v6b as well. The default is to enable both arithmetic encoding and
|
||||||
|
decoding, but those who have philosophical objections to arithmetic coding can
|
||||||
|
add "-DWITH_ARITH_ENC=0" or "-DWITH_ARITH_DEC=0" to the cmake command line to
|
||||||
|
disable encoding or decoding (respectively.)
|
||||||
|
|
||||||
|
|
||||||
|
TurboJPEG/OSS Java Wrapper
|
||||||
|
--------------------------
|
||||||
|
Add "-DWITH_JAVA=1" to the cmake command line to incorporate an optional Java
|
||||||
|
Native Interface wrapper into the TurboJPEG/OSS dynamic library and build the
|
||||||
|
Java front-end classes to support it. This allows the TurboJPEG/OSS dynamic
|
||||||
|
library to be used directly from Java applications. See java/README for more
|
||||||
|
details.
|
||||||
|
|
||||||
|
If you are using CMake 2.8, you can set the Java_JAVAC_EXECUTABLE,
|
||||||
|
Java_JAVA_EXECUTABLE, and Java_JAR_EXECUTABLE CMake variables to specify
|
||||||
|
alternate commands or locations for javac, jar, and java (respectively.) If
|
||||||
|
you are using CMake 2.6, set JAVA_COMPILE, JAVA_RUNTIME, and JAVA_ARCHIVE
|
||||||
|
instead. You can also set the JAVACFLAGS CMake variable to specify arguments
|
||||||
|
that should be passed to the Java compiler when building the front-end classes.
|
||||||
|
|
||||||
|
|
||||||
|
========================
|
||||||
|
Installing libjpeg-turbo
|
||||||
|
========================
|
||||||
|
|
||||||
|
You can use the build system to install libjpeg-turbo into a directory of your
|
||||||
|
choosing (as opposed to creating an installer.) To do this, add:
|
||||||
|
|
||||||
|
-DCMAKE_INSTALL_PREFIX={install_directory}
|
||||||
|
|
||||||
|
to the cmake command line.
|
||||||
|
|
||||||
|
For example,
|
||||||
|
|
||||||
|
cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=c:\libjpeg-turbo {source_directory}
|
||||||
|
nmake install
|
||||||
|
|
||||||
|
will install the header files in c:\libjpeg-turbo\include, the library files
|
||||||
|
in c:\libjpeg-turbo\lib, the DLL's in c:\libjpeg-turbo\bin, and the
|
||||||
|
documentation in c:\libjpeg-turbo\doc.
|
||||||
|
|
||||||
|
|
||||||
|
=============
|
||||||
|
Build Recipes
|
||||||
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
64-bit MinGW Build on Cygwin
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
cd {build_directory}
|
||||||
|
CC=/usr/bin/x86_64-w64-mingw32-gcc \
|
||||||
|
cmake -G "Unix Makefiles" -DCMAKE_SYSTEM_NAME=Windows \
|
||||||
|
-DCMAKE_AR=/usr/bin/x86_64-w64-mingw32-ar \
|
||||||
|
-DCMAKE_RANLIB=/usr/bin/x86_64-w64-mingw32-ranlib {source_directory}
|
||||||
|
make
|
||||||
|
|
||||||
|
This produces a 64-bit build of libjpeg-turbo that does not depend on
|
||||||
|
cygwin1.dll or other Cygwin DLL's. The mingw64-x86_64-gcc-core and
|
||||||
|
mingw64-x86_64-gcc-g++ packages (and their dependencies) must be installed.
|
||||||
|
|
||||||
|
|
||||||
|
32-bit MinGW Build on Cygwin
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
cd {build_directory}
|
||||||
|
CC=/usr/bin/i686-w64-mingw32-gcc \
|
||||||
|
cmake -G "Unix Makefiles" -DCMAKE_SYSTEM_NAME=Windows \
|
||||||
|
-DDCMAKE_AR=/usr/bin/i686-w64-mingw32-ar \
|
||||||
|
-DCMAKE_RANLIB=/usr/bin/i686-w64-mingw32-ranlib {source_directory}
|
||||||
|
make
|
||||||
|
|
||||||
|
This produces a 32-bit build of libjpeg-turbo that does not depend on
|
||||||
|
cygwin1.dll or other Cygwin DLL's. The mingw64-i686-gcc-core and
|
||||||
|
mingw64-i686-gcc-g++ packages (and their dependencies) must be installed.
|
||||||
|
|
||||||
|
|
||||||
|
MinGW-w64 Build on Windows
|
||||||
|
--------------------------
|
||||||
|
|
||||||
|
This produces a 64-bit build of libjpeg-turbo using the "native" MinGW-w64
|
||||||
|
toolchain (which is faster than the Cygwin version):
|
||||||
|
|
||||||
|
cd {build_directory}
|
||||||
|
CC={mingw-w64_binary_path}/x86_64-w64-mingw32-gcc \
|
||||||
|
cmake -G "MSYS Makefiles" \
|
||||||
|
-DCMAKE_AR={mingw-w64_binary_path}/x86_64-w64-mingw32-ar \
|
||||||
|
-DCMAKE_RANLIB={mingw-w64_binary_path}/x86_64-w64-mingw32-ranlib \
|
||||||
|
{source_directory}
|
||||||
|
make
|
||||||
|
|
||||||
|
|
||||||
|
MinGW Build on Linux
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
cd {build_directory}
|
||||||
|
CC={mingw_binary_path}/i386-mingw32-gcc \
|
||||||
|
cmake -G "Unix Makefiles" -DCMAKE_SYSTEM_NAME=Windows \
|
||||||
|
-DCMAKE_AR={mingw_binary_path}/i386-mingw32-ar \
|
||||||
|
-DCMAKE_RANLIB={mingw_binary_path}/i386-mingw32-ranlib \
|
||||||
|
{source_directory}
|
||||||
|
make
|
||||||
|
|
||||||
|
|
||||||
|
*******************************************************************************
|
||||||
|
** Creating Release Packages
|
||||||
|
*******************************************************************************
|
||||||
|
|
||||||
|
The following commands can be used to create various types of release packages:
|
||||||
|
|
||||||
|
|
||||||
|
Unix
|
||||||
|
----
|
||||||
|
|
||||||
|
make rpm
|
||||||
|
|
||||||
|
Create Red Hat-style binary RPM package. Requires RPM v4 or later.
|
||||||
|
|
||||||
|
make srpm
|
||||||
|
|
||||||
|
This runs 'make dist' to create a pristine source tarball, then creates a
|
||||||
|
Red Hat-style source RPM package from the tarball. Requires RPM v4 or later.
|
||||||
|
|
||||||
|
make deb
|
||||||
|
|
||||||
|
Create Debian-style binary package. Requires dpkg.
|
||||||
|
|
||||||
|
make dmg
|
||||||
|
|
||||||
|
Create Macintosh package/disk image. This requires the PackageMaker
|
||||||
|
application, which must be installed in /Developer/Applications/Utilities.
|
||||||
|
|
||||||
|
make udmg [BUILDDIR32={32-bit build directory}]
|
||||||
|
|
||||||
|
On 64-bit OS X systems, this creates a Macintosh package and disk image that
|
||||||
|
contains universal i386/x86-64 binaries. You should first configure a 32-bit
|
||||||
|
out-of-tree build of libjpeg-turbo, then configure a 64-bit out-of-tree
|
||||||
|
build, then run 'make udmg' from the 64-bit build directory. The build
|
||||||
|
system will look for the 32-bit build under {source_directory}/osxx86 by
|
||||||
|
default, but you can override this by setting the BUILDDIR32 variable on the
|
||||||
|
make command line as shown above.
|
||||||
|
|
||||||
|
make iosdmg [BUILDDIR32={32-bit build directory}] \
|
||||||
|
[BUILDDIRARMV6={ARM v6 build directory}] \
|
||||||
|
[BUILDDIRARMV7={ARM v7 build directory}] \
|
||||||
|
|
||||||
|
On OS X systems, this creates a Macintosh package and disk image in which the
|
||||||
|
libjpeg-turbo static libraries contain ARM architectures necessary to build
|
||||||
|
iOS applications. If building on an x86-64 system, the binaries will also
|
||||||
|
contain the i386 architecture, as with 'make udmg' above. You should first
|
||||||
|
configure ARM v6 and ARM v7 out-of-tree builds of libjpeg-turbo (see
|
||||||
|
"Building libjpeg-turbo for iOS" above.) If you are building an x86-64
|
||||||
|
version of libjpeg-turbo, you should configure a 32-bit out-of-tree build as
|
||||||
|
well. Next, build libjpeg-turbo as you would normally, using an out-of-tree
|
||||||
|
build. When it is built, run 'make iosdmg' from the build directory. The
|
||||||
|
build system will look for the ARM v6 build under {source_directory}/iosarmv6
|
||||||
|
by default, the ARM v7 build under {source_directory}/iosarmv7 by default,
|
||||||
|
and (if applicable) the 32-bit build under {source_directory}/osxx86 by
|
||||||
|
default, but you can override this by setting the BUILDDIR32, BUILDDIRARMV6,
|
||||||
|
and/or BUILDDIRARMV7 variables on the make command line as shown above.
|
||||||
|
|
||||||
|
make sunpkg
|
||||||
|
|
||||||
|
Build a Solaris package. This requires pkgmk, pkgtrans, and bzip2.
|
||||||
|
|
||||||
|
make csunpkg [BUILDDIR32={32-bit build directory}]
|
||||||
|
|
||||||
|
On 64-bit Solaris systems, this creates a combined package that contains
|
||||||
|
both 32-bit and 64-bit libraries. You should first configure a 32-bit
|
||||||
|
out-of-tree build of libjpeg-turbo, then configure a 64-bit out-of-tree
|
||||||
|
build, then run 'make csunpkg' from the 64-bit build directory. The build
|
||||||
|
system will look for the 32-bit build under {source_directory}/solx86 by
|
||||||
|
default, but you can override this by setting the BUILDDIR32 variable on the
|
||||||
|
make command line as shown above.
|
||||||
|
|
||||||
|
make cygwinpkg
|
||||||
|
|
||||||
|
Build a Cygwin binary package.
|
||||||
|
|
||||||
|
|
||||||
|
Windows
|
||||||
|
-------
|
||||||
|
|
||||||
|
If using NMake:
|
||||||
|
|
||||||
|
cd {build_directory}
|
||||||
|
nmake installer
|
||||||
|
|
||||||
|
If using MinGW:
|
||||||
|
|
||||||
|
cd {build_directory}
|
||||||
|
make installer
|
||||||
|
|
||||||
|
If using the Visual Studio IDE, build the "installer" project.
|
||||||
|
|
||||||
|
The installer package (libjpeg-turbo[-gcc][64].exe) will be located under
|
||||||
|
{build_directory}. If building using the Visual Studio IDE, then the installer
|
||||||
|
package will be located in a subdirectory with the same name as the
|
||||||
|
configuration you built (such as {build_directory}\Debug\ or
|
||||||
|
{build_directory}\Release\).
|
||||||
|
|
||||||
|
Building a Windows installer requires the Nullsoft Install System
|
||||||
|
(http://nsis.sourceforge.net/.) makensis.exe should be in your PATH.
|
||||||
|
|
||||||
|
|
||||||
|
*******************************************************************************
|
||||||
|
** Regression testing
|
||||||
|
*******************************************************************************
|
||||||
|
|
||||||
|
The most common way to test libjpeg-turbo is by invoking 'make test' on
|
||||||
|
Unix/Linux platforms or 'ctest' on Windows platforms, once the build has
|
||||||
|
completed. This runs a series of tests to ensure that mathematical
|
||||||
|
compatibility has been maintained between libjpeg-turbo and libjpeg v6b. This
|
||||||
|
also invokes the TurboJPEG unit tests, which ensure that the colorspace
|
||||||
|
extensions, YUV encoding, decompression scaling, and other features of the
|
||||||
|
TurboJPEG C and Java APIs are working properly (and, by extension, that the
|
||||||
|
equivalent features of the underlying libjpeg API are also working.)
|
||||||
|
|
||||||
|
Invoking 'make testclean' or 'nmake testclean' (if using NMake) or building
|
||||||
|
the 'testclean' target (if using the Visual Studio IDE) will clean up the
|
||||||
|
output images generated by 'make test'.
|
||||||
|
|
||||||
|
On Unix/Linux platforms, more extensive tests of the TurboJPEG/OSS C and Java
|
||||||
|
wrappers can be run by invoking 'make tjtest'. These extended TurboJPEG tests
|
||||||
|
essentially iterate through all of the available features of the TurboJPEG APIs
|
||||||
|
that are not covered by the TurboJPEG unit tests (this includes the lossless
|
||||||
|
transform options) and compare the images generated by each feature to images
|
||||||
|
generated using the equivalent feature in the libjpeg API. The extended
|
||||||
|
TurboJPEG tests are meant to test for regressions in the TurboJPEG wrappers,
|
||||||
|
not in the underlying libjpeg-turbo library.
|
430
library/deps/libjpeg-turbo/CMakeLists old.txt
Normal file
|
@ -0,0 +1,430 @@
|
||||||
|
#
|
||||||
|
# Setup
|
||||||
|
#
|
||||||
|
|
||||||
|
cmake_minimum_required(VERSION 2.6)
|
||||||
|
|
||||||
|
project(libjpeg-turbo C)
|
||||||
|
set(VERSION 1.2.0)
|
||||||
|
|
||||||
|
if(MINGW OR CYGWIN)
|
||||||
|
execute_process(COMMAND "date" "+%Y%m%d" OUTPUT_VARIABLE BUILD)
|
||||||
|
string(REGEX REPLACE "\n" "" BUILD ${BUILD})
|
||||||
|
elseif(WIN32)
|
||||||
|
execute_process(COMMAND "${CMAKE_SOURCE_DIR}/cmakescripts/getdate.bat"
|
||||||
|
OUTPUT_VARIABLE BUILD)
|
||||||
|
string(REGEX REPLACE "\n" "" BUILD ${BUILD})
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "Platform not supported by this build system. Use autotools instead.")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# This does nothing except when using MinGW. CMAKE_BUILD_TYPE has no meaning
|
||||||
|
# in Visual Studio, and it always defaults to Debug when using NMake.
|
||||||
|
if(NOT CMAKE_BUILD_TYPE)
|
||||||
|
set(CMAKE_BUILD_TYPE Release)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
message(STATUS "CMAKE_BUILD_TYPE = ${CMAKE_BUILD_TYPE}")
|
||||||
|
|
||||||
|
# This only works if building from the command line. There is currently no way
|
||||||
|
# to set a variable's value based on the build type when using Visual Studio.
|
||||||
|
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
||||||
|
set(BUILD "${BUILD}d")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
message(STATUS "VERSION = ${VERSION}, BUILD = ${BUILD}")
|
||||||
|
|
||||||
|
option(WITH_SIMD "Include SIMD extensions" TRUE)
|
||||||
|
option(WITH_ARITH_ENC "Include arithmetic encoding support" TRUE)
|
||||||
|
option(WITH_ARITH_DEC "Include arithmetic decoding support" TRUE)
|
||||||
|
option(WITH_JPEG7 "Emulate libjpeg v7 API/ABI (this makes libjpeg-turbo backward incompatible with libjpeg v6b)" FALSE)
|
||||||
|
option(WITH_JPEG8 "Emulate libjpeg v8 API/ABI (this makes libjpeg-turbo backward incompatible with libjpeg v6b)" FALSE)
|
||||||
|
option(WITH_JAVA "Build Java wrapper for the TurboJPEG/OSS library" FALSE)
|
||||||
|
|
||||||
|
if(WITH_ARITH_ENC)
|
||||||
|
set(C_ARITH_CODING_SUPPORTED 1)
|
||||||
|
message(STATUS "Arithmetic encoding support enabled")
|
||||||
|
else()
|
||||||
|
message(STATUS "Arithmetic encoding support disabled")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(WITH_ARITH_DEC)
|
||||||
|
set(D_ARITH_CODING_SUPPORTED 1)
|
||||||
|
message(STATUS "Arithmetic decoding support enabled")
|
||||||
|
else()
|
||||||
|
message(STATUS "Arithmetic decoding support disabled")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(WITH_JAVA)
|
||||||
|
message(STATUS "TurboJPEG/OSS Java wrapper enabled")
|
||||||
|
else()
|
||||||
|
message(STATUS "TurboJPEG/OSS Java wrapper disabled")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(JPEG_LIB_VERSION 62)
|
||||||
|
set(DLL_VERSION ${JPEG_LIB_VERSION})
|
||||||
|
set(FULLVERSION ${DLL_VERSION}.0.0)
|
||||||
|
if(WITH_JPEG8)
|
||||||
|
set(JPEG_LIB_VERSION 80)
|
||||||
|
set(DLL_VERSION 8)
|
||||||
|
set(FULLVERSION ${DLL_VERSION}.0.2)
|
||||||
|
message(STATUS "Emulating libjpeg v8 API/ABI")
|
||||||
|
elseif(WITH_JPEG7)
|
||||||
|
set(JPEG_LIB_VERSION 70)
|
||||||
|
set(DLL_VERSION 7)
|
||||||
|
set(FULLVERSION ${DLL_VERSION}.0.0)
|
||||||
|
message(STATUS "Emulating libjpeg v7 API/ABI")
|
||||||
|
endif(WITH_JPEG8)
|
||||||
|
|
||||||
|
if(MSVC)
|
||||||
|
# Use the static C library for all build types
|
||||||
|
foreach(var CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELWITHDEBINFO)
|
||||||
|
if(${var} MATCHES "/MD")
|
||||||
|
string(REGEX REPLACE "/MD" "/MT" ${var} "${${var}}")
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
add_definitions(-W3 -wd4996)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Detect whether compiler is 64-bit
|
||||||
|
if(MSVC AND CMAKE_CL_64)
|
||||||
|
set(SIMD_X86_64 1)
|
||||||
|
set(64BIT 1)
|
||||||
|
elseif(CMAKE_SIZEOF_VOID_P MATCHES 8)
|
||||||
|
set(SIMD_X86_64 1)
|
||||||
|
set(64BIT 1)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(64BIT)
|
||||||
|
message(STATUS "64-bit build")
|
||||||
|
else()
|
||||||
|
message(STATUS "32-bit build")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
configure_file(win/jconfig.h.in jconfig.h)
|
||||||
|
configure_file(win/config.h.in config.h)
|
||||||
|
|
||||||
|
include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR})
|
||||||
|
|
||||||
|
if(WITH_JAVA)
|
||||||
|
find_package(Java)
|
||||||
|
find_package(JNI)
|
||||||
|
if(DEFINED JAVACFLAGS)
|
||||||
|
message(STATUS "Java compiler flags = ${JAVACFLAGS}")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# Targets
|
||||||
|
#
|
||||||
|
|
||||||
|
set(JPEG_SOURCES jcapimin.c jcapistd.c jccoefct.c jccolor.c jcdctmgr.c jchuff.c
|
||||||
|
jcinit.c jcmainct.c jcmarker.c jcmaster.c jcomapi.c jcparam.c jcphuff.c
|
||||||
|
jcprepct.c jcsample.c jctrans.c jdapimin.c jdapistd.c jdatadst.c jdatasrc.c
|
||||||
|
jdcoefct.c jdcolor.c jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c
|
||||||
|
jdmaster.c jdmerge.c jdphuff.c jdpostct.c jdsample.c jdtrans.c jerror.c
|
||||||
|
jfdctflt.c jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c jidctred.c
|
||||||
|
jquant1.c jquant2.c jutils.c jmemmgr.c jmemnobs.c)
|
||||||
|
|
||||||
|
if(WITH_ARITH_ENC OR WITH_ARITH_DEC)
|
||||||
|
set(JPEG_SOURCES ${JPEG_SOURCES} jaricom.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(WITH_ARITH_ENC)
|
||||||
|
set(JPEG_SOURCES ${JPEG_SOURCES} jcarith.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(WITH_ARITH_DEC)
|
||||||
|
set(JPEG_SOURCES ${JPEG_SOURCES} jdarith.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(WITH_SIMD)
|
||||||
|
add_definitions(-DWITH_SIMD)
|
||||||
|
add_subdirectory(simd)
|
||||||
|
if(SIMD_X86_64)
|
||||||
|
set(JPEG_SOURCES ${JPEG_SOURCES} simd/jsimd_x86_64.c)
|
||||||
|
else()
|
||||||
|
set(JPEG_SOURCES ${JPEG_SOURCES} simd/jsimd_i386.c)
|
||||||
|
endif()
|
||||||
|
# This tells CMake that the "source" files haven't been generated yet
|
||||||
|
set_source_files_properties(${SIMD_OBJS} PROPERTIES GENERATED 1)
|
||||||
|
else()
|
||||||
|
set(JPEG_SOURCES ${JPEG_SOURCES} jsimd_none.c)
|
||||||
|
message(STATUS "Not using SIMD acceleration")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(WITH_JAVA)
|
||||||
|
add_subdirectory(java)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
add_subdirectory(sharedlib)
|
||||||
|
|
||||||
|
add_library(jpeg-static STATIC ${JPEG_SOURCES} ${SIMD_OBJS})
|
||||||
|
if(NOT MSVC)
|
||||||
|
set_target_properties(jpeg-static PROPERTIES OUTPUT_NAME jpeg)
|
||||||
|
endif()
|
||||||
|
if(WITH_SIMD)
|
||||||
|
add_dependencies(jpeg-static simd)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(TURBOJPEG_SOURCES turbojpeg.c transupp.c jdatadst-tj.c jdatasrc-tj.c)
|
||||||
|
if(WITH_JAVA)
|
||||||
|
set(TURBOJPEG_SOURCES ${TURBOJPEG_SOURCES} turbojpeg-jni.c)
|
||||||
|
include_directories(${JAVA_INCLUDE_PATH} ${JAVA_INCLUDE_PATH2})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
add_library(turbojpeg SHARED ${TURBOJPEG_SOURCES})
|
||||||
|
set_target_properties(turbojpeg PROPERTIES DEFINE_SYMBOL DLLDEFINE)
|
||||||
|
if(MINGW)
|
||||||
|
set_target_properties(turbojpeg PROPERTIES LINK_FLAGS -Wl,--kill-at)
|
||||||
|
endif()
|
||||||
|
target_link_libraries(turbojpeg jpeg-static)
|
||||||
|
set_target_properties(turbojpeg PROPERTIES LINK_INTERFACE_LIBRARIES "")
|
||||||
|
|
||||||
|
add_library(turbojpeg-static STATIC ${JPEG_SOURCES} ${SIMD_OBJS}
|
||||||
|
turbojpeg.c transupp.c jdatadst-tj.c jdatasrc-tj.c)
|
||||||
|
if(NOT MSVC)
|
||||||
|
set_target_properties(turbojpeg-static PROPERTIES OUTPUT_NAME turbojpeg)
|
||||||
|
endif()
|
||||||
|
if(WITH_SIMD)
|
||||||
|
add_dependencies(turbojpeg-static simd)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
add_executable(tjunittest tjunittest.c tjutil.c)
|
||||||
|
target_link_libraries(tjunittest turbojpeg)
|
||||||
|
|
||||||
|
add_executable(tjunittest-static tjunittest.c tjutil.c)
|
||||||
|
target_link_libraries(tjunittest-static turbojpeg-static)
|
||||||
|
|
||||||
|
add_executable(tjbench tjbench.c bmp.c tjutil.c rdbmp.c rdppm.c wrbmp.c
|
||||||
|
wrppm.c)
|
||||||
|
target_link_libraries(tjbench turbojpeg jpeg-static)
|
||||||
|
set_property(TARGET tjbench PROPERTY COMPILE_FLAGS
|
||||||
|
"-DBMP_SUPPORTED -DPPM_SUPPORTED")
|
||||||
|
|
||||||
|
add_executable(tjbench-static tjbench.c bmp.c tjutil.c rdbmp.c rdppm.c wrbmp.c
|
||||||
|
wrppm.c)
|
||||||
|
target_link_libraries(tjbench-static turbojpeg-static jpeg-static)
|
||||||
|
set_property(TARGET tjbench-static PROPERTY COMPILE_FLAGS
|
||||||
|
"-DBMP_SUPPORTED -DPPM_SUPPORTED")
|
||||||
|
|
||||||
|
add_executable(cjpeg-static cjpeg.c cdjpeg.c rdbmp.c rdgif.c rdppm.c rdswitch.c
|
||||||
|
rdtarga.c)
|
||||||
|
set_property(TARGET cjpeg-static PROPERTY COMPILE_FLAGS
|
||||||
|
"-DBMP_SUPPORTED -DGIF_SUPPORTED -DPPM_SUPPORTED -DTARGA_SUPPORTED -DUSE_SETMODE")
|
||||||
|
target_link_libraries(cjpeg-static jpeg-static)
|
||||||
|
|
||||||
|
add_executable(djpeg-static djpeg.c cdjpeg.c rdcolmap.c rdswitch.c wrbmp.c wrgif.c
|
||||||
|
wrppm.c wrtarga.c)
|
||||||
|
set_property(TARGET djpeg-static PROPERTY COMPILE_FLAGS
|
||||||
|
"-DBMP_SUPPORTED -DGIF_SUPPORTED -DPPM_SUPPORTED -DTARGA_SUPPORTED -DUSE_SETMODE")
|
||||||
|
target_link_libraries(djpeg-static jpeg-static)
|
||||||
|
|
||||||
|
add_executable(jpegtran-static jpegtran.c cdjpeg.c rdswitch.c transupp.c)
|
||||||
|
target_link_libraries(jpegtran-static jpeg-static)
|
||||||
|
set_property(TARGET jpegtran-static PROPERTY COMPILE_FLAGS "-DUSE_SETMODE")
|
||||||
|
|
||||||
|
add_executable(rdjpgcom rdjpgcom.c)
|
||||||
|
|
||||||
|
add_executable(wrjpgcom rdjpgcom.c)
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# Tests
|
||||||
|
#
|
||||||
|
|
||||||
|
if(MSVC_IDE)
|
||||||
|
set(OBJDIR "\${CTEST_CONFIGURATION_TYPE}/")
|
||||||
|
else()
|
||||||
|
set(OBJDIR "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
enable_testing()
|
||||||
|
if(WITH_JAVA)
|
||||||
|
add_test(TJUnitTest ${JAVA_RUNTIME} -cp java/${OBJDIR}turbojpeg.jar -Djava.library.path=${CMAKE_CURRENT_BINARY_DIR}/${OBJDIR} TJUnitTest)
|
||||||
|
add_test(TJUnitTest-yuv ${JAVA_RUNTIME} -cp java/${OBJDIR}turbojpeg.jar -Djava.library.path=${CMAKE_CURRENT_BINARY_DIR}/${OBJDIR} TJUnitTest -yuv)
|
||||||
|
add_test(TJUnitTest-bi ${JAVA_RUNTIME} -cp java/${OBJDIR}turbojpeg.jar -Djava.library.path=${CMAKE_CURRENT_BINARY_DIR}/${OBJDIR} TJUnitTest -bi)
|
||||||
|
add_test(TJUnitTest-bi-yuv ${JAVA_RUNTIME} -cp java/${OBJDIR}turbojpeg.jar -Djava.library.path=${CMAKE_CURRENT_BINARY_DIR}/${OBJDIR} TJUnitTest -bi -yuv)
|
||||||
|
endif()
|
||||||
|
add_test(tjunittest tjunittest)
|
||||||
|
add_test(tjunittest-alloc tjunittest -alloc)
|
||||||
|
add_test(tjunittest-yuv tjunittest -yuv)
|
||||||
|
add_test(cjpeg-int sharedlib/cjpeg -dct int -outfile testoutint.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
add_test(cjpeg-int-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint.jpg testoutint.jpg)
|
||||||
|
add_test(cjpeg-fast sharedlib/cjpeg -dct fast -opt -outfile testoutfst.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
add_test(cjpeg-fast-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgfst.jpg testoutfst.jpg)
|
||||||
|
add_test(cjpeg-fast-100 sharedlib/cjpeg -dct fast -quality 100 -opt -outfile testoutfst100.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
add_test(cjpeg-fast-100-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgfst100.jpg testoutfst100.jpg)
|
||||||
|
add_test(cjpeg-float sharedlib/cjpeg -dct float -outfile testoutflt.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
if(WITH_SIMD)
|
||||||
|
add_test(cjpeg-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgflt.jpg testoutflt.jpg)
|
||||||
|
else()
|
||||||
|
add_test(cjpeg-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgflt-nosimd.jpg testoutflt.jpg)
|
||||||
|
endif()
|
||||||
|
add_test(cjpeg-int-gray sharedlib/cjpeg -dct int -grayscale -outfile testoutgray.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
add_test(cjpeg-int-gray-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimggray.jpg testoutgray.jpg)
|
||||||
|
add_test(djpeg-int sharedlib/djpeg -dct int -fast -ppm -outfile testoutint.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-int-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint.ppm testoutint.ppm)
|
||||||
|
add_test(djpeg-fast sharedlib/djpeg -dct fast -ppm -outfile testoutfst.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-fast-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgfst.ppm testoutfst.ppm)
|
||||||
|
add_test(djpeg-float sharedlib/djpeg -dct float -ppm -outfile testoutflt.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
if(WITH_SIMD)
|
||||||
|
add_test(djpeg-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgflt.ppm testoutflt.ppm)
|
||||||
|
else()
|
||||||
|
add_test(djpeg-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm testoutflt.ppm)
|
||||||
|
endif()
|
||||||
|
add_test(djpeg-int-1_2 sharedlib/djpeg -dct int -scale 1/2 -ppm -outfile testoutint1_2.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-int-1_2-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint1_2.ppm testoutint1_2.ppm)
|
||||||
|
add_test(djpeg-fast-1_2 sharedlib/djpeg -dct fast -scale 1/2 -ppm -outfile testoutfst1_2.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-fast-1_2-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgfst1_2.ppm testoutfst1_2.ppm)
|
||||||
|
add_test(djpeg-int-1_4 sharedlib/djpeg -dct int -scale 1/4 -ppm -outfile testoutint1_4.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-int-1_4-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint1_4.ppm testoutint1_4.ppm)
|
||||||
|
add_test(djpeg-fast-1_4 sharedlib/djpeg -dct fast -scale 1/4 -ppm -outfile testoutfst1_4.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-fast-1_4-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgfst1_4.ppm testoutfst1_4.ppm)
|
||||||
|
add_test(djpeg-int-1_8 sharedlib/djpeg -dct int -scale 1/8 -ppm -outfile testoutint1_8.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-int-1_8-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint1_8.ppm testoutint1_8.ppm)
|
||||||
|
add_test(djpeg-fast-1_8 sharedlib/djpeg -dct fast -scale 1/8 -ppm -outfile testoutfst1_8.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-fast-1_8-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgfst1_8.ppm testoutfst1_8.ppm)
|
||||||
|
add_test(djpeg-256 sharedlib/djpeg -dct int -bmp -colors 256 -outfile testout.bmp ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-256-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimg.bmp testout.bmp)
|
||||||
|
add_test(cjpeg-prog sharedlib/cjpeg -dct int -progressive -outfile testoutp.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
add_test(cjpeg-prog-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgp.jpg testoutp.jpg)
|
||||||
|
add_test(jpegtran-prog sharedlib/jpegtran -outfile testoutt.jpg testoutp.jpg)
|
||||||
|
add_test(jpegtran-prog-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint.jpg testoutt.jpg)
|
||||||
|
if(WITH_ARITH_ENC)
|
||||||
|
add_test(cjpeg-ari sharedlib/cjpeg -dct int -arithmetic -outfile testoutari.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
add_test(cjpeg-ari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgari.jpg testoutari.jpg)
|
||||||
|
add_test(jpegtran-toari sharedlib/jpegtran -arithmetic -outfile testouta.jpg ${CMAKE_SOURCE_DIR}/testimages/testimgint.jpg)
|
||||||
|
add_test(jpegtran-toari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgari.jpg testouta.jpg)
|
||||||
|
endif()
|
||||||
|
if(WITH_ARITH_DEC)
|
||||||
|
add_test(djpeg-ari sharedlib/djpeg -dct int -fast -ppm -outfile testoutari.ppm ${CMAKE_SOURCE_DIR}/testimages/testimgari.jpg)
|
||||||
|
add_test(djpeg-ari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgari.ppm testoutari.ppm)
|
||||||
|
add_test(jpegtran-fromari sharedlib/jpegtran -outfile testouta.jpg ${CMAKE_SOURCE_DIR}/testimages/testimgari.jpg)
|
||||||
|
add_test(jpegtran-fromari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint.jpg testouta.jpg)
|
||||||
|
endif()
|
||||||
|
add_test(jpegtran-crop sharedlib/jpegtran -crop 120x90+20+50 -transpose -perfect -outfile testoutcrop.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(jpegtran-crop-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgcrop.jpg testoutcrop.jpg)
|
||||||
|
|
||||||
|
add_test(tjunittest-static tjunittest-static)
|
||||||
|
add_test(tjunittest-static-alloc tjunittest-static -alloc)
|
||||||
|
add_test(tjunittest-static-yuv tjunittest-static -yuv)
|
||||||
|
add_test(cjpeg-static-int cjpeg-static -dct int -outfile testoutint.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
add_test(cjpeg-static-int-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint.jpg testoutint.jpg)
|
||||||
|
add_test(cjpeg-static-fast cjpeg-static -dct fast -opt -outfile testoutfst.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
add_test(cjpeg-static-fast-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgfst.jpg testoutfst.jpg)
|
||||||
|
add_test(cjpeg-static-fast-100 cjpeg-static -dct fast -quality 100 -opt -outfile testoutfst100.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
add_test(cjpeg-static-fast-100-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgfst100.jpg testoutfst100.jpg)
|
||||||
|
add_test(cjpeg-static-float cjpeg-static -dct float -outfile testoutflt.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
if(WITH_SIMD)
|
||||||
|
add_test(cjpeg-static-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgflt.jpg testoutflt.jpg)
|
||||||
|
else()
|
||||||
|
add_test(cjpeg-static-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgflt-nosimd.jpg testoutflt.jpg)
|
||||||
|
endif()
|
||||||
|
add_test(cjpeg-static-int-gray cjpeg-static -dct int -grayscale -outfile testoutgray.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
add_test(cjpeg-static-int-gray-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimggray.jpg testoutgray.jpg)
|
||||||
|
add_test(djpeg-static-int djpeg-static -dct int -fast -ppm -outfile testoutint.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-static-int-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint.ppm testoutint.ppm)
|
||||||
|
add_test(djpeg-static-fast djpeg-static -dct fast -ppm -outfile testoutfst.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-static-fast-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgfst.ppm testoutfst.ppm)
|
||||||
|
add_test(djpeg-static-float djpeg-static -dct float -ppm -outfile testoutflt.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
if(WITH_SIMD)
|
||||||
|
add_test(djpeg-static-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgflt.ppm testoutflt.ppm)
|
||||||
|
else()
|
||||||
|
add_test(djpeg-static-float-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm testoutflt.ppm)
|
||||||
|
endif()
|
||||||
|
add_test(djpeg-static-int-1_2 djpeg-static -dct int -scale 1/2 -ppm -outfile testoutint1_2.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-static-int-1_2-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint1_2.ppm testoutint1_2.ppm)
|
||||||
|
add_test(djpeg-static-fast-1_2 djpeg-static -dct fast -scale 1/2 -ppm -outfile testoutfst1_2.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-static-fast-1_2-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgfst1_2.ppm testoutfst1_2.ppm)
|
||||||
|
add_test(djpeg-static-int-1_4 djpeg-static -dct int -scale 1/4 -ppm -outfile testoutint1_4.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-static-int-1_4-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint1_4.ppm testoutint1_4.ppm)
|
||||||
|
add_test(djpeg-static-fast-1_4 djpeg-static -dct fast -scale 1/4 -ppm -outfile testoutfst1_4.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-static-fast-1_4-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgfst1_4.ppm testoutfst1_4.ppm)
|
||||||
|
add_test(djpeg-static-int-1_8 djpeg-static -dct int -scale 1/8 -ppm -outfile testoutint1_8.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-static-int-1_8-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint1_8.ppm testoutint1_8.ppm)
|
||||||
|
add_test(djpeg-static-fast-1_8 djpeg-static -dct fast -scale 1/8 -ppm -outfile testoutfst1_8.ppm ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-static-fast-1_8-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgfst1_8.ppm testoutfst1_8.ppm)
|
||||||
|
add_test(djpeg-static-256 djpeg-static -dct int -bmp -colors 256 -outfile testout.bmp ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(djpeg-static-256-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimg.bmp testout.bmp)
|
||||||
|
add_test(cjpeg-static-prog cjpeg-static -dct int -progressive -outfile testoutp.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
add_test(cjpeg-static-prog-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgp.jpg testoutp.jpg)
|
||||||
|
add_test(jpegtran-static-prog jpegtran-static -outfile testoutt.jpg testoutp.jpg)
|
||||||
|
add_test(jpegtran-static-prog-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint.jpg testoutt.jpg)
|
||||||
|
if(WITH_ARITH_ENC)
|
||||||
|
add_test(cjpeg-static-ari cjpeg-static -dct int -arithmetic -outfile testoutari.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.ppm)
|
||||||
|
add_test(cjpeg-static-ari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgari.jpg testoutari.jpg)
|
||||||
|
add_test(jpegtran-static-toari jpegtran-static -arithmetic -outfile testouta.jpg ${CMAKE_SOURCE_DIR}/testimages/testimgint.jpg)
|
||||||
|
add_test(jpegtran-static-toari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgari.jpg testouta.jpg)
|
||||||
|
endif()
|
||||||
|
if(WITH_ARITH_DEC)
|
||||||
|
add_test(djpeg-static-ari djpeg-static -dct int -fast -ppm -outfile testoutari.ppm ${CMAKE_SOURCE_DIR}/testimages/testimgari.jpg)
|
||||||
|
add_test(djpeg-static-ari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgari.ppm testoutari.ppm)
|
||||||
|
add_test(jpegtran-static-fromari jpegtran-static -outfile testouta.jpg ${CMAKE_SOURCE_DIR}/testimages/testimgari.jpg)
|
||||||
|
add_test(jpegtran-static-fromari-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgint.jpg testouta.jpg)
|
||||||
|
endif()
|
||||||
|
add_test(jpegtran-static-crop jpegtran-static -crop 120x90+20+50 -transpose -perfect -outfile testoutcrop.jpg ${CMAKE_SOURCE_DIR}/testimages/testorig.jpg)
|
||||||
|
add_test(jpegtran-static-crop-cmp ${CMAKE_COMMAND} -E compare_files ${CMAKE_SOURCE_DIR}/testimages/testimgcrop.jpg testoutcrop.jpg)
|
||||||
|
|
||||||
|
add_custom_target(testclean COMMAND ${CMAKE_COMMAND} -P
|
||||||
|
${CMAKE_SOURCE_DIR}/cmakescripts/testclean.cmake)
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# Installer
|
||||||
|
#
|
||||||
|
|
||||||
|
if(MSVC)
|
||||||
|
set(INST_PLATFORM "Visual C++")
|
||||||
|
set(INST_NAME ${CMAKE_PROJECT_NAME}-${VERSION}-vc)
|
||||||
|
set(INST_DIR ${CMAKE_PROJECT_NAME})
|
||||||
|
elseif(MINGW)
|
||||||
|
set(INST_PLATFORM GCC)
|
||||||
|
set(INST_NAME ${CMAKE_PROJECT_NAME}-${VERSION}-gcc)
|
||||||
|
set(INST_DIR ${CMAKE_PROJECT_NAME}-gcc)
|
||||||
|
set(INST_DEFS -DGCC)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(64BIT)
|
||||||
|
set(INST_PLATFORM "${INST_PLATFORM} 64-bit")
|
||||||
|
set(INST_NAME ${INST_NAME}64)
|
||||||
|
set(INST_DIR ${INST_DIR}64)
|
||||||
|
set(INST_DEFS ${INST_DEFS} -DWIN64)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(WITH_JAVA)
|
||||||
|
set(INST_DEFS ${INST_DEFS} -DJAVA)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(MSVC_IDE)
|
||||||
|
set(INST_DEFS ${INST_DEFS} "-DBUILDDIR=${CMAKE_CFG_INTDIR}\\")
|
||||||
|
else()
|
||||||
|
set(INST_DEFS ${INST_DEFS} "-DBUILDDIR=")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
configure_file(release/libjpeg-turbo.nsi.in libjpeg-turbo.nsi @ONLY)
|
||||||
|
|
||||||
|
add_custom_target(installer
|
||||||
|
makensis -nocd ${INST_DEFS} libjpeg-turbo.nsi
|
||||||
|
DEPENDS jpeg jpeg-static turbojpeg turbojpeg-static rdjpgcom wrjpgcom
|
||||||
|
cjpeg djpeg jpegtran tjbench
|
||||||
|
SOURCES libjpeg-turbo.nsi)
|
||||||
|
|
||||||
|
install(TARGETS jpeg-static turbojpeg turbojpeg-static rdjpgcom wrjpgcom tjbench
|
||||||
|
ARCHIVE DESTINATION lib
|
||||||
|
LIBRARY DESTINATION lib
|
||||||
|
RUNTIME DESTINATION bin
|
||||||
|
)
|
||||||
|
|
||||||
|
install(FILES ${CMAKE_SOURCE_DIR}/README ${CMAKE_SOURCE_DIR}/README-turbo.txt
|
||||||
|
${CMAKE_SOURCE_DIR}/example.c ${CMAKE_SOURCE_DIR}/libjpeg.txt
|
||||||
|
${CMAKE_SOURCE_DIR}/structure.txt ${CMAKE_SOURCE_DIR}/usage.txt
|
||||||
|
${CMAKE_SOURCE_DIR}/wizard.txt
|
||||||
|
DESTINATION doc)
|
||||||
|
|
||||||
|
install(FILES ${CMAKE_BINARY_DIR}/jconfig.h ${CMAKE_SOURCE_DIR}/jerror.h
|
||||||
|
${CMAKE_SOURCE_DIR}/jmorecfg.h ${CMAKE_SOURCE_DIR}/jpeglib.h
|
||||||
|
${CMAKE_SOURCE_DIR}/turbojpeg.h DESTINATION include)
|
49
library/deps/libjpeg-turbo/CMakeLists.txt
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
cmake_minimum_required(VERSION 2.6)
|
||||||
|
project(libjpeg-turbo)
|
||||||
|
|
||||||
|
set(JPEG_SERIES 1)
|
||||||
|
set(JPEG_MAJOR 2)
|
||||||
|
set(JPEG_MINOR 0)
|
||||||
|
|
||||||
|
add_subdirectory(simd)
|
||||||
|
|
||||||
|
set(JPEG_SOURCES jcomapi.c jdapimin.c jdapistd.c jdatasrc.c jdcoefct.c jdcolor.c
|
||||||
|
jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c jdmaster.c jdmerge.c
|
||||||
|
jdphuff.c jdpostct.c jdsample.c jerror.c jidctflt.c jidctfst.c jidctint.c
|
||||||
|
jidctred.c jquant1.c jquant2.c jutils.c jmemmgr.c jmemnobs.c jaricom.c jdarith.c
|
||||||
|
)
|
||||||
|
|
||||||
|
if(64BIT)
|
||||||
|
set(JPEG_SOURCES ${JPEG_SOURCES} simd/jsimd_x86_64.c)
|
||||||
|
else()
|
||||||
|
set(JPEG_SOURCES ${JPEG_SOURCES} simd/jsimd_i386.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(64BIT)
|
||||||
|
add_definitions(-DWIN64 -D__x86_64__ -DPIC)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# This tells CMake that the "source" files still need to be generated
|
||||||
|
set_source_files_properties(${SIMD_OBJS} PROPERTIES GENERATED 1)
|
||||||
|
|
||||||
|
add_library(jpegturbo_static STATIC ${JPEG_SOURCES} ${SIMD_OBJS})
|
||||||
|
set_target_properties(jpegturbo_static PROPERTIES
|
||||||
|
OUTPUT_NAME "jpeg-turbo${JPEG_SERIES}"
|
||||||
|
PREFIX "lib"
|
||||||
|
IMPORT_PREFIX "lib"
|
||||||
|
CLEAN_DIRECT_OUTPUT 1)
|
||||||
|
add_dependencies(jpegturbo_static jpegturbo_simd)
|
||||||
|
|
||||||
|
#### Shared library (uncomment to build)
|
||||||
|
#add_library(jpegturbo_shared SHARED ${JPEG_SOURCES} ${SIMD_OBJS})
|
||||||
|
#if(WIN32)
|
||||||
|
# set_target_properties(jpegturbo_shared PROPERTIES OUTPUT_NAME "jpeg-turbo${JPEG_SERIES}")
|
||||||
|
#else()
|
||||||
|
# set_target_properties(jpegturbo_shared PROPERTIES OUTPUT_NAME "jpeg-turbo")
|
||||||
|
#endif()
|
||||||
|
#set_target_properties(jpegturbo_shared PROPERTIES
|
||||||
|
# VERSION ${JPEG_SERIES}.${JPEG_MAJOR}.${JPEG_MINOR}
|
||||||
|
# PREFIX "lib"
|
||||||
|
# IMPORT_PREFIX "lib"
|
||||||
|
# CLEAN_DIRECT_OUTPUT 1)
|
||||||
|
#add_dependencies(jpegturbo_shared jpegturbo_simd)
|
273
library/deps/libjpeg-turbo/ChangeLog.txt
Normal file
|
@ -0,0 +1,273 @@
|
||||||
|
1.2.0
|
||||||
|
=====
|
||||||
|
|
||||||
|
[1] Fixed build issue with YASM on Unix systems (the libjpeg-turbo build system
|
||||||
|
was not adding the current directory to the assembler include path, so YASM
|
||||||
|
was not able to find jsimdcfg.inc.)
|
||||||
|
|
||||||
|
[2] Fixed out-of-bounds read in SSE2 SIMD code that occurred when decompressing
|
||||||
|
a JPEG image to a bitmap buffer whose size was not a multiple of 16 bytes.
|
||||||
|
This was more of an annoyance than an actual bug, since it did not cause any
|
||||||
|
actual run-time problems, but the issue showed up when running libjpeg-turbo in
|
||||||
|
valgrind. See http://crbug.com/72399 for more information.
|
||||||
|
|
||||||
|
[3] Added a compile-time macro (LIBJPEG_TURBO_VERSION) that can be used to
|
||||||
|
check the version of libjpeg-turbo against which an application was compiled.
|
||||||
|
|
||||||
|
[4] Added new RGBA/BGRA/ABGR/ARGB colorspace extension constants (libjpeg API)
|
||||||
|
and pixel formats (TurboJPEG API), which allow applications to specify that,
|
||||||
|
when decompressing to a 4-component RGB buffer, the unused byte should be set
|
||||||
|
to 0xFF so that it can be interpreted as an opaque alpha channel.
|
||||||
|
|
||||||
|
[5] Fixed regression issue whereby DevIL failed to build against libjpeg-turbo
|
||||||
|
because libjpeg-turbo's distributed version of jconfig.h contained an INLINE
|
||||||
|
macro, which conflicted with a similar macro in DevIL. This macro is used only
|
||||||
|
internally when building libjpeg-turbo, so it was moved into config.h.
|
||||||
|
|
||||||
|
[6] libjpeg-turbo will now correctly decompress erroneous CMYK/YCCK JPEGs whose
|
||||||
|
K component is assigned a component ID of 1 instead of 4. Although these files
|
||||||
|
are in violation of the spec, other JPEG implementations handle them
|
||||||
|
correctly.
|
||||||
|
|
||||||
|
[7] Added ARM v6 and ARM v7 architectures to libjpeg.a and libturbojpeg.a in
|
||||||
|
the official OS X distribution package, so that those libraries can be used to
|
||||||
|
build both OS X and iOS applications.
|
||||||
|
|
||||||
|
|
||||||
|
1.1.90 (1.2 beta1)
|
||||||
|
==================
|
||||||
|
|
||||||
|
[1] Added a Java wrapper for the TurboJPEG API. See java/README for more
|
||||||
|
details.
|
||||||
|
|
||||||
|
[2] The TurboJPEG API can now be used to scale down images during
|
||||||
|
decompression.
|
||||||
|
|
||||||
|
[3] Added SIMD routines for RGB-to-grayscale color conversion, which
|
||||||
|
significantly improves the performance of grayscale JPEG compression from an
|
||||||
|
RGB source image.
|
||||||
|
|
||||||
|
[4] Improved the performance of the C color conversion routines, which are used
|
||||||
|
on platforms for which SIMD acceleration is not available.
|
||||||
|
|
||||||
|
[5] Added a function to the TurboJPEG API that performs lossless transforms.
|
||||||
|
This function is implemented using the same back end as jpegtran, but it
|
||||||
|
performs transcoding entirely in memory and allows multiple transforms and/or
|
||||||
|
crop operations to be batched together, so the source coefficients only need to
|
||||||
|
be read once. This is useful when generating image tiles from a single source
|
||||||
|
JPEG.
|
||||||
|
|
||||||
|
[6] Added tests for the new TurboJPEG scaled decompression and lossless
|
||||||
|
transform features to tjbench (the TurboJPEG benchmark, formerly called
|
||||||
|
"jpgtest".)
|
||||||
|
|
||||||
|
[7] Added support for 4:4:0 (transposed 4:2:2) subsampling in TurboJPEG, which
|
||||||
|
was necessary in order for it to read 4:2:2 JPEG files that had been losslessly
|
||||||
|
transposed or rotated 90 degrees.
|
||||||
|
|
||||||
|
[8] All legacy VirtualGL code has been re-factored, and this has allowed
|
||||||
|
libjpeg-turbo, in its entirety, to be re-licensed under a BSD-style license.
|
||||||
|
|
||||||
|
[9] libjpeg-turbo can now be built with YASM.
|
||||||
|
|
||||||
|
[10] Added SIMD acceleration for ARM Linux and iOS platforms that support
|
||||||
|
NEON instructions.
|
||||||
|
|
||||||
|
[11] Refactored the TurboJPEG C API and documented it using Doxygen. The
|
||||||
|
TurboJPEG 1.2 API uses pixel formats to define the size and component order of
|
||||||
|
the uncompressed source/destination images, and it includes a more efficient
|
||||||
|
version of TJBUFSIZE() that computes a worst-case JPEG size based on the level
|
||||||
|
of chrominance subsampling. The refactored implementation of TurboJPEG/OSS
|
||||||
|
now uses the libjpeg memory source and destination managers, which allows the
|
||||||
|
TurboJPEG compressor to grow the JPEG buffer as necessary.
|
||||||
|
|
||||||
|
[12] Eliminated errors in the output of jpegtran on Windows that occurred when
|
||||||
|
the application was invoked using I/O redirection
|
||||||
|
(jpegtran <input.jpg >output.jpg).
|
||||||
|
|
||||||
|
[13] The inclusion of libjpeg v7 and v8 emulation as well as arithmetic coding
|
||||||
|
support in libjpeg-turbo v1.1.0 introduced several new error constants in
|
||||||
|
jerror.h, and these were mistakenly enabled for all emulation modes, causing
|
||||||
|
the error enum in libjpeg-turbo to sometimes have different values than the
|
||||||
|
same enum in libjpeg. This represents an ABI incompatibility, and it caused
|
||||||
|
problems with rare applications that took specific action based on a particular
|
||||||
|
error value. The fix was to include the new error constants conditionally
|
||||||
|
based on whether libjpeg v7 or v8 emulation was enabled.
|
||||||
|
|
||||||
|
[14] Fixed an issue whereby Windows applications that used libjpeg-turbo would
|
||||||
|
fail to compile if the Windows system headers were included before jpeglib.h.
|
||||||
|
This issue was caused by a conflict in the definition of the INT32 type.
|
||||||
|
|
||||||
|
[15] Fixed 32-bit supplementary package for amd64 Debian systems, which was
|
||||||
|
broken by enhancements to the packaging system in 1.1.
|
||||||
|
|
||||||
|
[16] When decompressing a JPEG image using an output colorspace of
|
||||||
|
JCS_EXT_RGBX, JCS_EXT_BGRX, JCS_EXT_XBGR, or JCS_EXT_XRGB, libjpeg-turbo will
|
||||||
|
now set the unused byte to 0xFF, which allows applications to interpret that
|
||||||
|
byte as an alpha channel (0xFF = opaque).
|
||||||
|
|
||||||
|
|
||||||
|
1.1.1
|
||||||
|
=====
|
||||||
|
|
||||||
|
[1] Fixed a 1-pixel error in row 0, column 21 of the luminance plane generated
|
||||||
|
by tjEncodeYUV().
|
||||||
|
|
||||||
|
[2] libjpeg-turbo's accelerated Huffman decoder previously ignored unexpected
|
||||||
|
markers found in the middle of the JPEG data stream during decompression. It
|
||||||
|
will now hand off decoding of a particular block to the unaccelerated Huffman
|
||||||
|
decoder if an unexpected marker is found, so that the unaccelerated Huffman
|
||||||
|
decoder can generate an appropriate warning.
|
||||||
|
|
||||||
|
[3] Older versions of MinGW64 prefixed symbol names with underscores by
|
||||||
|
default, which differed from the behavior of 64-bit Visual C++. MinGW64 1.0
|
||||||
|
has adopted the behavior of 64-bit Visual C++ as the default, so to accommodate
|
||||||
|
this, the libjpeg-turbo SIMD function names are no longer prefixed with an
|
||||||
|
underscore when building with MinGW64. This means that, when building
|
||||||
|
libjpeg-turbo with older versions of MinGW64, you will now have to add
|
||||||
|
-fno-leading-underscore to the CFLAGS.
|
||||||
|
|
||||||
|
[4] Fixed a regression bug in the NSIS script that caused the Windows installer
|
||||||
|
build to fail when using the Visual Studio IDE.
|
||||||
|
|
||||||
|
[5] Fixed a bug in jpeg_read_coefficients() whereby it would not initialize
|
||||||
|
cinfo->image_width and cinfo->image_height if libjpeg v7 or v8 emulation was
|
||||||
|
enabled. This specifically caused the jpegoptim program to fail if it was
|
||||||
|
linked against a version of libjpeg-turbo that was built with libjpeg v7 or v8
|
||||||
|
emulation.
|
||||||
|
|
||||||
|
[6] Eliminated excessive I/O overhead that occurred when reading BMP files in
|
||||||
|
cjpeg.
|
||||||
|
|
||||||
|
[7] Eliminated errors in the output of cjpeg on Windows that occurred when the
|
||||||
|
application was invoked using I/O redirection (cjpeg <inputfile >output.jpg).
|
||||||
|
|
||||||
|
|
||||||
|
1.1.0
|
||||||
|
=====
|
||||||
|
|
||||||
|
[1] The algorithm used by the SIMD quantization function cannot produce correct
|
||||||
|
results when the JPEG quality is >= 98 and the fast integer forward DCT is
|
||||||
|
used. Thus, the non-SIMD quantization function is now used for those cases,
|
||||||
|
and libjpeg-turbo should now produce identical output to libjpeg v6b in all
|
||||||
|
cases.
|
||||||
|
|
||||||
|
[2] Despite the above, the fast integer forward DCT still degrades somewhat for
|
||||||
|
JPEG qualities greater than 95, so TurboJPEG/OSS will now automatically use the
|
||||||
|
slow integer forward DCT when generating JPEG images of quality 96 or greater.
|
||||||
|
This reduces compression performance by as much as 15% for these high-quality
|
||||||
|
images but is necessary to ensure that the images are perceptually lossless.
|
||||||
|
It also ensures that the library can avoid the performance pitfall created by
|
||||||
|
[1].
|
||||||
|
|
||||||
|
[3] Ported jpgtest.cxx to pure C to avoid the need for a C++ compiler.
|
||||||
|
|
||||||
|
[4] Fixed visual artifacts in grayscale JPEG compression caused by a typo in
|
||||||
|
the RGB-to-luminance lookup tables.
|
||||||
|
|
||||||
|
[5] The Windows distribution packages now include the libjpeg run-time programs
|
||||||
|
(cjpeg, etc.)
|
||||||
|
|
||||||
|
[6] All packages now include jpgtest.
|
||||||
|
|
||||||
|
[7] The TurboJPEG dynamic library now uses versioned symbols.
|
||||||
|
|
||||||
|
[8] Added two new TurboJPEG API functions, tjEncodeYUV() and
|
||||||
|
tjDecompressToYUV(), to replace the somewhat hackish TJ_YUV flag.
|
||||||
|
|
||||||
|
|
||||||
|
1.0.90 (1.1 beta1)
|
||||||
|
==================
|
||||||
|
|
||||||
|
[1] Added emulation of the libjpeg v7 and v8 APIs and ABIs. See
|
||||||
|
README-turbo.txt for more details. This feature was sponsored by CamTrace SAS.
|
||||||
|
|
||||||
|
[2] Created a new CMake-based build system for the Visual C++ and MinGW builds.
|
||||||
|
|
||||||
|
[3] Grayscale bitmaps can now be compressed from/decompressed to using the
|
||||||
|
TurboJPEG API.
|
||||||
|
|
||||||
|
[4] jpgtest can now be used to test decompression performance with existing
|
||||||
|
JPEG images.
|
||||||
|
|
||||||
|
[5] If the default install prefix (/opt/libjpeg-turbo) is used, then
|
||||||
|
'make install' now creates /opt/libjpeg-turbo/lib32 and
|
||||||
|
/opt/libjpeg-turbo/lib64 sym links to duplicate the behavior of the binary
|
||||||
|
packages.
|
||||||
|
|
||||||
|
[6] All symbols in the libjpeg-turbo dynamic library are now versioned, even
|
||||||
|
when the library is built with libjpeg v6b emulation.
|
||||||
|
|
||||||
|
[7] Added arithmetic encoding and decoding support (can be disabled with
|
||||||
|
configure or CMake options)
|
||||||
|
|
||||||
|
[8] Added a TJ_YUV flag to the TurboJPEG API, which causes both the compressor
|
||||||
|
and decompressor to output planar YUV images.
|
||||||
|
|
||||||
|
[9] Added an extended version of tjDecompressHeader() to the TurboJPEG API,
|
||||||
|
which allows the caller to determine the type of subsampling used in a JPEG
|
||||||
|
image.
|
||||||
|
|
||||||
|
[10] Added further protections against invalid Huffman codes.
|
||||||
|
|
||||||
|
|
||||||
|
1.0.1
|
||||||
|
=====
|
||||||
|
|
||||||
|
[1] The Huffman decoder will now handle erroneous Huffman codes (for instance,
|
||||||
|
from a corrupt JPEG image.) Previously, these would cause libjpeg-turbo to
|
||||||
|
crash under certain circumstances.
|
||||||
|
|
||||||
|
[2] Fixed typo in SIMD dispatch routines that was causing 4:2:2 upsampling to
|
||||||
|
be used instead of 4:2:0 when decompressing JPEG images using SSE2 code.
|
||||||
|
|
||||||
|
[3] configure script will now automatically determine whether the
|
||||||
|
INCOMPLETE_TYPES_BROKEN macro should be defined.
|
||||||
|
|
||||||
|
|
||||||
|
1.0.0
|
||||||
|
=====
|
||||||
|
|
||||||
|
[1] 2983700: Further FreeBSD build tweaks (no longer necessary to specify
|
||||||
|
--host when configuring on a 64-bit system)
|
||||||
|
|
||||||
|
[2] Created sym. links in the Unix/Linux packages so that the TurboJPEG
|
||||||
|
include file can always be found in /opt/libjpeg-turbo/include, the 32-bit
|
||||||
|
static libraries can always be found in /opt/libjpeg-turbo/lib32, and the
|
||||||
|
64-bit static libraries can always be found in /opt/libjpeg-turbo/lib64.
|
||||||
|
|
||||||
|
[3] The Unix/Linux distribution packages now include the libjpeg run-time
|
||||||
|
programs (cjpeg, etc.) and man pages.
|
||||||
|
|
||||||
|
[4] Created a 32-bit supplementary package for amd64 Debian systems, which
|
||||||
|
contains just the 32-bit libjpeg-turbo libraries.
|
||||||
|
|
||||||
|
[5] Moved the libraries from */lib32 to */lib in the i386 Debian package.
|
||||||
|
|
||||||
|
[6] Include distribution package for Cygwin
|
||||||
|
|
||||||
|
[7] No longer necessary to specify --without-simd on non-x86 architectures, and
|
||||||
|
unit tests now work on those architectures.
|
||||||
|
|
||||||
|
|
||||||
|
0.0.93
|
||||||
|
======
|
||||||
|
|
||||||
|
[1] 2982659, Fixed x86-64 build on FreeBSD systems
|
||||||
|
|
||||||
|
[2] 2988188: Added support for Windows 64-bit systems
|
||||||
|
|
||||||
|
|
||||||
|
0.0.91
|
||||||
|
======
|
||||||
|
|
||||||
|
[1] Added documentation to .deb packages
|
||||||
|
|
||||||
|
[2] 2968313: Fixed data corruption issues when decompressing large JPEG images
|
||||||
|
and/or using buffered I/O with the libjpeg-turbo decompressor
|
||||||
|
|
||||||
|
|
||||||
|
0.0.90
|
||||||
|
======
|
||||||
|
|
||||||
|
Initial release
|
331
library/deps/libjpeg-turbo/Makefile.am
Normal file
|
@ -0,0 +1,331 @@
|
||||||
|
lib_LTLIBRARIES = libjpeg.la libturbojpeg.la
|
||||||
|
libjpeg_la_LDFLAGS = -version-info ${SO_MAJOR_VERSION}:${SO_MINOR_VERSION} -no-undefined
|
||||||
|
libturbojpeg_la_LDFLAGS = -avoid-version -no-undefined
|
||||||
|
include_HEADERS = jerror.h jmorecfg.h jpeglib.h turbojpeg.h
|
||||||
|
nodist_include_HEADERS = jconfig.h
|
||||||
|
|
||||||
|
HDRS = jchuff.h jdct.h jdhuff.h jerror.h jinclude.h jmemsys.h jmorecfg.h \
|
||||||
|
jpegint.h jpeglib.h jversion.h jsimd.h jsimddct.h jpegcomp.h
|
||||||
|
|
||||||
|
libjpeg_la_SOURCES = $(HDRS) jcapimin.c jcapistd.c jccoefct.c jccolor.c \
|
||||||
|
jcdctmgr.c jchuff.c jcinit.c jcmainct.c jcmarker.c jcmaster.c \
|
||||||
|
jcomapi.c jcparam.c jcphuff.c jcprepct.c jcsample.c jctrans.c \
|
||||||
|
jdapimin.c jdapistd.c jdatadst.c jdatasrc.c jdcoefct.c jdcolor.c \
|
||||||
|
jddctmgr.c jdhuff.c jdinput.c jdmainct.c jdmarker.c jdmaster.c \
|
||||||
|
jdmerge.c jdphuff.c jdpostct.c jdsample.c jdtrans.c jerror.c \
|
||||||
|
jfdctflt.c jfdctfst.c jfdctint.c jidctflt.c jidctfst.c jidctint.c \
|
||||||
|
jidctred.c jquant1.c jquant2.c jutils.c jmemmgr.c jmemnobs.c
|
||||||
|
|
||||||
|
if WITH_ARITH
|
||||||
|
|
||||||
|
libjpeg_la_SOURCES += jaricom.c
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
if WITH_ARITH_ENC
|
||||||
|
|
||||||
|
libjpeg_la_SOURCES += jcarith.c
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
if WITH_ARITH_DEC
|
||||||
|
|
||||||
|
libjpeg_la_SOURCES += jdarith.c
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
libturbojpeg_la_SOURCES = $(libjpeg_la_SOURCES) turbojpeg.c turbojpeg.h \
|
||||||
|
transupp.c transupp.h jdatadst-tj.c jdatasrc-tj.c
|
||||||
|
|
||||||
|
SUBDIRS = java
|
||||||
|
|
||||||
|
if WITH_JAVA
|
||||||
|
|
||||||
|
libturbojpeg_la_SOURCES += turbojpeg-jni.c
|
||||||
|
libturbojpeg_la_CFLAGS = ${JNI_CFLAGS}
|
||||||
|
TJMAPFILE = turbojpeg-mapfile.jni
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
TJMAPFILE = turbojpeg-mapfile
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
libturbojpeg_la_SOURCES += $(TJMAPFILE)
|
||||||
|
|
||||||
|
if VERSION_SCRIPT
|
||||||
|
|
||||||
|
libturbojpeg_la_LDFLAGS += $(VERSION_SCRIPT_FLAG)$(srcdir)/$(TJMAPFILE)
|
||||||
|
libjpeg_la_LDFLAGS += $(VERSION_SCRIPT_FLAG)libjpeg.map
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
if WITH_SIMD
|
||||||
|
|
||||||
|
SUBDIRS += simd
|
||||||
|
libjpeg_la_LIBADD = simd/libsimd.la
|
||||||
|
libturbojpeg_la_LIBADD = simd/libsimd.la
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
libjpeg_la_SOURCES += jsimd_none.c
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
bin_PROGRAMS = cjpeg djpeg jpegtran rdjpgcom wrjpgcom tjbench
|
||||||
|
noinst_PROGRAMS = tjunittest jcstest
|
||||||
|
|
||||||
|
tjbench_SOURCES = tjbench.c bmp.h bmp.c tjutil.h tjutil.c rdbmp.c rdppm.c \
|
||||||
|
wrbmp.c wrppm.c
|
||||||
|
|
||||||
|
tjbench_LDADD = libturbojpeg.la libjpeg.la -lm
|
||||||
|
|
||||||
|
tjbench_CFLAGS = -DBMP_SUPPORTED -DPPM_SUPPORTED
|
||||||
|
|
||||||
|
tjunittest_SOURCES = tjunittest.c tjutil.h tjutil.c
|
||||||
|
|
||||||
|
tjunittest_LDADD = libturbojpeg.la
|
||||||
|
|
||||||
|
cjpeg_SOURCES = cdjpeg.h cderror.h cdjpeg.c cjpeg.c rdbmp.c rdgif.c \
|
||||||
|
rdppm.c rdswitch.c rdtarga.c
|
||||||
|
|
||||||
|
cjpeg_LDADD = libjpeg.la
|
||||||
|
|
||||||
|
cjpeg_CFLAGS = -DBMP_SUPPORTED -DGIF_SUPPORTED -DPPM_SUPPORTED \
|
||||||
|
-DTARGA_SUPPORTED
|
||||||
|
|
||||||
|
djpeg_SOURCES = cdjpeg.h cderror.h cdjpeg.c djpeg.c rdcolmap.c rdswitch.c \
|
||||||
|
wrbmp.c wrgif.c wrppm.c wrtarga.c
|
||||||
|
|
||||||
|
djpeg_LDADD = libjpeg.la
|
||||||
|
|
||||||
|
djpeg_CFLAGS = -DBMP_SUPPORTED -DGIF_SUPPORTED -DPPM_SUPPORTED \
|
||||||
|
-DTARGA_SUPPORTED
|
||||||
|
|
||||||
|
jpegtran_SOURCES = jpegtran.c rdswitch.c cdjpeg.c transupp.c transupp.h
|
||||||
|
|
||||||
|
jpegtran_LDADD = libjpeg.la
|
||||||
|
|
||||||
|
rdjpgcom_SOURCES = rdjpgcom.c
|
||||||
|
|
||||||
|
rdjpgcom_LDADD = libjpeg.la
|
||||||
|
|
||||||
|
wrjpgcom_SOURCES = wrjpgcom.c
|
||||||
|
|
||||||
|
wrjpgcom_LDADD = libjpeg.la
|
||||||
|
|
||||||
|
jcstest_SOURCES = jcstest.c
|
||||||
|
|
||||||
|
jcstest_LDADD = libjpeg.la
|
||||||
|
|
||||||
|
dist_man1_MANS = cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 wrjpgcom.1
|
||||||
|
|
||||||
|
DOCS= install.txt coderules.txt filelist.txt jconfig.txt change.log \
|
||||||
|
rdrle.c wrrle.c BUILDING.txt ChangeLog.txt
|
||||||
|
|
||||||
|
docdir = $(datadir)/doc
|
||||||
|
dist_doc_DATA = README README-turbo.txt libjpeg.txt structure.txt usage.txt \
|
||||||
|
wizard.txt
|
||||||
|
|
||||||
|
exampledir = $(datadir)/doc
|
||||||
|
dist_example_DATA = example.c
|
||||||
|
|
||||||
|
|
||||||
|
EXTRA_DIST = win release $(DOCS) testimages CMakeLists.txt \
|
||||||
|
sharedlib/CMakeLists.txt cmakescripts libjpeg.map.in doc doxygen.config \
|
||||||
|
jccolext.c jdcolext.c jdmrgext.c
|
||||||
|
|
||||||
|
dist-hook:
|
||||||
|
rm -rf `find $(distdir) -name .svn`
|
||||||
|
|
||||||
|
|
||||||
|
test: testclean all
|
||||||
|
if WITH_JAVA
|
||||||
|
$(JAVA) -cp java/turbojpeg.jar -Djava.library.path=.libs TJUnitTest
|
||||||
|
$(JAVA) -cp java/turbojpeg.jar -Djava.library.path=.libs TJUnitTest -bi
|
||||||
|
$(JAVA) -cp java/turbojpeg.jar -Djava.library.path=.libs TJUnitTest -yuv
|
||||||
|
$(JAVA) -cp java/turbojpeg.jar -Djava.library.path=.libs TJUnitTest -yuv -bi
|
||||||
|
endif
|
||||||
|
./tjunittest
|
||||||
|
./tjunittest -alloc
|
||||||
|
./tjunittest -yuv
|
||||||
|
./cjpeg -dct int -outfile testoutint.jpg $(srcdir)/testimages/testorig.ppm
|
||||||
|
cmp $(srcdir)/testimages/testimgint.jpg testoutint.jpg
|
||||||
|
./cjpeg -dct fast -opt -outfile testoutfst.jpg $(srcdir)/testimages/testorig.ppm
|
||||||
|
cmp $(srcdir)/testimages/testimgfst.jpg testoutfst.jpg
|
||||||
|
./cjpeg -dct fast -quality 100 -opt -outfile testoutfst100.jpg $(srcdir)/testimages/testorig.ppm
|
||||||
|
cmp $(srcdir)/testimages/testimgfst100.jpg testoutfst100.jpg
|
||||||
|
./cjpeg -dct float -outfile testoutflt.jpg $(srcdir)/testimages/testorig.ppm
|
||||||
|
if WITH_SSE_FLOAT_DCT
|
||||||
|
cmp $(srcdir)/testimages/testimgflt.jpg testoutflt.jpg
|
||||||
|
else
|
||||||
|
cmp $(srcdir)/testimages/testimgflt-nosimd.jpg testoutflt.jpg
|
||||||
|
endif
|
||||||
|
./cjpeg -dct int -grayscale -outfile testoutgray.jpg $(srcdir)/testimages/testorig.ppm
|
||||||
|
cmp $(srcdir)/testimages/testimggray.jpg testoutgray.jpg
|
||||||
|
./djpeg -dct int -fast -ppm -outfile testoutint.ppm $(srcdir)/testimages/testorig.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimgint.ppm testoutint.ppm
|
||||||
|
./djpeg -dct fast -ppm -outfile testoutfst.ppm $(srcdir)/testimages/testorig.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimgfst.ppm testoutfst.ppm
|
||||||
|
./djpeg -dct float -ppm -outfile testoutflt.ppm $(srcdir)/testimages/testorig.jpg
|
||||||
|
if WITH_SSE_FLOAT_DCT
|
||||||
|
cmp $(srcdir)/testimages/testimgflt.ppm testoutflt.ppm
|
||||||
|
else
|
||||||
|
cmp $(srcdir)/testimages/testorig.ppm testoutflt.ppm
|
||||||
|
endif
|
||||||
|
./djpeg -dct int -scale 1/2 -ppm -outfile testoutint1_2.ppm $(srcdir)/testimages/testorig.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimgint1_2.ppm testoutint1_2.ppm
|
||||||
|
./djpeg -dct fast -scale 1/2 -ppm -outfile testoutfst1_2.ppm $(srcdir)/testimages/testorig.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimgfst1_2.ppm testoutfst1_2.ppm
|
||||||
|
./djpeg -dct int -scale 1/4 -ppm -outfile testoutint1_4.ppm $(srcdir)/testimages/testorig.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimgint1_4.ppm testoutint1_4.ppm
|
||||||
|
./djpeg -dct fast -scale 1/4 -ppm -outfile testoutfst1_4.ppm $(srcdir)/testimages/testorig.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimgfst1_4.ppm testoutfst1_4.ppm
|
||||||
|
./djpeg -dct int -scale 1/8 -ppm -outfile testoutint1_8.ppm $(srcdir)/testimages/testorig.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimgint1_8.ppm testoutint1_8.ppm
|
||||||
|
./djpeg -dct fast -scale 1/8 -ppm -outfile testoutfst1_8.ppm $(srcdir)/testimages/testorig.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimgfst1_8.ppm testoutfst1_8.ppm
|
||||||
|
./djpeg -dct int -bmp -colors 256 -outfile testout.bmp $(srcdir)/testimages/testorig.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimg.bmp testout.bmp
|
||||||
|
if WITH_ARITH_ENC
|
||||||
|
./cjpeg -dct int -arithmetic -outfile testoutari.jpg $(srcdir)/testimages/testorig.ppm
|
||||||
|
cmp $(srcdir)/testimages/testimgari.jpg testoutari.jpg
|
||||||
|
./jpegtran -arithmetic -outfile testouta.jpg $(srcdir)/testimages/testimgint.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimgari.jpg testouta.jpg
|
||||||
|
endif
|
||||||
|
if WITH_ARITH_DEC
|
||||||
|
./djpeg -dct int -fast -ppm -outfile testoutari.ppm $(srcdir)/testimages/testimgari.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimgari.ppm testoutari.ppm
|
||||||
|
./jpegtran -outfile testouta.jpg $(srcdir)/testimages/testimgari.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimgint.jpg testouta.jpg
|
||||||
|
endif
|
||||||
|
./cjpeg -dct int -progressive -outfile testoutp.jpg $(srcdir)/testimages/testorig.ppm
|
||||||
|
cmp $(srcdir)/testimages/testimgp.jpg testoutp.jpg
|
||||||
|
./jpegtran -outfile testoutt.jpg testoutp.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimgint.jpg testoutt.jpg
|
||||||
|
./jpegtran -crop 120x90+20+50 -transpose -perfect -outfile testoutcrop.jpg $(srcdir)/testimages/testorig.jpg
|
||||||
|
cmp $(srcdir)/testimages/testimgcrop.jpg testoutcrop.jpg
|
||||||
|
|
||||||
|
|
||||||
|
testclean:
|
||||||
|
rm -f testout*
|
||||||
|
rm -f *_GRAY_*.bmp
|
||||||
|
rm -f *_GRAY_*.png
|
||||||
|
rm -f *_GRAY_*.ppm
|
||||||
|
rm -f *_GRAY_*.jpg
|
||||||
|
rm -f *_GRAY.yuv
|
||||||
|
rm -f *_420_*.bmp
|
||||||
|
rm -f *_420_*.png
|
||||||
|
rm -f *_420_*.ppm
|
||||||
|
rm -f *_420_*.jpg
|
||||||
|
rm -f *_420.yuv
|
||||||
|
rm -f *_422_*.bmp
|
||||||
|
rm -f *_422_*.png
|
||||||
|
rm -f *_422_*.ppm
|
||||||
|
rm -f *_422_*.jpg
|
||||||
|
rm -f *_422.yuv
|
||||||
|
rm -f *_444_*.bmp
|
||||||
|
rm -f *_444_*.png
|
||||||
|
rm -f *_444_*.ppm
|
||||||
|
rm -f *_444_*.jpg
|
||||||
|
rm -f *_444.yuv
|
||||||
|
rm -f *_440_*.bmp
|
||||||
|
rm -f *_440_*.png
|
||||||
|
rm -f *_440_*.ppm
|
||||||
|
rm -f *_440_*.jpg
|
||||||
|
rm -f *_440.yuv
|
||||||
|
|
||||||
|
|
||||||
|
tjtest:
|
||||||
|
sh ./tjbenchtest
|
||||||
|
if WITH_JAVA
|
||||||
|
sh ./tjexampletest
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
if X86_64
|
||||||
|
|
||||||
|
install-exec-hook:
|
||||||
|
__PREFIX=`echo ${prefix} | sed -e 's@\/*$$@@'`; \
|
||||||
|
if [ "$$__PREFIX" = "/opt/libjpeg-turbo" ]; then \
|
||||||
|
cd $(DESTDIR)/${prefix}; \
|
||||||
|
if [ -d lib -a ! -d lib64 -a ! -h lib64 ]; then \
|
||||||
|
$(LN_S) lib lib64; \
|
||||||
|
fi \
|
||||||
|
fi
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
install-exec-hook:
|
||||||
|
__PREFIX=`echo ${prefix} | sed -e 's@\/*$$@@'`; \
|
||||||
|
if [ "$$__PREFIX" = "/opt/libjpeg-turbo" ]; then \
|
||||||
|
cd $(DESTDIR)/${prefix}; \
|
||||||
|
if [ -d lib -a ! -d lib32 -a ! -h lib32 ]; then \
|
||||||
|
$(LN_S) lib lib32; \
|
||||||
|
fi \
|
||||||
|
fi
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
rpm: all
|
||||||
|
TMPDIR=`mktemp -d /tmp/${PACKAGE_NAME}-build.XXXXXX`; \
|
||||||
|
mkdir -p $$TMPDIR/RPMS; \
|
||||||
|
ln -fs `pwd` $$TMPDIR/BUILD; \
|
||||||
|
rm -f ${PACKAGE_NAME}-${VERSION}.${RPMARCH}.rpm; \
|
||||||
|
rpmbuild -bb --define "_blddir $$TMPDIR/buildroot" \
|
||||||
|
--define "_topdir $$TMPDIR" \
|
||||||
|
--target ${RPMARCH} pkgscripts/libjpeg-turbo.spec; \
|
||||||
|
cp $$TMPDIR/RPMS/${RPMARCH}/${PACKAGE_NAME}-${VERSION}-${BUILD}.${RPMARCH}.rpm \
|
||||||
|
${PACKAGE_NAME}-${VERSION}.${RPMARCH}.rpm; \
|
||||||
|
rm -rf $$TMPDIR
|
||||||
|
|
||||||
|
srpm: dist-gzip
|
||||||
|
TMPDIR=`mktemp -d /tmp/${PACKAGE_NAME}-build.XXXXXX`; \
|
||||||
|
mkdir -p $$TMPDIR/RPMS; \
|
||||||
|
mkdir -p $$TMPDIR/SRPMS; \
|
||||||
|
mkdir -p $$TMPDIR/BUILD; \
|
||||||
|
mkdir -p $$TMPDIR/SOURCES; \
|
||||||
|
mkdir -p $$TMPDIR/SPECS; \
|
||||||
|
rm -f ${PACKAGE_NAME}-${VERSION}.src.rpm; \
|
||||||
|
cp ${PACKAGE_NAME}-${VERSION}.tar.gz $$TMPDIR/SOURCES; \
|
||||||
|
cat pkgscripts/libjpeg-turbo.spec | sed s/%{_blddir}/%{_tmppath}/g \
|
||||||
|
| sed s/#--\>//g \
|
||||||
|
> $$TMPDIR/SPECS/libjpeg-turbo.spec; \
|
||||||
|
rpmbuild -bs --define "_topdir $$TMPDIR" $$TMPDIR/SPECS/libjpeg-turbo.spec; \
|
||||||
|
cp $$TMPDIR/SRPMS/${PACKAGE_NAME}-${VERSION}-${BUILD}.src.rpm \
|
||||||
|
${PACKAGE_NAME}-${VERSION}.src.rpm; \
|
||||||
|
rm -rf $$TMPDIR
|
||||||
|
|
||||||
|
deb: all
|
||||||
|
sh pkgscripts/makedpkg
|
||||||
|
|
||||||
|
if X86_64
|
||||||
|
|
||||||
|
udmg: all
|
||||||
|
sh pkgscripts/makemacpkg -builddir32 ${BUILDDIR32}
|
||||||
|
|
||||||
|
iosdmg: all
|
||||||
|
sh pkgscripts/makemacpkg -builddir32 ${BUILDDIR32} -builddirarmv6 ${BUILDDIRARMV6} -builddirarmv7 ${BUILDDIRARMV7}
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
iosdmg: all
|
||||||
|
sh pkgscripts/makemacpkg -builddirarmv6 ${BUILDDIRARMV6} -builddirarmv7 ${BUILDDIRARMV7}
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
dmg: all
|
||||||
|
sh pkgscripts/makemacpkg
|
||||||
|
|
||||||
|
if X86_64
|
||||||
|
|
||||||
|
csunpkg: all
|
||||||
|
sh pkgscripts/makesunpkg combined ${BUILDDIR32}
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
sunpkg: all
|
||||||
|
sh pkgscripts/makesunpkg
|
||||||
|
|
||||||
|
cygwinpkg: all
|
||||||
|
sh pkgscripts/makecygwinpkg
|
2187
library/deps/libjpeg-turbo/Makefile.in
Normal file
290
library/deps/libjpeg-turbo/README
Normal file
|
@ -0,0 +1,290 @@
|
||||||
|
libjpeg-turbo note: This file contains portions of the libjpeg v6b and v8
|
||||||
|
README files, with additional wordsmithing by The libjpeg-turbo Project.
|
||||||
|
It is included only for reference, as some parts of it may not apply to
|
||||||
|
libjpeg-turbo. Please see README-turbo.txt for information specific to
|
||||||
|
libjpeg-turbo.
|
||||||
|
|
||||||
|
|
||||||
|
The Independent JPEG Group's JPEG software
|
||||||
|
==========================================
|
||||||
|
|
||||||
|
This distribution contains a release of the Independent JPEG Group's free JPEG
|
||||||
|
software. You are welcome to redistribute this software and to use it for any
|
||||||
|
purpose, subject to the conditions under LEGAL ISSUES, below.
|
||||||
|
|
||||||
|
This software is the work of Tom Lane, Guido Vollbeding, Philip Gladstone,
|
||||||
|
Bill Allombert, Jim Boucher, Lee Crocker, Bob Friesenhahn, Ben Jackson,
|
||||||
|
Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, Ge' Weijers,
|
||||||
|
and other members of the Independent JPEG Group.
|
||||||
|
|
||||||
|
IJG is not affiliated with the official ISO JPEG standards committee.
|
||||||
|
|
||||||
|
|
||||||
|
DOCUMENTATION ROADMAP
|
||||||
|
=====================
|
||||||
|
|
||||||
|
This file contains the following sections:
|
||||||
|
|
||||||
|
OVERVIEW General description of JPEG and the IJG software.
|
||||||
|
LEGAL ISSUES Copyright, lack of warranty, terms of distribution.
|
||||||
|
REFERENCES Where to learn more about JPEG.
|
||||||
|
ARCHIVE LOCATIONS Where to find newer versions of this software.
|
||||||
|
FILE FORMAT WARS Software *not* to get.
|
||||||
|
TO DO Plans for future IJG releases.
|
||||||
|
|
||||||
|
Other documentation files in the distribution are:
|
||||||
|
|
||||||
|
User documentation:
|
||||||
|
install.txt How to configure and install the IJG software.
|
||||||
|
usage.txt Usage instructions for cjpeg, djpeg, jpegtran,
|
||||||
|
rdjpgcom, and wrjpgcom.
|
||||||
|
*.1 Unix-style man pages for programs (same info as usage.txt).
|
||||||
|
wizard.txt Advanced usage instructions for JPEG wizards only.
|
||||||
|
change.log Version-to-version change highlights.
|
||||||
|
Programmer and internal documentation:
|
||||||
|
libjpeg.txt How to use the JPEG library in your own programs.
|
||||||
|
example.c Sample code for calling the JPEG library.
|
||||||
|
structure.txt Overview of the JPEG library's internal structure.
|
||||||
|
filelist.txt Road map of IJG files.
|
||||||
|
coderules.txt Coding style rules --- please read if you contribute code.
|
||||||
|
|
||||||
|
Please read at least the files install.txt and usage.txt. Some information
|
||||||
|
can also be found in the JPEG FAQ (Frequently Asked Questions) article. See
|
||||||
|
ARCHIVE LOCATIONS below to find out where to obtain the FAQ article.
|
||||||
|
|
||||||
|
If you want to understand how the JPEG code works, we suggest reading one or
|
||||||
|
more of the REFERENCES, then looking at the documentation files (in roughly
|
||||||
|
the order listed) before diving into the code.
|
||||||
|
|
||||||
|
|
||||||
|
OVERVIEW
|
||||||
|
========
|
||||||
|
|
||||||
|
This package contains C software to implement JPEG image encoding, decoding,
|
||||||
|
and transcoding. JPEG (pronounced "jay-peg") is a standardized compression
|
||||||
|
method for full-color and gray-scale images. JPEG's strong suit is compressing
|
||||||
|
photographic images or other types of images that have smooth color and
|
||||||
|
brightness transitions between neighboring pixels. Images with sharp lines or
|
||||||
|
other abrupt features may not compress well with JPEG, and a higher JPEG
|
||||||
|
quality may have to be used to avoid visible compression artifacts with such
|
||||||
|
images.
|
||||||
|
|
||||||
|
JPEG is lossy, meaning that the output pixels are not necessarily identical to
|
||||||
|
the input pixels. However, on photographic content and other "smooth" images,
|
||||||
|
very good compression ratios can be obtained with no visible compression
|
||||||
|
artifacts, and extremely high compression ratios are possible if you are
|
||||||
|
willing to sacrifice image quality (by reducing the "quality" setting in the
|
||||||
|
compressor.)
|
||||||
|
|
||||||
|
This software implements JPEG baseline, extended-sequential, and progressive
|
||||||
|
compression processes. Provision is made for supporting all variants of these
|
||||||
|
processes, although some uncommon parameter settings aren't implemented yet.
|
||||||
|
We have made no provision for supporting the hierarchical or lossless
|
||||||
|
processes defined in the standard.
|
||||||
|
|
||||||
|
We provide a set of library routines for reading and writing JPEG image files,
|
||||||
|
plus two sample applications "cjpeg" and "djpeg", which use the library to
|
||||||
|
perform conversion between JPEG and some other popular image file formats.
|
||||||
|
The library is intended to be reused in other applications.
|
||||||
|
|
||||||
|
In order to support file conversion and viewing software, we have included
|
||||||
|
considerable functionality beyond the bare JPEG coding/decoding capability;
|
||||||
|
for example, the color quantization modules are not strictly part of JPEG
|
||||||
|
decoding, but they are essential for output to colormapped file formats or
|
||||||
|
colormapped displays. These extra functions can be compiled out of the
|
||||||
|
library if not required for a particular application.
|
||||||
|
|
||||||
|
We have also included "jpegtran", a utility for lossless transcoding between
|
||||||
|
different JPEG processes, and "rdjpgcom" and "wrjpgcom", two simple
|
||||||
|
applications for inserting and extracting textual comments in JFIF files.
|
||||||
|
|
||||||
|
The emphasis in designing this software has been on achieving portability and
|
||||||
|
flexibility, while also making it fast enough to be useful. In particular,
|
||||||
|
the software is not intended to be read as a tutorial on JPEG. (See the
|
||||||
|
REFERENCES section for introductory material.) Rather, it is intended to
|
||||||
|
be reliable, portable, industrial-strength code. We do not claim to have
|
||||||
|
achieved that goal in every aspect of the software, but we strive for it.
|
||||||
|
|
||||||
|
We welcome the use of this software as a component of commercial products.
|
||||||
|
No royalty is required, but we do ask for an acknowledgement in product
|
||||||
|
documentation, as described under LEGAL ISSUES.
|
||||||
|
|
||||||
|
|
||||||
|
LEGAL ISSUES
|
||||||
|
============
|
||||||
|
|
||||||
|
In plain English:
|
||||||
|
|
||||||
|
1. We don't promise that this software works. (But if you find any bugs,
|
||||||
|
please let us know!)
|
||||||
|
2. You can use this software for whatever you want. You don't have to pay us.
|
||||||
|
3. You may not pretend that you wrote this software. If you use it in a
|
||||||
|
program, you must acknowledge somewhere in your documentation that
|
||||||
|
you've used the IJG code.
|
||||||
|
|
||||||
|
In legalese:
|
||||||
|
|
||||||
|
The authors make NO WARRANTY or representation, either express or implied,
|
||||||
|
with respect to this software, its quality, accuracy, merchantability, or
|
||||||
|
fitness for a particular purpose. This software is provided "AS IS", and you,
|
||||||
|
its user, assume the entire risk as to its quality and accuracy.
|
||||||
|
|
||||||
|
This software is copyright (C) 1991-2010, Thomas G. Lane, Guido Vollbeding.
|
||||||
|
All Rights Reserved except as specified below.
|
||||||
|
|
||||||
|
Permission is hereby granted to use, copy, modify, and distribute this
|
||||||
|
software (or portions thereof) for any purpose, without fee, subject to these
|
||||||
|
conditions:
|
||||||
|
(1) If any part of the source code for this software is distributed, then this
|
||||||
|
README file must be included, with this copyright and no-warranty notice
|
||||||
|
unaltered; and any additions, deletions, or changes to the original files
|
||||||
|
must be clearly indicated in accompanying documentation.
|
||||||
|
(2) If only executable code is distributed, then the accompanying
|
||||||
|
documentation must state that "this software is based in part on the work of
|
||||||
|
the Independent JPEG Group".
|
||||||
|
(3) Permission for use of this software is granted only if the user accepts
|
||||||
|
full responsibility for any undesirable consequences; the authors accept
|
||||||
|
NO LIABILITY for damages of any kind.
|
||||||
|
|
||||||
|
These conditions apply to any software derived from or based on the IJG code,
|
||||||
|
not just to the unmodified library. If you use our work, you ought to
|
||||||
|
acknowledge us.
|
||||||
|
|
||||||
|
Permission is NOT granted for the use of any IJG author's name or company name
|
||||||
|
in advertising or publicity relating to this software or products derived from
|
||||||
|
it. This software may be referred to only as "the Independent JPEG Group's
|
||||||
|
software".
|
||||||
|
|
||||||
|
We specifically permit and encourage the use of this software as the basis of
|
||||||
|
commercial products, provided that all warranty or liability claims are
|
||||||
|
assumed by the product vendor.
|
||||||
|
|
||||||
|
|
||||||
|
ansi2knr.c is included in this distribution by permission of L. Peter Deutsch,
|
||||||
|
sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA.
|
||||||
|
ansi2knr.c is NOT covered by the above copyright and conditions, but instead
|
||||||
|
by the usual distribution terms of the Free Software Foundation; principally,
|
||||||
|
that you must include source code if you redistribute it. (See the file
|
||||||
|
ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part
|
||||||
|
of any program generated from the IJG code, this does not limit you more than
|
||||||
|
the foregoing paragraphs do.
|
||||||
|
|
||||||
|
The Unix configuration script "configure" was produced with GNU Autoconf.
|
||||||
|
It is copyright by the Free Software Foundation but is freely distributable.
|
||||||
|
The same holds for its supporting scripts (config.guess, config.sub,
|
||||||
|
ltmain.sh). Another support script, install-sh, is copyright by X Consortium
|
||||||
|
but is also freely distributable.
|
||||||
|
|
||||||
|
The IJG distribution formerly included code to read and write GIF files.
|
||||||
|
To avoid entanglement with the Unisys LZW patent, GIF reading support has
|
||||||
|
been removed altogether, and the GIF writer has been simplified to produce
|
||||||
|
"uncompressed GIFs". This technique does not use the LZW algorithm; the
|
||||||
|
resulting GIF files are larger than usual, but are readable by all standard
|
||||||
|
GIF decoders.
|
||||||
|
|
||||||
|
We are required to state that
|
||||||
|
"The Graphics Interchange Format(c) is the Copyright property of
|
||||||
|
CompuServe Incorporated. GIF(sm) is a Service Mark property of
|
||||||
|
CompuServe Incorporated."
|
||||||
|
|
||||||
|
|
||||||
|
REFERENCES
|
||||||
|
==========
|
||||||
|
|
||||||
|
We recommend reading one or more of these references before trying to
|
||||||
|
understand the innards of the JPEG software.
|
||||||
|
|
||||||
|
The best short technical introduction to the JPEG compression algorithm is
|
||||||
|
Wallace, Gregory K. "The JPEG Still Picture Compression Standard",
|
||||||
|
Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44.
|
||||||
|
(Adjacent articles in that issue discuss MPEG motion picture compression,
|
||||||
|
applications of JPEG, and related topics.) If you don't have the CACM issue
|
||||||
|
handy, a PostScript file containing a revised version of Wallace's article is
|
||||||
|
available at http://www.ijg.org/files/wallace.ps.gz. The file (actually
|
||||||
|
a preprint for an article that appeared in IEEE Trans. Consumer Electronics)
|
||||||
|
omits the sample images that appeared in CACM, but it includes corrections
|
||||||
|
and some added material. Note: the Wallace article is copyright ACM and IEEE,
|
||||||
|
and it may not be used for commercial purposes.
|
||||||
|
|
||||||
|
A somewhat less technical, more leisurely introduction to JPEG can be found in
|
||||||
|
"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by
|
||||||
|
M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides
|
||||||
|
good explanations and example C code for a multitude of compression methods
|
||||||
|
including JPEG. It is an excellent source if you are comfortable reading C
|
||||||
|
code but don't know much about data compression in general. The book's JPEG
|
||||||
|
sample code is far from industrial-strength, but when you are ready to look
|
||||||
|
at a full implementation, you've got one here...
|
||||||
|
|
||||||
|
The best currently available description of JPEG is the textbook "JPEG Still
|
||||||
|
Image Data Compression Standard" by William B. Pennebaker and Joan L.
|
||||||
|
Mitchell, published by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1.
|
||||||
|
Price US$59.95, 638 pp. The book includes the complete text of the ISO JPEG
|
||||||
|
standards (DIS 10918-1 and draft DIS 10918-2).
|
||||||
|
|
||||||
|
The original JPEG standard is divided into two parts, Part 1 being the actual
|
||||||
|
specification, while Part 2 covers compliance testing methods. Part 1 is
|
||||||
|
titled "Digital Compression and Coding of Continuous-tone Still Images,
|
||||||
|
Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS
|
||||||
|
10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of
|
||||||
|
Continuous-tone Still Images, Part 2: Compliance testing" and has document
|
||||||
|
numbers ISO/IEC IS 10918-2, ITU-T T.83.
|
||||||
|
|
||||||
|
The JPEG standard does not specify all details of an interchangeable file
|
||||||
|
format. For the omitted details we follow the "JFIF" conventions, revision
|
||||||
|
1.02. JFIF 1.02 has been adopted as an Ecma International Technical Report
|
||||||
|
and thus received a formal publication status. It is available as a free
|
||||||
|
download in PDF format from
|
||||||
|
http://www.ecma-international.org/publications/techreports/E-TR-098.htm.
|
||||||
|
A PostScript version of the JFIF document is available at
|
||||||
|
http://www.ijg.org/files/jfif.ps.gz. There is also a plain text version at
|
||||||
|
http://www.ijg.org/files/jfif.txt.gz, but it is missing the figures.
|
||||||
|
|
||||||
|
The TIFF 6.0 file format specification can be obtained by FTP from
|
||||||
|
ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation scheme
|
||||||
|
found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems.
|
||||||
|
IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6).
|
||||||
|
Instead, we recommend the JPEG design proposed by TIFF Technical Note #2
|
||||||
|
(Compression tag 7). Copies of this Note can be obtained from
|
||||||
|
http://www.ijg.org/files/. It is expected that the next revision
|
||||||
|
of the TIFF spec will replace the 6.0 JPEG design with the Note's design.
|
||||||
|
Although IJG's own code does not support TIFF/JPEG, the free libtiff library
|
||||||
|
uses our library to implement TIFF/JPEG per the Note.
|
||||||
|
|
||||||
|
|
||||||
|
ARCHIVE LOCATIONS
|
||||||
|
=================
|
||||||
|
|
||||||
|
The "official" archive site for this software is www.ijg.org.
|
||||||
|
The most recent released version can always be found there in
|
||||||
|
directory "files". This particular version will be archived as
|
||||||
|
http://www.ijg.org/files/jpegsrc.v8d.tar.gz, and in Windows-compatible
|
||||||
|
"zip" archive format as http://www.ijg.org/files/jpegsr8d.zip.
|
||||||
|
|
||||||
|
The JPEG FAQ (Frequently Asked Questions) article is a source of some
|
||||||
|
general information about JPEG.
|
||||||
|
It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq/
|
||||||
|
and other news.answers archive sites, including the official news.answers
|
||||||
|
archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/.
|
||||||
|
If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu
|
||||||
|
with body
|
||||||
|
send usenet/news.answers/jpeg-faq/part1
|
||||||
|
send usenet/news.answers/jpeg-faq/part2
|
||||||
|
|
||||||
|
|
||||||
|
FILE FORMAT WARS
|
||||||
|
================
|
||||||
|
|
||||||
|
The ISO JPEG standards committee actually promotes different formats like
|
||||||
|
"JPEG 2000" or "JPEG XR", which are incompatible with original DCT-based
|
||||||
|
JPEG. IJG therefore does not support these formats (see REFERENCES). Indeed,
|
||||||
|
one of the original reasons for developing this free software was to help
|
||||||
|
force convergence on common, interoperable format standards for JPEG files.
|
||||||
|
Don't use an incompatible file format!
|
||||||
|
(In any case, our decoder will remain capable of reading existing JPEG
|
||||||
|
image files indefinitely.)
|
||||||
|
|
||||||
|
|
||||||
|
TO DO
|
||||||
|
=====
|
||||||
|
|
||||||
|
Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org.
|
361
library/deps/libjpeg-turbo/README-turbo.txt
Normal file
|
@ -0,0 +1,361 @@
|
||||||
|
*******************************************************************************
|
||||||
|
** Background
|
||||||
|
*******************************************************************************
|
||||||
|
|
||||||
|
libjpeg-turbo is a derivative of libjpeg that uses SIMD instructions (MMX,
|
||||||
|
SSE2, NEON) to accelerate baseline JPEG compression and decompression on x86,
|
||||||
|
x86-64, and ARM systems. On such systems, libjpeg-turbo is generally 2-4x as
|
||||||
|
fast as the unmodified version of libjpeg, all else being equal.
|
||||||
|
|
||||||
|
libjpeg-turbo was originally based on libjpeg/SIMD by Miyasaka Masaru, but
|
||||||
|
the TigerVNC and VirtualGL projects made numerous enhancements to the codec in
|
||||||
|
2009, including improved support for Mac OS X, 64-bit support, support for
|
||||||
|
32-bit and big-endian pixel formats (RGBX, XBGR, etc.), accelerated Huffman
|
||||||
|
encoding/decoding, and various bug fixes. The goal was to produce a fully
|
||||||
|
open-source codec that could replace the partially closed-source TurboJPEG/IPP
|
||||||
|
codec used by VirtualGL and TurboVNC. libjpeg-turbo generally achieves 80-120%
|
||||||
|
of the performance of TurboJPEG/IPP. It is faster in some areas but slower in
|
||||||
|
others.
|
||||||
|
|
||||||
|
In early 2010, libjpeg-turbo spun off into its own independent project, with
|
||||||
|
the goal of making high-speed JPEG compression/decompression technology
|
||||||
|
available to a broader range of users and developers.
|
||||||
|
|
||||||
|
|
||||||
|
*******************************************************************************
|
||||||
|
** License
|
||||||
|
*******************************************************************************
|
||||||
|
|
||||||
|
Most of libjpeg-turbo inherits the non-restrictive, BSD-style license used by
|
||||||
|
libjpeg (see README.) The TurboJPEG/OSS wrapper (both C and Java versions) and
|
||||||
|
associated test programs bear a similar license, which is reproduced below:
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
- Redistributions of source code must retain the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer.
|
||||||
|
- 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.
|
||||||
|
- Neither the name of the libjpeg-turbo Project nor the names of its
|
||||||
|
contributors may be used to endorse or promote products derived from this
|
||||||
|
software without specific prior written permission.
|
||||||
|
|
||||||
|
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 HOLDERS 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.
|
||||||
|
|
||||||
|
|
||||||
|
*******************************************************************************
|
||||||
|
** Using libjpeg-turbo
|
||||||
|
*******************************************************************************
|
||||||
|
|
||||||
|
libjpeg-turbo includes two APIs that can be used to compress and decompress
|
||||||
|
JPEG images:
|
||||||
|
|
||||||
|
TurboJPEG API: This API provides an easy-to-use interface for compressing
|
||||||
|
and decompressing JPEG images in memory. It also provides some functionality
|
||||||
|
that would not be straightforward to achieve using the underlying libjpeg
|
||||||
|
API, such as generating planar YUV images and performing multiple
|
||||||
|
simultaneous lossless transforms on an image. The Java interface for
|
||||||
|
libjpeg-turbo is written on top of the TurboJPEG API.
|
||||||
|
|
||||||
|
libjpeg API: This is the de facto industry-standard API for compressing and
|
||||||
|
decompressing JPEG images. It is more difficult to use than the TurboJPEG
|
||||||
|
API but also more powerful. libjpeg-turbo is both API/ABI-compatible and
|
||||||
|
mathematically compatible with libjpeg v6b. It can also optionally be
|
||||||
|
configured to be API/ABI-compatible with libjpeg v7 and v8 (see below.)
|
||||||
|
|
||||||
|
|
||||||
|
=============================
|
||||||
|
Replacing libjpeg at Run Time
|
||||||
|
=============================
|
||||||
|
|
||||||
|
If a Unix application is dynamically linked with libjpeg, then you can replace
|
||||||
|
libjpeg with libjpeg-turbo at run time by manipulating LD_LIBRARY_PATH.
|
||||||
|
For instance:
|
||||||
|
|
||||||
|
[Using libjpeg]
|
||||||
|
> time cjpeg <vgl_5674_0098.ppm >vgl_5674_0098.jpg
|
||||||
|
real 0m0.392s
|
||||||
|
user 0m0.074s
|
||||||
|
sys 0m0.020s
|
||||||
|
|
||||||
|
[Using libjpeg-turbo]
|
||||||
|
> export LD_LIBRARY_PATH=/opt/libjpeg-turbo/{lib}:$LD_LIBRARY_PATH
|
||||||
|
> time cjpeg <vgl_5674_0098.ppm >vgl_5674_0098.jpg
|
||||||
|
real 0m0.109s
|
||||||
|
user 0m0.029s
|
||||||
|
sys 0m0.010s
|
||||||
|
|
||||||
|
NOTE: {lib} can be lib, lib32, lib64, or lib/64, depending on the O/S and
|
||||||
|
architecture.
|
||||||
|
|
||||||
|
System administrators can also replace the libjpeg sym links in /usr/{lib} with
|
||||||
|
links to the libjpeg-turbo dynamic library located in /opt/libjpeg-turbo/{lib}.
|
||||||
|
This will effectively accelerate every application that uses the libjpeg
|
||||||
|
dynamic library on the system.
|
||||||
|
|
||||||
|
The libjpeg-turbo SDK for Visual C++ installs the libjpeg-turbo DLL
|
||||||
|
(jpeg62.dll, jpeg7.dll, or jpeg8.dll, depending on whether it was built with
|
||||||
|
libjpeg v6b, v7, or v8 emulation) into c:\libjpeg-turbo[64]\bin, and the PATH
|
||||||
|
environment variable can be modified such that this directory is searched
|
||||||
|
before any others that might contain a libjpeg DLL. However, if a libjpeg
|
||||||
|
DLL exists in an application's install directory, then Windows will load this
|
||||||
|
DLL first whenever the application is launched. Thus, if an application ships
|
||||||
|
with jpeg62.dll, jpeg7.dll, or jpeg8.dll, then back up the application's
|
||||||
|
version of this DLL and copy c:\libjpeg-turbo[64]\bin\jpeg*.dll into the
|
||||||
|
application's install directory to accelerate it.
|
||||||
|
|
||||||
|
The version of the libjpeg-turbo DLL distributed in the libjpeg-turbo SDK for
|
||||||
|
Visual C++ requires the Visual C++ 2008 C run-time DLL (msvcr90.dll).
|
||||||
|
msvcr90.dll ships with more recent versions of Windows, but users of older
|
||||||
|
Windows releases can obtain it from the Visual C++ 2008 Redistributable
|
||||||
|
Package, which is available as a free download from Microsoft's web site.
|
||||||
|
|
||||||
|
NOTE: Features of libjpeg that require passing a C run-time structure, such
|
||||||
|
as a file handle, from an application to libjpeg will probably not work with
|
||||||
|
the version of the libjpeg-turbo DLL distributed in the libjpeg-turbo SDK for
|
||||||
|
Visual C++, unless the application is also built to use the Visual C++ 2008 C
|
||||||
|
run-time DLL. In particular, this affects jpeg_stdio_dest() and
|
||||||
|
jpeg_stdio_src().
|
||||||
|
|
||||||
|
Mac applications typically embed their own copies of the libjpeg dylib inside
|
||||||
|
the (hidden) application bundle, so it is not possible to globally replace
|
||||||
|
libjpeg on OS X systems. If an application uses a shared library version of
|
||||||
|
libjpeg, then it may be possible to replace the application's version of it.
|
||||||
|
This would generally involve copying libjpeg.*.dylib from libjpeg-turbo into
|
||||||
|
the appropriate place in the application bundle and using install_name_tool to
|
||||||
|
repoint the dylib to the new directory. This requires an advanced knowledge of
|
||||||
|
OS X and would not survive an upgrade or a re-install of the application.
|
||||||
|
Thus, it is not recommended for most users.
|
||||||
|
|
||||||
|
=======================
|
||||||
|
Replacing TurboJPEG/IPP
|
||||||
|
=======================
|
||||||
|
|
||||||
|
libjpeg-turbo is a drop-in replacement for the TurboJPEG/IPP SDK used by
|
||||||
|
VirtualGL 2.1.x and TurboVNC 0.6 (and prior.) libjpeg-turbo contains a wrapper
|
||||||
|
library (TurboJPEG/OSS) that emulates the TurboJPEG API using libjpeg-turbo
|
||||||
|
instead of the closed-source Intel Performance Primitives. You can replace the
|
||||||
|
TurboJPEG/IPP package on Linux systems with the libjpeg-turbo package in order
|
||||||
|
to make existing releases of VirtualGL 2.1.x and TurboVNC 0.x use the new codec
|
||||||
|
at run time. Note that the 64-bit libjpeg-turbo packages contain only 64-bit
|
||||||
|
binaries, whereas the TurboJPEG/IPP 64-bit packages contained both 64-bit and
|
||||||
|
32-bit binaries. Thus, to replace a TurboJPEG/IPP 64-bit package, install
|
||||||
|
both the 64-bit and 32-bit versions of libjpeg-turbo.
|
||||||
|
|
||||||
|
You can also build the VirtualGL 2.1.x and TurboVNC 0.6 source code with
|
||||||
|
the libjpeg-turbo SDK instead of TurboJPEG/IPP. It should work identically.
|
||||||
|
libjpeg-turbo also includes static library versions of TurboJPEG/OSS, which
|
||||||
|
are used to build VirtualGL 2.2 and TurboVNC 1.0 and later.
|
||||||
|
|
||||||
|
========================================
|
||||||
|
Using libjpeg-turbo in Your Own Programs
|
||||||
|
========================================
|
||||||
|
|
||||||
|
For the most part, libjpeg-turbo should work identically to libjpeg, so in
|
||||||
|
most cases, an application can be built against libjpeg and then run against
|
||||||
|
libjpeg-turbo. On Unix systems (including Cygwin), you can build against
|
||||||
|
libjpeg-turbo instead of libjpeg by setting
|
||||||
|
|
||||||
|
CPATH=/opt/libjpeg-turbo/include
|
||||||
|
and
|
||||||
|
LIBRARY_PATH=/opt/libjpeg-turbo/{lib}
|
||||||
|
|
||||||
|
({lib} = lib32 or lib64, depending on whether you are building a 32-bit or a
|
||||||
|
64-bit application.)
|
||||||
|
|
||||||
|
If using MinGW, then set
|
||||||
|
|
||||||
|
CPATH=/c/libjpeg-turbo-gcc[64]/include
|
||||||
|
and
|
||||||
|
LIBRARY_PATH=/c/libjpeg-turbo-gcc[64]/lib
|
||||||
|
|
||||||
|
Building against libjpeg-turbo is useful, for instance, if you want to build an
|
||||||
|
application that leverages the libjpeg-turbo colorspace extensions (see below.)
|
||||||
|
On Linux and Solaris systems, you would still need to manipulate
|
||||||
|
LD_LIBRARY_PATH or create appropriate sym links to use libjpeg-turbo at run
|
||||||
|
time. On such systems, you can pass -R /opt/libjpeg-turbo/{lib} to the linker
|
||||||
|
to force the use of libjpeg-turbo at run time rather than libjpeg (also useful
|
||||||
|
if you want to leverage the colorspace extensions), or you can link against the
|
||||||
|
libjpeg-turbo static library.
|
||||||
|
|
||||||
|
To force a Linux, Solaris, or MinGW application to link against the static
|
||||||
|
version of libjpeg-turbo, you can use the following linker options:
|
||||||
|
|
||||||
|
-Wl,-Bstatic -ljpeg -Wl,-Bdynamic
|
||||||
|
|
||||||
|
On OS X, simply add /opt/libjpeg-turbo/lib/libjpeg.a to the linker command
|
||||||
|
line (this also works on Linux and Solaris.)
|
||||||
|
|
||||||
|
To build Visual C++ applications using libjpeg-turbo, add
|
||||||
|
c:\libjpeg-turbo[64]\include to the system or user INCLUDE environment
|
||||||
|
variable and c:\libjpeg-turbo[64]\lib to the system or user LIB environment
|
||||||
|
variable, and then link against either jpeg.lib (to use the DLL version of
|
||||||
|
libjpeg-turbo) or jpeg-static.lib (to use the static version of libjpeg-turbo.)
|
||||||
|
|
||||||
|
=====================
|
||||||
|
Colorspace Extensions
|
||||||
|
=====================
|
||||||
|
|
||||||
|
libjpeg-turbo includes extensions that allow JPEG images to be compressed
|
||||||
|
directly from (and decompressed directly to) buffers that use BGR, BGRX,
|
||||||
|
RGBX, XBGR, and XRGB pixel ordering. This is implemented with ten new
|
||||||
|
colorspace constants:
|
||||||
|
|
||||||
|
JCS_EXT_RGB /* red/green/blue */
|
||||||
|
JCS_EXT_RGBX /* red/green/blue/x */
|
||||||
|
JCS_EXT_BGR /* blue/green/red */
|
||||||
|
JCS_EXT_BGRX /* blue/green/red/x */
|
||||||
|
JCS_EXT_XBGR /* x/blue/green/red */
|
||||||
|
JCS_EXT_XRGB /* x/red/green/blue */
|
||||||
|
JCS_EXT_RGBA /* red/green/blue/alpha */
|
||||||
|
JCS_EXT_BGRA /* blue/green/red/alpha */
|
||||||
|
JCS_EXT_ABGR /* alpha/blue/green/red */
|
||||||
|
JCS_EXT_ARGB /* alpha/red/green/blue */
|
||||||
|
|
||||||
|
Setting cinfo.in_color_space (compression) or cinfo.out_color_space
|
||||||
|
(decompression) to one of these values will cause libjpeg-turbo to read the
|
||||||
|
red, green, and blue values from (or write them to) the appropriate position in
|
||||||
|
the pixel when compressing from/decompressing to an RGB buffer.
|
||||||
|
|
||||||
|
Your application can check for the existence of these extensions at compile
|
||||||
|
time with:
|
||||||
|
|
||||||
|
#ifdef JCS_EXTENSIONS
|
||||||
|
|
||||||
|
At run time, attempting to use these extensions with a version of libjpeg
|
||||||
|
that doesn't support them will result in a "Bogus input colorspace" error.
|
||||||
|
|
||||||
|
When using the RGBX, BGRX, XBGR, and XRGB colorspaces during decompression, the
|
||||||
|
X byte is undefined, and in order to ensure the best performance, libjpeg-turbo
|
||||||
|
can set that byte to whatever value it wishes. If an application expects the X
|
||||||
|
byte to be used as an alpha channel, then it should specify JCS_EXT_RGBA,
|
||||||
|
JCS_EXT_BGRA, JCS_EXT_ABGR, or JCS_EXT_ARGB. When these colorspace constants
|
||||||
|
are used, the X byte is guaranteed to be 0xFF, which is interpreted as opaque.
|
||||||
|
|
||||||
|
Your application can check for the existence of the alpha channel colorspace
|
||||||
|
extensions at compile time with:
|
||||||
|
|
||||||
|
#ifdef JCS_ALPHA_EXTENSIONS
|
||||||
|
|
||||||
|
jcstest.c, located in the libjpeg-turbo source tree, demonstrates how to check
|
||||||
|
for the existence of the colorspace extensions at compile time and run time.
|
||||||
|
|
||||||
|
=================================
|
||||||
|
libjpeg v7 and v8 API/ABI support
|
||||||
|
=================================
|
||||||
|
|
||||||
|
With libjpeg v7 and v8, new features were added that necessitated extending the
|
||||||
|
compression and decompression structures. Unfortunately, due to the exposed
|
||||||
|
nature of those structures, extending them also necessitated breaking backward
|
||||||
|
ABI compatibility with previous libjpeg releases. Thus, programs that are
|
||||||
|
built to use libjpeg v7 or v8 did not work with libjpeg-turbo, since it is
|
||||||
|
based on the libjpeg v6b code base. Although libjpeg v7 and v8 are still not
|
||||||
|
as widely used as v6b, enough programs (including a few Linux distros) have
|
||||||
|
made the switch that it was desirable to provide support for the libjpeg v7/v8
|
||||||
|
API/ABI in libjpeg-turbo. Although libjpeg-turbo can now be configured as a
|
||||||
|
drop-in replacement for libjpeg v7 or v8, it should be noted that not all of
|
||||||
|
the features in libjpeg v7 and v8 are supported (see below.)
|
||||||
|
|
||||||
|
By passing an argument of --with-jpeg7 or --with-jpeg8 to configure, or an
|
||||||
|
argument of -DWITH_JPEG7=1 or -DWITH_JPEG8=1 to cmake, you can build a version
|
||||||
|
of libjpeg-turbo that emulates the libjpeg v7 or v8 API/ABI, so that programs
|
||||||
|
that are built against libjpeg v7 or v8 can be run with libjpeg-turbo. The
|
||||||
|
following section describes which libjpeg v7+ features are supported and which
|
||||||
|
aren't.
|
||||||
|
|
||||||
|
libjpeg v7 and v8 Features:
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
Fully supported:
|
||||||
|
|
||||||
|
-- cjpeg: Separate quality settings for luminance and chrominance
|
||||||
|
Note that the libpjeg v7+ API was extended to accommodate this feature only
|
||||||
|
for convenience purposes. It has always been possible to implement this
|
||||||
|
feature with libjpeg v6b (see rdswitch.c for an example.)
|
||||||
|
|
||||||
|
-- cjpeg: 32-bit BMP support
|
||||||
|
|
||||||
|
-- jpegtran: lossless cropping
|
||||||
|
|
||||||
|
-- jpegtran: -perfect option
|
||||||
|
|
||||||
|
-- rdjpgcom: -raw option
|
||||||
|
|
||||||
|
-- rdjpgcom: locale awareness
|
||||||
|
|
||||||
|
|
||||||
|
Fully supported when using libjpeg v7/v8 emulation:
|
||||||
|
|
||||||
|
-- libjpeg: In-memory source and destination managers
|
||||||
|
|
||||||
|
|
||||||
|
Not supported:
|
||||||
|
|
||||||
|
-- libjpeg: DCT scaling in compressor
|
||||||
|
cinfo.scale_num and cinfo.scale_denom are silently ignored.
|
||||||
|
There is no technical reason why DCT scaling cannot be supported, but
|
||||||
|
without the SmartScale extension (see below), it would only be able to
|
||||||
|
down-scale using ratios of 1/2, 8/15, 4/7, 8/13, 2/3, 8/11, 4/5, and 8/9,
|
||||||
|
which is of limited usefulness.
|
||||||
|
|
||||||
|
-- libjpeg: SmartScale
|
||||||
|
cinfo.block_size is silently ignored.
|
||||||
|
SmartScale is an extension to the JPEG format that allows for DCT block
|
||||||
|
sizes other than 8x8. It would be difficult to support this feature while
|
||||||
|
retaining backward compatibility with libjpeg v6b.
|
||||||
|
|
||||||
|
-- libjpeg: IDCT scaling extensions in decompressor
|
||||||
|
libjpeg-turbo still supports IDCT scaling with scaling factors of 1/2, 1/4,
|
||||||
|
and 1/8 (same as libjpeg v6b.)
|
||||||
|
|
||||||
|
-- libjpeg: Fancy downsampling in compressor
|
||||||
|
cinfo.do_fancy_downsampling is silently ignored.
|
||||||
|
This requires the DCT scaling feature, which is not supported.
|
||||||
|
|
||||||
|
-- jpegtran: Scaling
|
||||||
|
This requires both the DCT scaling and SmartScale features, which are not
|
||||||
|
supported.
|
||||||
|
|
||||||
|
-- Lossless RGB JPEG files
|
||||||
|
This requires the SmartScale feature, which is not supported.
|
||||||
|
|
||||||
|
|
||||||
|
*******************************************************************************
|
||||||
|
** Performance pitfalls
|
||||||
|
*******************************************************************************
|
||||||
|
|
||||||
|
===============
|
||||||
|
Restart Markers
|
||||||
|
===============
|
||||||
|
|
||||||
|
The optimized Huffman decoder in libjpeg-turbo does not handle restart markers
|
||||||
|
in a way that makes the rest of the libjpeg infrastructure happy, so it is
|
||||||
|
necessary to use the slow Huffman decoder when decompressing a JPEG image that
|
||||||
|
has restart markers. This can cause the decompression performance to drop by
|
||||||
|
as much as 20%, but the performance will still be much greater than that of
|
||||||
|
libjpeg. Many consumer packages, such as PhotoShop, use restart markers when
|
||||||
|
generating JPEG images, so images generated by those programs will experience
|
||||||
|
this issue.
|
||||||
|
|
||||||
|
===============================================
|
||||||
|
Fast Integer Forward DCT at High Quality Levels
|
||||||
|
===============================================
|
||||||
|
|
||||||
|
The algorithm used by the SIMD-accelerated quantization function cannot produce
|
||||||
|
correct results whenever the fast integer forward DCT is used along with a JPEG
|
||||||
|
quality of 98-100. Thus, libjpeg-turbo must use the non-SIMD quantization
|
||||||
|
function in those cases. This causes performance to drop by as much as 40%.
|
||||||
|
It is therefore strongly advised that you use the slow integer forward DCT
|
||||||
|
whenever encoding images with a JPEG quality of 98 or higher.
|
182
library/deps/libjpeg-turbo/acinclude.m4
Normal file
|
@ -0,0 +1,182 @@
|
||||||
|
# AC_PROG_NASM
|
||||||
|
# --------------------------
|
||||||
|
# Check that NASM exists and determine flags
|
||||||
|
AC_DEFUN([AC_PROG_NASM],[
|
||||||
|
|
||||||
|
AC_CHECK_PROGS(NASM, [nasm nasmw yasm])
|
||||||
|
test -z "$NASM" && AC_MSG_ERROR([no nasm (Netwide Assembler) found])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([for object file format of host system])
|
||||||
|
case "$host_os" in
|
||||||
|
cygwin* | mingw* | pw32* | interix*)
|
||||||
|
case "$host_cpu" in
|
||||||
|
x86_64)
|
||||||
|
objfmt='Win64-COFF'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
objfmt='Win32-COFF'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
msdosdjgpp* | go32*)
|
||||||
|
objfmt='COFF'
|
||||||
|
;;
|
||||||
|
os2-emx*) # not tested
|
||||||
|
objfmt='MSOMF' # obj
|
||||||
|
;;
|
||||||
|
linux*coff* | linux*oldld*)
|
||||||
|
objfmt='COFF' # ???
|
||||||
|
;;
|
||||||
|
linux*aout*)
|
||||||
|
objfmt='a.out'
|
||||||
|
;;
|
||||||
|
linux*)
|
||||||
|
case "$host_cpu" in
|
||||||
|
x86_64)
|
||||||
|
objfmt='ELF64'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
objfmt='ELF'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
freebsd* | netbsd* | openbsd*)
|
||||||
|
if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
|
||||||
|
objfmt='BSD-a.out'
|
||||||
|
else
|
||||||
|
case "$host_cpu" in
|
||||||
|
x86_64 | amd64)
|
||||||
|
objfmt='ELF64'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
objfmt='ELF'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
solaris* | sunos* | sysv* | sco*)
|
||||||
|
case "$host_cpu" in
|
||||||
|
x86_64)
|
||||||
|
objfmt='ELF64'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
objfmt='ELF'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
darwin* | rhapsody* | nextstep* | openstep* | macos*)
|
||||||
|
case "$host_cpu" in
|
||||||
|
x86_64)
|
||||||
|
objfmt='Mach-O64'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
objfmt='Mach-O'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
objfmt='ELF ?'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
AC_MSG_RESULT([$objfmt])
|
||||||
|
if test "$objfmt" = 'ELF ?'; then
|
||||||
|
objfmt='ELF'
|
||||||
|
AC_MSG_WARN([unexpected host system. assumed that the format is $objfmt.])
|
||||||
|
fi
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([for object file format specifier (NAFLAGS) ])
|
||||||
|
case "$objfmt" in
|
||||||
|
MSOMF) NAFLAGS='-fobj -DOBJ32';;
|
||||||
|
Win32-COFF) NAFLAGS='-fwin32 -DWIN32';;
|
||||||
|
Win64-COFF) NAFLAGS='-fwin64 -DWIN64 -D__x86_64__';;
|
||||||
|
COFF) NAFLAGS='-fcoff -DCOFF';;
|
||||||
|
a.out) NAFLAGS='-faout -DAOUT';;
|
||||||
|
BSD-a.out) NAFLAGS='-faoutb -DAOUT';;
|
||||||
|
ELF) NAFLAGS='-felf -DELF';;
|
||||||
|
ELF64) NAFLAGS='-felf64 -DELF -D__x86_64__';;
|
||||||
|
RDF) NAFLAGS='-frdf -DRDF';;
|
||||||
|
Mach-O) NAFLAGS='-fmacho -DMACHO';;
|
||||||
|
Mach-O64) NAFLAGS='-fmacho64 -DMACHO -D__x86_64__';;
|
||||||
|
esac
|
||||||
|
AC_MSG_RESULT([$NAFLAGS])
|
||||||
|
AC_SUBST([NAFLAGS])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([whether the assembler ($NASM $NAFLAGS) works])
|
||||||
|
cat > conftest.asm <<EOF
|
||||||
|
[%line __oline__ "configure"
|
||||||
|
section .text
|
||||||
|
global _main,main
|
||||||
|
_main:
|
||||||
|
main: xor eax,eax
|
||||||
|
ret
|
||||||
|
]EOF
|
||||||
|
try_nasm='$NASM $NAFLAGS -o conftest.o conftest.asm'
|
||||||
|
if AC_TRY_EVAL(try_nasm) && test -s conftest.o; then
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
else
|
||||||
|
echo "configure: failed program was:" >&AC_FD_CC
|
||||||
|
cat conftest.asm >&AC_FD_CC
|
||||||
|
rm -rf conftest*
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
AC_MSG_ERROR([installation or configuration problem: assembler cannot create object files.])
|
||||||
|
fi
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([whether the linker accepts assembler output])
|
||||||
|
try_nasm='${CC-cc} -o conftest${ac_exeext} $LDFLAGS conftest.o $LIBS 1>&AC_FD_CC'
|
||||||
|
if AC_TRY_EVAL(try_nasm) && test -s conftest${ac_exeext}; then
|
||||||
|
rm -rf conftest*
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
else
|
||||||
|
rm -rf conftest*
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
AC_MSG_ERROR([configuration problem: maybe object file format mismatch.])
|
||||||
|
fi
|
||||||
|
|
||||||
|
])
|
||||||
|
|
||||||
|
# AC_CHECK_COMPATIBLE_ARM_ASSEMBLER_IFELSE
|
||||||
|
# --------------------------
|
||||||
|
# Test whether the assembler is suitable and supports NEON instructions
|
||||||
|
AC_DEFUN([AC_CHECK_COMPATIBLE_ARM_ASSEMBLER_IFELSE],[
|
||||||
|
ac_good_gnu_arm_assembler=no
|
||||||
|
ac_save_CC="$CC"
|
||||||
|
ac_save_CFLAGS="$CFLAGS"
|
||||||
|
CFLAGS="$CCASFLAGS -x assembler-with-cpp"
|
||||||
|
CC="$CCAS"
|
||||||
|
AC_COMPILE_IFELSE([[
|
||||||
|
.text
|
||||||
|
.fpu neon
|
||||||
|
.arch armv7a
|
||||||
|
.object_arch armv4
|
||||||
|
.arm
|
||||||
|
pld [r0]
|
||||||
|
vmovn.u16 d0, q0]], ac_good_gnu_arm_assembler=yes)
|
||||||
|
|
||||||
|
ac_use_gas_preprocessor=no
|
||||||
|
if test "x$ac_good_gnu_arm_assembler" = "xno" ; then
|
||||||
|
CC="gas-preprocessor.pl $CCAS"
|
||||||
|
AC_COMPILE_IFELSE([[
|
||||||
|
.text
|
||||||
|
.fpu neon
|
||||||
|
.arch armv7a
|
||||||
|
.object_arch armv4
|
||||||
|
.arm
|
||||||
|
pld [r0]
|
||||||
|
vmovn.u16 d0, q0]], ac_use_gas_preprocessor=yes)
|
||||||
|
fi
|
||||||
|
CFLAGS="$ac_save_CFLAGS"
|
||||||
|
CC="$ac_save_CC"
|
||||||
|
|
||||||
|
if test "x$ac_use_gas_preprocessor" = "xyes" ; then
|
||||||
|
CCAS="gas-preprocessor.pl $CCAS"
|
||||||
|
AC_SUBST([CCAS])
|
||||||
|
ac_good_gnu_arm_assembler=yes
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "x$ac_good_gnu_arm_assembler" = "xyes" ; then
|
||||||
|
$1
|
||||||
|
else
|
||||||
|
$2
|
||||||
|
fi
|
||||||
|
])
|
6978
library/deps/libjpeg-turbo/aclocal.m4
vendored
Normal file
274
library/deps/libjpeg-turbo/bmp.c
Normal file
|
@ -0,0 +1,274 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C)2011 D. R. Commander. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* - Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
* - 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.
|
||||||
|
* - Neither the name of the libjpeg-turbo Project nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from this
|
||||||
|
* software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* 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 HOLDERS 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <setjmp.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include "cdjpeg.h"
|
||||||
|
#include <jpeglib.h>
|
||||||
|
#include <jpegint.h>
|
||||||
|
#include "tjutil.h"
|
||||||
|
#include "bmp.h"
|
||||||
|
|
||||||
|
|
||||||
|
/* This duplicates the functionality of the VirtualGL bitmap library using
|
||||||
|
the components from cjpeg and djpeg */
|
||||||
|
|
||||||
|
|
||||||
|
/* Error handling (based on example in example.c) */
|
||||||
|
|
||||||
|
static char errStr[JMSG_LENGTH_MAX]="No error";
|
||||||
|
|
||||||
|
struct my_error_mgr
|
||||||
|
{
|
||||||
|
struct jpeg_error_mgr pub;
|
||||||
|
jmp_buf setjmp_buffer;
|
||||||
|
};
|
||||||
|
typedef struct my_error_mgr *my_error_ptr;
|
||||||
|
|
||||||
|
static void my_error_exit(j_common_ptr cinfo)
|
||||||
|
{
|
||||||
|
my_error_ptr myerr=(my_error_ptr)cinfo->err;
|
||||||
|
(*cinfo->err->output_message)(cinfo);
|
||||||
|
longjmp(myerr->setjmp_buffer, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Based on output_message() in jerror.c */
|
||||||
|
|
||||||
|
static void my_output_message(j_common_ptr cinfo)
|
||||||
|
{
|
||||||
|
(*cinfo->err->format_message)(cinfo, errStr);
|
||||||
|
}
|
||||||
|
|
||||||
|
#define _throw(m) {snprintf(errStr, JMSG_LENGTH_MAX, "%s", m); \
|
||||||
|
retval=-1; goto bailout;}
|
||||||
|
#define _throwunix(m) {snprintf(errStr, JMSG_LENGTH_MAX, "%s\n%s", m, \
|
||||||
|
strerror(errno)); retval=-1; goto bailout;}
|
||||||
|
|
||||||
|
|
||||||
|
static void pixelconvert(unsigned char *srcbuf, int srcpf, int srcbottomup,
|
||||||
|
unsigned char *dstbuf, int dstpf, int dstbottomup, int w, int h)
|
||||||
|
{
|
||||||
|
unsigned char *srcptr=srcbuf, *srcptr2;
|
||||||
|
int srcps=tjPixelSize[srcpf];
|
||||||
|
int srcstride=srcbottomup? -w*srcps:w*srcps;
|
||||||
|
unsigned char *dstptr=dstbuf, *dstptr2;
|
||||||
|
int dstps=tjPixelSize[dstpf];
|
||||||
|
int dststride=dstbottomup? -w*dstps:w*dstps;
|
||||||
|
int row, col;
|
||||||
|
|
||||||
|
if(srcbottomup) srcptr=&srcbuf[w*srcps*(h-1)];
|
||||||
|
if(dstbottomup) dstptr=&dstbuf[w*dstps*(h-1)];
|
||||||
|
for(row=0; row<h; row++, srcptr+=srcstride, dstptr+=dststride)
|
||||||
|
{
|
||||||
|
for(col=0, srcptr2=srcptr, dstptr2=dstptr; col<w; col++, srcptr2+=srcps,
|
||||||
|
dstptr2+=dstps)
|
||||||
|
{
|
||||||
|
dstptr2[tjRedOffset[dstpf]]=srcptr2[tjRedOffset[srcpf]];
|
||||||
|
dstptr2[tjGreenOffset[dstpf]]=srcptr2[tjGreenOffset[srcpf]];
|
||||||
|
dstptr2[tjBlueOffset[dstpf]]=srcptr2[tjBlueOffset[srcpf]];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int loadbmp(char *filename, unsigned char **buf, int *w, int *h,
|
||||||
|
int dstpf, int bottomup)
|
||||||
|
{
|
||||||
|
int retval=0, dstps, srcpf, tempc;
|
||||||
|
struct jpeg_compress_struct cinfo;
|
||||||
|
struct my_error_mgr jerr;
|
||||||
|
cjpeg_source_ptr src;
|
||||||
|
FILE *file=NULL;
|
||||||
|
|
||||||
|
memset(&cinfo, 0, sizeof(struct jpeg_compress_struct));
|
||||||
|
|
||||||
|
if(!filename || !buf || !w || !h || dstpf<0 || dstpf>=TJ_NUMPF)
|
||||||
|
_throw("loadbmp(): Invalid argument");
|
||||||
|
|
||||||
|
if((file=fopen(filename, "rb"))==NULL)
|
||||||
|
_throwunix("loadbmp(): Cannot open input file");
|
||||||
|
|
||||||
|
cinfo.err=jpeg_std_error(&jerr.pub);
|
||||||
|
jerr.pub.error_exit=my_error_exit;
|
||||||
|
jerr.pub.output_message=my_output_message;
|
||||||
|
|
||||||
|
if(setjmp(jerr.setjmp_buffer))
|
||||||
|
{
|
||||||
|
/* If we get here, the JPEG code has signaled an error. */
|
||||||
|
retval=-1; goto bailout;
|
||||||
|
}
|
||||||
|
|
||||||
|
jpeg_create_compress(&cinfo);
|
||||||
|
if((tempc=getc(file))<0 || ungetc(tempc, file)==EOF)
|
||||||
|
_throwunix("loadbmp(): Could not read input file")
|
||||||
|
else if(tempc==EOF) _throw("loadbmp(): Input file contains no data");
|
||||||
|
|
||||||
|
if(tempc=='B')
|
||||||
|
{
|
||||||
|
if((src=jinit_read_bmp(&cinfo))==NULL)
|
||||||
|
_throw("loadbmp(): Could not initialize bitmap loader");
|
||||||
|
}
|
||||||
|
else if(tempc=='P')
|
||||||
|
{
|
||||||
|
if((src=jinit_read_ppm(&cinfo))==NULL)
|
||||||
|
_throw("loadbmp(): Could not initialize bitmap loader");
|
||||||
|
}
|
||||||
|
else _throw("loadbmp(): Unsupported file type");
|
||||||
|
|
||||||
|
src->input_file=file;
|
||||||
|
(*src->start_input)(&cinfo, src);
|
||||||
|
(*cinfo.mem->realize_virt_arrays)((j_common_ptr)&cinfo);
|
||||||
|
|
||||||
|
*w=cinfo.image_width; *h=cinfo.image_height;
|
||||||
|
|
||||||
|
if(cinfo.input_components==1 && cinfo.in_color_space==JCS_RGB)
|
||||||
|
srcpf=TJPF_GRAY;
|
||||||
|
else srcpf=TJPF_RGB;
|
||||||
|
|
||||||
|
dstps=tjPixelSize[dstpf];
|
||||||
|
if((*buf=(unsigned char *)malloc((*w)*(*h)*dstps))==NULL)
|
||||||
|
_throw("loadbmp(): Memory allocation failure");
|
||||||
|
|
||||||
|
while(cinfo.next_scanline<cinfo.image_height)
|
||||||
|
{
|
||||||
|
int i, nlines=(*src->get_pixel_rows)(&cinfo, src);
|
||||||
|
for(i=0; i<nlines; i++)
|
||||||
|
{
|
||||||
|
unsigned char *outbuf; int row;
|
||||||
|
row=cinfo.next_scanline+i;
|
||||||
|
if(bottomup) outbuf=&(*buf)[((*h)-row-1)*(*w)*dstps];
|
||||||
|
else outbuf=&(*buf)[row*(*w)*dstps];
|
||||||
|
pixelconvert(src->buffer[i], srcpf, 0, outbuf, dstpf, bottomup, *w,
|
||||||
|
nlines);
|
||||||
|
}
|
||||||
|
cinfo.next_scanline+=nlines;
|
||||||
|
}
|
||||||
|
|
||||||
|
(*src->finish_input)(&cinfo, src);
|
||||||
|
|
||||||
|
bailout:
|
||||||
|
jpeg_destroy_compress(&cinfo);
|
||||||
|
if(file) fclose(file);
|
||||||
|
if(retval<0 && buf && *buf) {free(*buf); *buf=NULL;}
|
||||||
|
return retval;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int savebmp(char *filename, unsigned char *buf, int w, int h, int srcpf,
|
||||||
|
int bottomup)
|
||||||
|
{
|
||||||
|
int retval=0, srcps, dstpf;
|
||||||
|
struct jpeg_decompress_struct dinfo;
|
||||||
|
struct my_error_mgr jerr;
|
||||||
|
djpeg_dest_ptr dst;
|
||||||
|
FILE *file=NULL;
|
||||||
|
char *ptr=NULL;
|
||||||
|
|
||||||
|
memset(&dinfo, 0, sizeof(struct jpeg_decompress_struct));
|
||||||
|
|
||||||
|
if(!filename || !buf || w<1 || h<1 || srcpf<0 || srcpf>=TJ_NUMPF)
|
||||||
|
_throw("savebmp(): Invalid argument");
|
||||||
|
|
||||||
|
if((file=fopen(filename, "wb"))==NULL)
|
||||||
|
_throwunix("savebmp(): Cannot open output file");
|
||||||
|
|
||||||
|
dinfo.err=jpeg_std_error(&jerr.pub);
|
||||||
|
jerr.pub.error_exit=my_error_exit;
|
||||||
|
jerr.pub.output_message=my_output_message;
|
||||||
|
|
||||||
|
if(setjmp(jerr.setjmp_buffer))
|
||||||
|
{
|
||||||
|
/* If we get here, the JPEG code has signaled an error. */
|
||||||
|
retval=-1; goto bailout;
|
||||||
|
}
|
||||||
|
|
||||||
|
jpeg_create_decompress(&dinfo);
|
||||||
|
if(srcpf==TJPF_GRAY)
|
||||||
|
{
|
||||||
|
dinfo.out_color_components=dinfo.output_components=1;
|
||||||
|
dinfo.out_color_space=JCS_GRAYSCALE;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
dinfo.out_color_components=dinfo.output_components=3;
|
||||||
|
dinfo.out_color_space=JCS_RGB;
|
||||||
|
}
|
||||||
|
dinfo.image_width=w; dinfo.image_height=h;
|
||||||
|
dinfo.global_state=DSTATE_READY;
|
||||||
|
dinfo.scale_num=dinfo.scale_denom=1;
|
||||||
|
|
||||||
|
ptr=strrchr(filename, '.');
|
||||||
|
if(ptr && !strcasecmp(ptr, ".bmp"))
|
||||||
|
{
|
||||||
|
if((dst=jinit_write_bmp(&dinfo, 0))==NULL)
|
||||||
|
_throw("savebmp(): Could not initialize bitmap writer");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if((dst=jinit_write_ppm(&dinfo))==NULL)
|
||||||
|
_throw("savebmp(): Could not initialize PPM writer");
|
||||||
|
}
|
||||||
|
|
||||||
|
dst->output_file=file;
|
||||||
|
(*dst->start_output)(&dinfo, dst);
|
||||||
|
(*dinfo.mem->realize_virt_arrays)((j_common_ptr)&dinfo);
|
||||||
|
|
||||||
|
if(srcpf==TJPF_GRAY) dstpf=srcpf;
|
||||||
|
else dstpf=TJPF_RGB;
|
||||||
|
srcps=tjPixelSize[srcpf];
|
||||||
|
|
||||||
|
while(dinfo.output_scanline<dinfo.output_height)
|
||||||
|
{
|
||||||
|
int i, nlines=dst->buffer_height;
|
||||||
|
for(i=0; i<nlines; i++)
|
||||||
|
{
|
||||||
|
unsigned char *inbuf; int row;
|
||||||
|
row=dinfo.output_scanline+i;
|
||||||
|
if(bottomup) inbuf=&buf[(h-row-1)*w*srcps];
|
||||||
|
else inbuf=&buf[row*w*srcps];
|
||||||
|
pixelconvert(inbuf, srcpf, bottomup, dst->buffer[i], dstpf, 0, w,
|
||||||
|
nlines);
|
||||||
|
}
|
||||||
|
(*dst->put_pixel_rows)(&dinfo, dst, nlines);
|
||||||
|
dinfo.output_scanline+=nlines;
|
||||||
|
}
|
||||||
|
|
||||||
|
(*dst->finish_output)(&dinfo, dst);
|
||||||
|
|
||||||
|
bailout:
|
||||||
|
jpeg_destroy_decompress(&dinfo);
|
||||||
|
if(file) fclose(file);
|
||||||
|
return retval;
|
||||||
|
}
|
||||||
|
|
||||||
|
const char *bmpgeterr(void)
|
||||||
|
{
|
||||||
|
return errStr;
|
||||||
|
}
|
46
library/deps/libjpeg-turbo/bmp.h
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C)2011 D. R. Commander. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* - Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
* - 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.
|
||||||
|
* - Neither the name of the libjpeg-turbo Project nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from this
|
||||||
|
* software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* 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 HOLDERS 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 __BMP_H__
|
||||||
|
#define __BMP_H__
|
||||||
|
|
||||||
|
#include "./turbojpeg.h"
|
||||||
|
|
||||||
|
int loadbmp(char *filename, unsigned char **buf, int *w, int *h, int pf,
|
||||||
|
int bottomup);
|
||||||
|
|
||||||
|
int savebmp(char *filename, unsigned char *buf, int w, int h, int pf,
|
||||||
|
int bottomup);
|
||||||
|
|
||||||
|
const char *bmpgeterr(void);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
134
library/deps/libjpeg-turbo/cderror.h
Normal file
|
@ -0,0 +1,134 @@
|
||||||
|
/*
|
||||||
|
* cderror.h
|
||||||
|
*
|
||||||
|
* Copyright (C) 1994-1997, Thomas G. Lane.
|
||||||
|
* Modified 2009 by Guido Vollbeding.
|
||||||
|
* This file is part of the Independent JPEG Group's software.
|
||||||
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
|
*
|
||||||
|
* This file defines the error and message codes for the cjpeg/djpeg
|
||||||
|
* applications. These strings are not needed as part of the JPEG library
|
||||||
|
* proper.
|
||||||
|
* Edit this file to add new codes, or to translate the message strings to
|
||||||
|
* some other language.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* To define the enum list of message codes, include this file without
|
||||||
|
* defining macro JMESSAGE. To create a message string table, include it
|
||||||
|
* again with a suitable JMESSAGE definition (see jerror.c for an example).
|
||||||
|
*/
|
||||||
|
#ifndef JMESSAGE
|
||||||
|
#ifndef CDERROR_H
|
||||||
|
#define CDERROR_H
|
||||||
|
/* First time through, define the enum list */
|
||||||
|
#define JMAKE_ENUM_LIST
|
||||||
|
#else
|
||||||
|
/* Repeated inclusions of this file are no-ops unless JMESSAGE is defined */
|
||||||
|
#define JMESSAGE(code,string)
|
||||||
|
#endif /* CDERROR_H */
|
||||||
|
#endif /* JMESSAGE */
|
||||||
|
|
||||||
|
#ifdef JMAKE_ENUM_LIST
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
|
||||||
|
#define JMESSAGE(code,string) code ,
|
||||||
|
|
||||||
|
#endif /* JMAKE_ENUM_LIST */
|
||||||
|
|
||||||
|
JMESSAGE(JMSG_FIRSTADDONCODE=1000, NULL) /* Must be first entry! */
|
||||||
|
|
||||||
|
#ifdef BMP_SUPPORTED
|
||||||
|
JMESSAGE(JERR_BMP_BADCMAP, "Unsupported BMP colormap format")
|
||||||
|
JMESSAGE(JERR_BMP_BADDEPTH, "Only 8- and 24-bit BMP files are supported")
|
||||||
|
JMESSAGE(JERR_BMP_BADHEADER, "Invalid BMP file: bad header length")
|
||||||
|
JMESSAGE(JERR_BMP_BADPLANES, "Invalid BMP file: biPlanes not equal to 1")
|
||||||
|
JMESSAGE(JERR_BMP_COLORSPACE, "BMP output must be grayscale or RGB")
|
||||||
|
JMESSAGE(JERR_BMP_COMPRESSED, "Sorry, compressed BMPs not yet supported")
|
||||||
|
JMESSAGE(JERR_BMP_EMPTY, "Empty BMP image")
|
||||||
|
JMESSAGE(JERR_BMP_NOT, "Not a BMP file - does not start with BM")
|
||||||
|
JMESSAGE(JTRC_BMP, "%ux%u 24-bit BMP image")
|
||||||
|
JMESSAGE(JTRC_BMP_MAPPED, "%ux%u 8-bit colormapped BMP image")
|
||||||
|
JMESSAGE(JTRC_BMP_OS2, "%ux%u 24-bit OS2 BMP image")
|
||||||
|
JMESSAGE(JTRC_BMP_OS2_MAPPED, "%ux%u 8-bit colormapped OS2 BMP image")
|
||||||
|
#endif /* BMP_SUPPORTED */
|
||||||
|
|
||||||
|
#ifdef GIF_SUPPORTED
|
||||||
|
JMESSAGE(JERR_GIF_BUG, "GIF output got confused")
|
||||||
|
JMESSAGE(JERR_GIF_CODESIZE, "Bogus GIF codesize %d")
|
||||||
|
JMESSAGE(JERR_GIF_COLORSPACE, "GIF output must be grayscale or RGB")
|
||||||
|
JMESSAGE(JERR_GIF_IMAGENOTFOUND, "Too few images in GIF file")
|
||||||
|
JMESSAGE(JERR_GIF_NOT, "Not a GIF file")
|
||||||
|
JMESSAGE(JTRC_GIF, "%ux%ux%d GIF image")
|
||||||
|
JMESSAGE(JTRC_GIF_BADVERSION,
|
||||||
|
"Warning: unexpected GIF version number '%c%c%c'")
|
||||||
|
JMESSAGE(JTRC_GIF_EXTENSION, "Ignoring GIF extension block of type 0x%02x")
|
||||||
|
JMESSAGE(JTRC_GIF_NONSQUARE, "Caution: nonsquare pixels in input")
|
||||||
|
JMESSAGE(JWRN_GIF_BADDATA, "Corrupt data in GIF file")
|
||||||
|
JMESSAGE(JWRN_GIF_CHAR, "Bogus char 0x%02x in GIF file, ignoring")
|
||||||
|
JMESSAGE(JWRN_GIF_ENDCODE, "Premature end of GIF image")
|
||||||
|
JMESSAGE(JWRN_GIF_NOMOREDATA, "Ran out of GIF bits")
|
||||||
|
#endif /* GIF_SUPPORTED */
|
||||||
|
|
||||||
|
#ifdef PPM_SUPPORTED
|
||||||
|
JMESSAGE(JERR_PPM_COLORSPACE, "PPM output must be grayscale or RGB")
|
||||||
|
JMESSAGE(JERR_PPM_NONNUMERIC, "Nonnumeric data in PPM file")
|
||||||
|
JMESSAGE(JERR_PPM_NOT, "Not a PPM/PGM file")
|
||||||
|
JMESSAGE(JTRC_PGM, "%ux%u PGM image")
|
||||||
|
JMESSAGE(JTRC_PGM_TEXT, "%ux%u text PGM image")
|
||||||
|
JMESSAGE(JTRC_PPM, "%ux%u PPM image")
|
||||||
|
JMESSAGE(JTRC_PPM_TEXT, "%ux%u text PPM image")
|
||||||
|
#endif /* PPM_SUPPORTED */
|
||||||
|
|
||||||
|
#ifdef RLE_SUPPORTED
|
||||||
|
JMESSAGE(JERR_RLE_BADERROR, "Bogus error code from RLE library")
|
||||||
|
JMESSAGE(JERR_RLE_COLORSPACE, "RLE output must be grayscale or RGB")
|
||||||
|
JMESSAGE(JERR_RLE_DIMENSIONS, "Image dimensions (%ux%u) too large for RLE")
|
||||||
|
JMESSAGE(JERR_RLE_EMPTY, "Empty RLE file")
|
||||||
|
JMESSAGE(JERR_RLE_EOF, "Premature EOF in RLE header")
|
||||||
|
JMESSAGE(JERR_RLE_MEM, "Insufficient memory for RLE header")
|
||||||
|
JMESSAGE(JERR_RLE_NOT, "Not an RLE file")
|
||||||
|
JMESSAGE(JERR_RLE_TOOMANYCHANNELS, "Cannot handle %d output channels for RLE")
|
||||||
|
JMESSAGE(JERR_RLE_UNSUPPORTED, "Cannot handle this RLE setup")
|
||||||
|
JMESSAGE(JTRC_RLE, "%ux%u full-color RLE file")
|
||||||
|
JMESSAGE(JTRC_RLE_FULLMAP, "%ux%u full-color RLE file with map of length %d")
|
||||||
|
JMESSAGE(JTRC_RLE_GRAY, "%ux%u grayscale RLE file")
|
||||||
|
JMESSAGE(JTRC_RLE_MAPGRAY, "%ux%u grayscale RLE file with map of length %d")
|
||||||
|
JMESSAGE(JTRC_RLE_MAPPED, "%ux%u colormapped RLE file with map of length %d")
|
||||||
|
#endif /* RLE_SUPPORTED */
|
||||||
|
|
||||||
|
#ifdef TARGA_SUPPORTED
|
||||||
|
JMESSAGE(JERR_TGA_BADCMAP, "Unsupported Targa colormap format")
|
||||||
|
JMESSAGE(JERR_TGA_BADPARMS, "Invalid or unsupported Targa file")
|
||||||
|
JMESSAGE(JERR_TGA_COLORSPACE, "Targa output must be grayscale or RGB")
|
||||||
|
JMESSAGE(JTRC_TGA, "%ux%u RGB Targa image")
|
||||||
|
JMESSAGE(JTRC_TGA_GRAY, "%ux%u grayscale Targa image")
|
||||||
|
JMESSAGE(JTRC_TGA_MAPPED, "%ux%u colormapped Targa image")
|
||||||
|
#else
|
||||||
|
JMESSAGE(JERR_TGA_NOTCOMP, "Targa support was not compiled")
|
||||||
|
#endif /* TARGA_SUPPORTED */
|
||||||
|
|
||||||
|
JMESSAGE(JERR_BAD_CMAP_FILE,
|
||||||
|
"Color map file is invalid or of unsupported format")
|
||||||
|
JMESSAGE(JERR_TOO_MANY_COLORS,
|
||||||
|
"Output file format cannot handle %d colormap entries")
|
||||||
|
JMESSAGE(JERR_UNGETC_FAILED, "ungetc failed")
|
||||||
|
#ifdef TARGA_SUPPORTED
|
||||||
|
JMESSAGE(JERR_UNKNOWN_FORMAT,
|
||||||
|
"Unrecognized input file format --- perhaps you need -targa")
|
||||||
|
#else
|
||||||
|
JMESSAGE(JERR_UNKNOWN_FORMAT, "Unrecognized input file format")
|
||||||
|
#endif
|
||||||
|
JMESSAGE(JERR_UNSUPPORTED_FORMAT, "Unsupported output file format")
|
||||||
|
|
||||||
|
#ifdef JMAKE_ENUM_LIST
|
||||||
|
|
||||||
|
JMSG_LASTADDONCODE
|
||||||
|
} ADDON_MESSAGE_CODE;
|
||||||
|
|
||||||
|
#undef JMAKE_ENUM_LIST
|
||||||
|
#endif /* JMAKE_ENUM_LIST */
|
||||||
|
|
||||||
|
/* Zap JMESSAGE macro so that future re-inclusions do nothing by default */
|
||||||
|
#undef JMESSAGE
|
181
library/deps/libjpeg-turbo/cdjpeg.c
Normal file
|
@ -0,0 +1,181 @@
|
||||||
|
/*
|
||||||
|
* cdjpeg.c
|
||||||
|
*
|
||||||
|
* Copyright (C) 1991-1997, Thomas G. Lane.
|
||||||
|
* This file is part of the Independent JPEG Group's software.
|
||||||
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
|
*
|
||||||
|
* This file contains common support routines used by the IJG application
|
||||||
|
* programs (cjpeg, djpeg, jpegtran).
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
|
||||||
|
#include <ctype.h> /* to declare isupper(), tolower() */
|
||||||
|
#ifdef NEED_SIGNAL_CATCHER
|
||||||
|
#include <signal.h> /* to declare signal() */
|
||||||
|
#endif
|
||||||
|
#ifdef USE_SETMODE
|
||||||
|
#include <fcntl.h> /* to declare setmode()'s parameter macros */
|
||||||
|
/* If you have setmode() but not <io.h>, just delete this line: */
|
||||||
|
#include <io.h> /* to declare setmode() */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Signal catcher to ensure that temporary files are removed before aborting.
|
||||||
|
* NB: for Amiga Manx C this is actually a global routine named _abort();
|
||||||
|
* we put "#define signal_catcher _abort" in jconfig.h. Talk about bogus...
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef NEED_SIGNAL_CATCHER
|
||||||
|
|
||||||
|
static j_common_ptr sig_cinfo;
|
||||||
|
|
||||||
|
void /* must be global for Manx C */
|
||||||
|
signal_catcher (int signum)
|
||||||
|
{
|
||||||
|
if (sig_cinfo != NULL) {
|
||||||
|
if (sig_cinfo->err != NULL) /* turn off trace output */
|
||||||
|
sig_cinfo->err->trace_level = 0;
|
||||||
|
jpeg_destroy(sig_cinfo); /* clean up memory allocation & temp files */
|
||||||
|
}
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
GLOBAL(void)
|
||||||
|
enable_signal_catcher (j_common_ptr cinfo)
|
||||||
|
{
|
||||||
|
sig_cinfo = cinfo;
|
||||||
|
#ifdef SIGINT /* not all systems have SIGINT */
|
||||||
|
signal(SIGINT, signal_catcher);
|
||||||
|
#endif
|
||||||
|
#ifdef SIGTERM /* not all systems have SIGTERM */
|
||||||
|
signal(SIGTERM, signal_catcher);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Optional progress monitor: display a percent-done figure on stderr.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef PROGRESS_REPORT
|
||||||
|
|
||||||
|
METHODDEF(void)
|
||||||
|
progress_monitor (j_common_ptr cinfo)
|
||||||
|
{
|
||||||
|
cd_progress_ptr prog = (cd_progress_ptr) cinfo->progress;
|
||||||
|
int total_passes = prog->pub.total_passes + prog->total_extra_passes;
|
||||||
|
int percent_done = (int) (prog->pub.pass_counter*100L/prog->pub.pass_limit);
|
||||||
|
|
||||||
|
if (percent_done != prog->percent_done) {
|
||||||
|
prog->percent_done = percent_done;
|
||||||
|
if (total_passes > 1) {
|
||||||
|
fprintf(stderr, "\rPass %d/%d: %3d%% ",
|
||||||
|
prog->pub.completed_passes + prog->completed_extra_passes + 1,
|
||||||
|
total_passes, percent_done);
|
||||||
|
} else {
|
||||||
|
fprintf(stderr, "\r %3d%% ", percent_done);
|
||||||
|
}
|
||||||
|
fflush(stderr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
GLOBAL(void)
|
||||||
|
start_progress_monitor (j_common_ptr cinfo, cd_progress_ptr progress)
|
||||||
|
{
|
||||||
|
/* Enable progress display, unless trace output is on */
|
||||||
|
if (cinfo->err->trace_level == 0) {
|
||||||
|
progress->pub.progress_monitor = progress_monitor;
|
||||||
|
progress->completed_extra_passes = 0;
|
||||||
|
progress->total_extra_passes = 0;
|
||||||
|
progress->percent_done = -1;
|
||||||
|
cinfo->progress = &progress->pub;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
GLOBAL(void)
|
||||||
|
end_progress_monitor (j_common_ptr cinfo)
|
||||||
|
{
|
||||||
|
/* Clear away progress display */
|
||||||
|
if (cinfo->err->trace_level == 0) {
|
||||||
|
fprintf(stderr, "\r \r");
|
||||||
|
fflush(stderr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Case-insensitive matching of possibly-abbreviated keyword switches.
|
||||||
|
* keyword is the constant keyword (must be lower case already),
|
||||||
|
* minchars is length of minimum legal abbreviation.
|
||||||
|
*/
|
||||||
|
|
||||||
|
GLOBAL(boolean)
|
||||||
|
keymatch (char * arg, const char * keyword, int minchars)
|
||||||
|
{
|
||||||
|
register int ca, ck;
|
||||||
|
register int nmatched = 0;
|
||||||
|
|
||||||
|
while ((ca = *arg++) != '\0') {
|
||||||
|
if ((ck = *keyword++) == '\0')
|
||||||
|
return FALSE; /* arg longer than keyword, no good */
|
||||||
|
if (isupper(ca)) /* force arg to lcase (assume ck is already) */
|
||||||
|
ca = tolower(ca);
|
||||||
|
if (ca != ck)
|
||||||
|
return FALSE; /* no good */
|
||||||
|
nmatched++; /* count matched characters */
|
||||||
|
}
|
||||||
|
/* reached end of argument; fail if it's too short for unique abbrev */
|
||||||
|
if (nmatched < minchars)
|
||||||
|
return FALSE;
|
||||||
|
return TRUE; /* A-OK */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Routines to establish binary I/O mode for stdin and stdout.
|
||||||
|
* Non-Unix systems often require some hacking to get out of text mode.
|
||||||
|
*/
|
||||||
|
|
||||||
|
GLOBAL(FILE *)
|
||||||
|
read_stdin (void)
|
||||||
|
{
|
||||||
|
FILE * input_file = stdin;
|
||||||
|
|
||||||
|
#ifdef USE_SETMODE /* need to hack file mode? */
|
||||||
|
setmode(fileno(stdin), O_BINARY);
|
||||||
|
#endif
|
||||||
|
#ifdef USE_FDOPEN /* need to re-open in binary mode? */
|
||||||
|
if ((input_file = fdopen(fileno(stdin), READ_BINARY)) == NULL) {
|
||||||
|
fprintf(stderr, "Cannot reopen stdin\n");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
return input_file;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
GLOBAL(FILE *)
|
||||||
|
write_stdout (void)
|
||||||
|
{
|
||||||
|
FILE * output_file = stdout;
|
||||||
|
|
||||||
|
#ifdef USE_SETMODE /* need to hack file mode? */
|
||||||
|
setmode(fileno(stdout), O_BINARY);
|
||||||
|
#endif
|
||||||
|
#ifdef USE_FDOPEN /* need to re-open in binary mode? */
|
||||||
|
if ((output_file = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) {
|
||||||
|
fprintf(stderr, "Cannot reopen stdout\n");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
return output_file;
|
||||||
|
}
|
187
library/deps/libjpeg-turbo/cdjpeg.h
Normal file
|
@ -0,0 +1,187 @@
|
||||||
|
/*
|
||||||
|
* cdjpeg.h
|
||||||
|
*
|
||||||
|
* Copyright (C) 1994-1997, Thomas G. Lane.
|
||||||
|
* This file is part of the Independent JPEG Group's software.
|
||||||
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
|
*
|
||||||
|
* This file contains common declarations for the sample applications
|
||||||
|
* cjpeg and djpeg. It is NOT used by the core JPEG library.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define JPEG_CJPEG_DJPEG /* define proper options in jconfig.h */
|
||||||
|
#define JPEG_INTERNAL_OPTIONS /* cjpeg.c,djpeg.c need to see xxx_SUPPORTED */
|
||||||
|
#include "jinclude.h"
|
||||||
|
#include "jpeglib.h"
|
||||||
|
#include "jerror.h" /* get library error codes too */
|
||||||
|
#include "cderror.h" /* get application-specific error codes */
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Object interface for cjpeg's source file decoding modules
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef struct cjpeg_source_struct * cjpeg_source_ptr;
|
||||||
|
|
||||||
|
struct cjpeg_source_struct {
|
||||||
|
JMETHOD(void, start_input, (j_compress_ptr cinfo,
|
||||||
|
cjpeg_source_ptr sinfo));
|
||||||
|
JMETHOD(JDIMENSION, get_pixel_rows, (j_compress_ptr cinfo,
|
||||||
|
cjpeg_source_ptr sinfo));
|
||||||
|
JMETHOD(void, finish_input, (j_compress_ptr cinfo,
|
||||||
|
cjpeg_source_ptr sinfo));
|
||||||
|
|
||||||
|
FILE *input_file;
|
||||||
|
|
||||||
|
JSAMPARRAY buffer;
|
||||||
|
JDIMENSION buffer_height;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Object interface for djpeg's output file encoding modules
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef struct djpeg_dest_struct * djpeg_dest_ptr;
|
||||||
|
|
||||||
|
struct djpeg_dest_struct {
|
||||||
|
/* start_output is called after jpeg_start_decompress finishes.
|
||||||
|
* The color map will be ready at this time, if one is needed.
|
||||||
|
*/
|
||||||
|
JMETHOD(void, start_output, (j_decompress_ptr cinfo,
|
||||||
|
djpeg_dest_ptr dinfo));
|
||||||
|
/* Emit the specified number of pixel rows from the buffer. */
|
||||||
|
JMETHOD(void, put_pixel_rows, (j_decompress_ptr cinfo,
|
||||||
|
djpeg_dest_ptr dinfo,
|
||||||
|
JDIMENSION rows_supplied));
|
||||||
|
/* Finish up at the end of the image. */
|
||||||
|
JMETHOD(void, finish_output, (j_decompress_ptr cinfo,
|
||||||
|
djpeg_dest_ptr dinfo));
|
||||||
|
|
||||||
|
/* Target file spec; filled in by djpeg.c after object is created. */
|
||||||
|
FILE * output_file;
|
||||||
|
|
||||||
|
/* Output pixel-row buffer. Created by module init or start_output.
|
||||||
|
* Width is cinfo->output_width * cinfo->output_components;
|
||||||
|
* height is buffer_height.
|
||||||
|
*/
|
||||||
|
JSAMPARRAY buffer;
|
||||||
|
JDIMENSION buffer_height;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* cjpeg/djpeg may need to perform extra passes to convert to or from
|
||||||
|
* the source/destination file format. The JPEG library does not know
|
||||||
|
* about these passes, but we'd like them to be counted by the progress
|
||||||
|
* monitor. We use an expanded progress monitor object to hold the
|
||||||
|
* additional pass count.
|
||||||
|
*/
|
||||||
|
|
||||||
|
struct cdjpeg_progress_mgr {
|
||||||
|
struct jpeg_progress_mgr pub; /* fields known to JPEG library */
|
||||||
|
int completed_extra_passes; /* extra passes completed */
|
||||||
|
int total_extra_passes; /* total extra */
|
||||||
|
/* last printed percentage stored here to avoid multiple printouts */
|
||||||
|
int percent_done;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef struct cdjpeg_progress_mgr * cd_progress_ptr;
|
||||||
|
|
||||||
|
|
||||||
|
/* Short forms of external names for systems with brain-damaged linkers. */
|
||||||
|
|
||||||
|
#ifdef NEED_SHORT_EXTERNAL_NAMES
|
||||||
|
#define jinit_read_bmp jIRdBMP
|
||||||
|
#define jinit_write_bmp jIWrBMP
|
||||||
|
#define jinit_read_gif jIRdGIF
|
||||||
|
#define jinit_write_gif jIWrGIF
|
||||||
|
#define jinit_read_ppm jIRdPPM
|
||||||
|
#define jinit_write_ppm jIWrPPM
|
||||||
|
#define jinit_read_rle jIRdRLE
|
||||||
|
#define jinit_write_rle jIWrRLE
|
||||||
|
#define jinit_read_targa jIRdTarga
|
||||||
|
#define jinit_write_targa jIWrTarga
|
||||||
|
#define read_quant_tables RdQTables
|
||||||
|
#define read_scan_script RdScnScript
|
||||||
|
#define set_quality_ratings SetQRates
|
||||||
|
#define set_quant_slots SetQSlots
|
||||||
|
#define set_sample_factors SetSFacts
|
||||||
|
#define read_color_map RdCMap
|
||||||
|
#define enable_signal_catcher EnSigCatcher
|
||||||
|
#define start_progress_monitor StProgMon
|
||||||
|
#define end_progress_monitor EnProgMon
|
||||||
|
#define read_stdin RdStdin
|
||||||
|
#define write_stdout WrStdout
|
||||||
|
#endif /* NEED_SHORT_EXTERNAL_NAMES */
|
||||||
|
|
||||||
|
/* Module selection routines for I/O modules. */
|
||||||
|
|
||||||
|
EXTERN(cjpeg_source_ptr) jinit_read_bmp JPP((j_compress_ptr cinfo));
|
||||||
|
EXTERN(djpeg_dest_ptr) jinit_write_bmp JPP((j_decompress_ptr cinfo,
|
||||||
|
boolean is_os2));
|
||||||
|
EXTERN(cjpeg_source_ptr) jinit_read_gif JPP((j_compress_ptr cinfo));
|
||||||
|
EXTERN(djpeg_dest_ptr) jinit_write_gif JPP((j_decompress_ptr cinfo));
|
||||||
|
EXTERN(cjpeg_source_ptr) jinit_read_ppm JPP((j_compress_ptr cinfo));
|
||||||
|
EXTERN(djpeg_dest_ptr) jinit_write_ppm JPP((j_decompress_ptr cinfo));
|
||||||
|
EXTERN(cjpeg_source_ptr) jinit_read_rle JPP((j_compress_ptr cinfo));
|
||||||
|
EXTERN(djpeg_dest_ptr) jinit_write_rle JPP((j_decompress_ptr cinfo));
|
||||||
|
EXTERN(cjpeg_source_ptr) jinit_read_targa JPP((j_compress_ptr cinfo));
|
||||||
|
EXTERN(djpeg_dest_ptr) jinit_write_targa JPP((j_decompress_ptr cinfo));
|
||||||
|
|
||||||
|
/* cjpeg support routines (in rdswitch.c) */
|
||||||
|
|
||||||
|
EXTERN(boolean) read_quant_tables JPP((j_compress_ptr cinfo, char * filename,
|
||||||
|
boolean force_baseline));
|
||||||
|
EXTERN(boolean) read_scan_script JPP((j_compress_ptr cinfo, char * filename));
|
||||||
|
EXTERN(boolean) set_quality_ratings JPP((j_compress_ptr cinfo, char *arg,
|
||||||
|
boolean force_baseline));
|
||||||
|
EXTERN(boolean) set_quant_slots JPP((j_compress_ptr cinfo, char *arg));
|
||||||
|
EXTERN(boolean) set_sample_factors JPP((j_compress_ptr cinfo, char *arg));
|
||||||
|
|
||||||
|
/* djpeg support routines (in rdcolmap.c) */
|
||||||
|
|
||||||
|
EXTERN(void) read_color_map JPP((j_decompress_ptr cinfo, FILE * infile));
|
||||||
|
|
||||||
|
/* common support routines (in cdjpeg.c) */
|
||||||
|
|
||||||
|
EXTERN(void) enable_signal_catcher JPP((j_common_ptr cinfo));
|
||||||
|
EXTERN(void) start_progress_monitor JPP((j_common_ptr cinfo,
|
||||||
|
cd_progress_ptr progress));
|
||||||
|
EXTERN(void) end_progress_monitor JPP((j_common_ptr cinfo));
|
||||||
|
EXTERN(boolean) keymatch JPP((char * arg, const char * keyword, int minchars));
|
||||||
|
EXTERN(FILE *) read_stdin JPP((void));
|
||||||
|
EXTERN(FILE *) write_stdout JPP((void));
|
||||||
|
|
||||||
|
/* miscellaneous useful macros */
|
||||||
|
|
||||||
|
#ifdef DONT_USE_B_MODE /* define mode parameters for fopen() */
|
||||||
|
#define READ_BINARY "r"
|
||||||
|
#define WRITE_BINARY "w"
|
||||||
|
#else
|
||||||
|
#ifdef VMS /* VMS is very nonstandard */
|
||||||
|
#define READ_BINARY "rb", "ctx=stm"
|
||||||
|
#define WRITE_BINARY "wb", "ctx=stm"
|
||||||
|
#else /* standard ANSI-compliant case */
|
||||||
|
#define READ_BINARY "rb"
|
||||||
|
#define WRITE_BINARY "wb"
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef EXIT_FAILURE /* define exit() codes if not provided */
|
||||||
|
#define EXIT_FAILURE 1
|
||||||
|
#endif
|
||||||
|
#ifndef EXIT_SUCCESS
|
||||||
|
#ifdef VMS
|
||||||
|
#define EXIT_SUCCESS 1 /* VMS is very nonstandard */
|
||||||
|
#else
|
||||||
|
#define EXIT_SUCCESS 0
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
#ifndef EXIT_WARNING
|
||||||
|
#ifdef VMS
|
||||||
|
#define EXIT_WARNING 1 /* VMS is very nonstandard */
|
||||||
|
#else
|
||||||
|
#define EXIT_WARNING 2
|
||||||
|
#endif
|
||||||
|
#endif
|
322
library/deps/libjpeg-turbo/cjpeg.1
Normal file
|
@ -0,0 +1,322 @@
|
||||||
|
.TH CJPEG 1 "31 January 2012"
|
||||||
|
.SH NAME
|
||||||
|
cjpeg \- compress an image file to a JPEG file
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B cjpeg
|
||||||
|
[
|
||||||
|
.I options
|
||||||
|
]
|
||||||
|
[
|
||||||
|
.I filename
|
||||||
|
]
|
||||||
|
.LP
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.LP
|
||||||
|
.B cjpeg
|
||||||
|
compresses the named image file, or the standard input if no file is
|
||||||
|
named, and produces a JPEG/JFIF file on the standard output.
|
||||||
|
The currently supported input file formats are: PPM (PBMPLUS color
|
||||||
|
format), PGM (PBMPLUS gray-scale format), BMP, Targa, and RLE (Utah Raster
|
||||||
|
Toolkit format). (RLE is supported only if the URT library is available.)
|
||||||
|
.SH OPTIONS
|
||||||
|
All switch names may be abbreviated; for example,
|
||||||
|
.B \-grayscale
|
||||||
|
may be written
|
||||||
|
.B \-gray
|
||||||
|
or
|
||||||
|
.BR \-gr .
|
||||||
|
Most of the "basic" switches can be abbreviated to as little as one letter.
|
||||||
|
Upper and lower case are equivalent (thus
|
||||||
|
.B \-BMP
|
||||||
|
is the same as
|
||||||
|
.BR \-bmp ).
|
||||||
|
British spellings are also accepted (e.g.,
|
||||||
|
.BR \-greyscale ),
|
||||||
|
though for brevity these are not mentioned below.
|
||||||
|
.PP
|
||||||
|
The basic switches are:
|
||||||
|
.TP
|
||||||
|
.BI \-quality " N[,...]"
|
||||||
|
Scale quantization tables to adjust image quality. Quality is 0 (worst) to
|
||||||
|
100 (best); default is 75. (See below for more info.)
|
||||||
|
.TP
|
||||||
|
.B \-grayscale
|
||||||
|
Create monochrome JPEG file from color input. Be sure to use this switch when
|
||||||
|
compressing a grayscale BMP file, because
|
||||||
|
.B cjpeg
|
||||||
|
isn't bright enough to notice whether a BMP file uses only shades of gray.
|
||||||
|
By saying
|
||||||
|
.BR \-grayscale ,
|
||||||
|
you'll get a smaller JPEG file that takes less time to process.
|
||||||
|
.TP
|
||||||
|
.B \-optimize
|
||||||
|
Perform optimization of entropy encoding parameters. Without this, default
|
||||||
|
encoding parameters are used.
|
||||||
|
.B \-optimize
|
||||||
|
usually makes the JPEG file a little smaller, but
|
||||||
|
.B cjpeg
|
||||||
|
runs somewhat slower and needs much more memory. Image quality and speed of
|
||||||
|
decompression are unaffected by
|
||||||
|
.BR \-optimize .
|
||||||
|
.TP
|
||||||
|
.B \-progressive
|
||||||
|
Create progressive JPEG file (see below).
|
||||||
|
.TP
|
||||||
|
.B \-targa
|
||||||
|
Input file is Targa format. Targa files that contain an "identification"
|
||||||
|
field will not be automatically recognized by
|
||||||
|
.BR cjpeg ;
|
||||||
|
for such files you must specify
|
||||||
|
.B \-targa
|
||||||
|
to make
|
||||||
|
.B cjpeg
|
||||||
|
treat the input as Targa format.
|
||||||
|
For most Targa files, you won't need this switch.
|
||||||
|
.PP
|
||||||
|
The
|
||||||
|
.B \-quality
|
||||||
|
switch lets you trade off compressed file size against quality of the
|
||||||
|
reconstructed image: the higher the quality setting, the larger the JPEG file,
|
||||||
|
and the closer the output image will be to the original input. Normally you
|
||||||
|
want to use the lowest quality setting (smallest file) that decompresses into
|
||||||
|
something visually indistinguishable from the original image. For this
|
||||||
|
purpose the quality setting should be between 50 and 95; the default of 75 is
|
||||||
|
often about right. If you see defects at
|
||||||
|
.B \-quality
|
||||||
|
75, then go up 5 or 10 counts at a time until you are happy with the output
|
||||||
|
image. (The optimal setting will vary from one image to another.)
|
||||||
|
.PP
|
||||||
|
.B \-quality
|
||||||
|
100 will generate a quantization table of all 1's, minimizing loss in the
|
||||||
|
quantization step (but there is still information loss in subsampling, as well
|
||||||
|
as roundoff error). This setting is mainly of interest for experimental
|
||||||
|
purposes. Quality values above about 95 are
|
||||||
|
.B not
|
||||||
|
recommended for normal use; the compressed file size goes up dramatically for
|
||||||
|
hardly any gain in output image quality.
|
||||||
|
.PP
|
||||||
|
In the other direction, quality values below 50 will produce very small files
|
||||||
|
of low image quality. Settings around 5 to 10 might be useful in preparing an
|
||||||
|
index of a large image library, for example. Try
|
||||||
|
.B \-quality
|
||||||
|
2 (or so) for some amusing Cubist effects. (Note: quality
|
||||||
|
values below about 25 generate 2-byte quantization tables, which are
|
||||||
|
considered optional in the JPEG standard.
|
||||||
|
.B cjpeg
|
||||||
|
emits a warning message when you give such a quality value, because some
|
||||||
|
other JPEG programs may be unable to decode the resulting file. Use
|
||||||
|
.B \-baseline
|
||||||
|
if you need to ensure compatibility at low quality values.)
|
||||||
|
.PP
|
||||||
|
The \fB-quality\fR option has been extended in this version of \fBcjpeg\fR to
|
||||||
|
support separate quality settings for luminance and chrominance (or, in
|
||||||
|
general, separate settings for every quantization table slot.) The principle
|
||||||
|
is the same as chrominance subsampling: since the human eye is more sensitive
|
||||||
|
to spatial changes in brightness than spatial changes in color, the chrominance
|
||||||
|
components can be quantized more than the luminance components without
|
||||||
|
incurring any visible image quality loss. However, unlike subsampling, this
|
||||||
|
feature reduces data in the frequency domain instead of the spatial domain,
|
||||||
|
which allows for more fine-grained control. This option is useful in
|
||||||
|
quality-sensitive applications, for which the artifacts generated by
|
||||||
|
subsampling may be unacceptable.
|
||||||
|
.PP
|
||||||
|
The \fB-quality\fR option accepts a comma-separated list of parameters, which
|
||||||
|
respectively refer to the quality levels that should be assigned to the
|
||||||
|
quantization table slots. If there are more q-table slots than parameters,
|
||||||
|
then the last parameter is replicated. Thus, if only one quality parameter is
|
||||||
|
given, this is used for both luminance and chrominance (slots 0 and 1,
|
||||||
|
respectively), preserving the legacy behavior of cjpeg v6b and prior.
|
||||||
|
More (or customized) quantization tables can be set with the \fB-qtables\fR
|
||||||
|
option and assigned to components with the \fB-qslots\fR option (see the
|
||||||
|
"wizard" switches below.)
|
||||||
|
.PP
|
||||||
|
JPEG files generated with separate luminance and chrominance quality are fully
|
||||||
|
compliant with standard JPEG decoders.
|
||||||
|
.PP
|
||||||
|
.BR CAUTION:
|
||||||
|
For this setting to be useful, be sure to pass an argument of \fB-sample 1x1\fR
|
||||||
|
to \fBcjpeg\fR to disable chrominance subsampling. Otherwise, the default
|
||||||
|
subsampling level (2x2, AKA "4:2:0") will be used.
|
||||||
|
.PP
|
||||||
|
The
|
||||||
|
.B \-progressive
|
||||||
|
switch creates a "progressive JPEG" file. In this type of JPEG file, the data
|
||||||
|
is stored in multiple scans of increasing quality. If the file is being
|
||||||
|
transmitted over a slow communications link, the decoder can use the first
|
||||||
|
scan to display a low-quality image very quickly, and can then improve the
|
||||||
|
display with each subsequent scan. The final image is exactly equivalent to a
|
||||||
|
standard JPEG file of the same quality setting, and the total file size is
|
||||||
|
about the same --- often a little smaller.
|
||||||
|
.PP
|
||||||
|
Switches for advanced users:
|
||||||
|
.TP
|
||||||
|
.B \-arithmetic
|
||||||
|
Use arithmetic coding.
|
||||||
|
.B Caution:
|
||||||
|
arithmetic coded JPEG is not yet widely implemented, so many decoders will be
|
||||||
|
unable to view an arithmetic coded JPEG file at all.
|
||||||
|
.TP
|
||||||
|
.B \-dct int
|
||||||
|
Use integer DCT method (default).
|
||||||
|
.TP
|
||||||
|
.B \-dct fast
|
||||||
|
Use fast integer DCT (less accurate).
|
||||||
|
.TP
|
||||||
|
.B \-dct float
|
||||||
|
Use floating-point DCT method.
|
||||||
|
The float method is very slightly more accurate than the int method, but is
|
||||||
|
much slower unless your machine has very fast floating-point hardware. Also
|
||||||
|
note that results of the floating-point method may vary slightly across
|
||||||
|
machines, while the integer methods should give the same results everywhere.
|
||||||
|
The fast integer method is much less accurate than the other two.
|
||||||
|
.TP
|
||||||
|
.BI \-restart " N"
|
||||||
|
Emit a JPEG restart marker every N MCU rows, or every N MCU blocks if "B" is
|
||||||
|
attached to the number.
|
||||||
|
.B \-restart 0
|
||||||
|
(the default) means no restart markers.
|
||||||
|
.TP
|
||||||
|
.BI \-smooth " N"
|
||||||
|
Smooth the input image to eliminate dithering noise. N, ranging from 1 to
|
||||||
|
100, indicates the strength of smoothing. 0 (the default) means no smoothing.
|
||||||
|
.TP
|
||||||
|
.BI \-maxmemory " N"
|
||||||
|
Set limit for amount of memory to use in processing large images. Value is
|
||||||
|
in thousands of bytes, or millions of bytes if "M" is attached to the
|
||||||
|
number. For example,
|
||||||
|
.B \-max 4m
|
||||||
|
selects 4000000 bytes. If more space is needed, temporary files will be used.
|
||||||
|
.TP
|
||||||
|
.BI \-outfile " name"
|
||||||
|
Send output image to the named file, not to standard output.
|
||||||
|
.TP
|
||||||
|
.B \-verbose
|
||||||
|
Enable debug printout. More
|
||||||
|
.BR \-v 's
|
||||||
|
give more output. Also, version information is printed at startup.
|
||||||
|
.TP
|
||||||
|
.B \-debug
|
||||||
|
Same as
|
||||||
|
.BR \-verbose .
|
||||||
|
.PP
|
||||||
|
The
|
||||||
|
.B \-restart
|
||||||
|
option inserts extra markers that allow a JPEG decoder to resynchronize after
|
||||||
|
a transmission error. Without restart markers, any damage to a compressed
|
||||||
|
file will usually ruin the image from the point of the error to the end of the
|
||||||
|
image; with restart markers, the damage is usually confined to the portion of
|
||||||
|
the image up to the next restart marker. Of course, the restart markers
|
||||||
|
occupy extra space. We recommend
|
||||||
|
.B \-restart 1
|
||||||
|
for images that will be transmitted across unreliable networks such as Usenet.
|
||||||
|
.PP
|
||||||
|
The
|
||||||
|
.B \-smooth
|
||||||
|
option filters the input to eliminate fine-scale noise. This is often useful
|
||||||
|
when converting dithered images to JPEG: a moderate smoothing factor of 10 to
|
||||||
|
50 gets rid of dithering patterns in the input file, resulting in a smaller
|
||||||
|
JPEG file and a better-looking image. Too large a smoothing factor will
|
||||||
|
visibly blur the image, however.
|
||||||
|
.PP
|
||||||
|
Switches for wizards:
|
||||||
|
.TP
|
||||||
|
.B \-baseline
|
||||||
|
Force baseline-compatible quantization tables to be generated. This clamps
|
||||||
|
quantization values to 8 bits even at low quality settings. (This switch is
|
||||||
|
poorly named, since it does not ensure that the output is actually baseline
|
||||||
|
JPEG. For example, you can use
|
||||||
|
.B \-baseline
|
||||||
|
and
|
||||||
|
.B \-progressive
|
||||||
|
together.)
|
||||||
|
.TP
|
||||||
|
.BI \-qtables " file"
|
||||||
|
Use the quantization tables given in the specified text file.
|
||||||
|
.TP
|
||||||
|
.BI \-qslots " N[,...]"
|
||||||
|
Select which quantization table to use for each color component.
|
||||||
|
.TP
|
||||||
|
.BI \-sample " HxV[,...]"
|
||||||
|
Set JPEG sampling factors for each color component.
|
||||||
|
.TP
|
||||||
|
.BI \-scans " file"
|
||||||
|
Use the scan script given in the specified text file.
|
||||||
|
.PP
|
||||||
|
The "wizard" switches are intended for experimentation with JPEG. If you
|
||||||
|
don't know what you are doing, \fBdon't use them\fR. These switches are
|
||||||
|
documented further in the file wizard.txt.
|
||||||
|
.SH EXAMPLES
|
||||||
|
.LP
|
||||||
|
This example compresses the PPM file foo.ppm with a quality factor of
|
||||||
|
60 and saves the output as foo.jpg:
|
||||||
|
.IP
|
||||||
|
.B cjpeg \-quality
|
||||||
|
.I 60 foo.ppm
|
||||||
|
.B >
|
||||||
|
.I foo.jpg
|
||||||
|
.SH HINTS
|
||||||
|
Color GIF files are not the ideal input for JPEG; JPEG is really intended for
|
||||||
|
compressing full-color (24-bit) images. In particular, don't try to convert
|
||||||
|
cartoons, line drawings, and other images that have only a few distinct
|
||||||
|
colors. GIF works great on these, JPEG does not. If you want to convert a
|
||||||
|
GIF to JPEG, you should experiment with
|
||||||
|
.BR cjpeg 's
|
||||||
|
.B \-quality
|
||||||
|
and
|
||||||
|
.B \-smooth
|
||||||
|
options to get a satisfactory conversion.
|
||||||
|
.B \-smooth 10
|
||||||
|
or so is often helpful.
|
||||||
|
.PP
|
||||||
|
Avoid running an image through a series of JPEG compression/decompression
|
||||||
|
cycles. Image quality loss will accumulate; after ten or so cycles the image
|
||||||
|
may be noticeably worse than it was after one cycle. It's best to use a
|
||||||
|
lossless format while manipulating an image, then convert to JPEG format when
|
||||||
|
you are ready to file the image away.
|
||||||
|
.PP
|
||||||
|
The
|
||||||
|
.B \-optimize
|
||||||
|
option to
|
||||||
|
.B cjpeg
|
||||||
|
is worth using when you are making a "final" version for posting or archiving.
|
||||||
|
It's also a win when you are using low quality settings to make very small
|
||||||
|
JPEG files; the percentage improvement is often a lot more than it is on
|
||||||
|
larger files. (At present,
|
||||||
|
.B \-optimize
|
||||||
|
mode is always selected when generating progressive JPEG files.)
|
||||||
|
.SH ENVIRONMENT
|
||||||
|
.TP
|
||||||
|
.B JPEGMEM
|
||||||
|
If this environment variable is set, its value is the default memory limit.
|
||||||
|
The value is specified as described for the
|
||||||
|
.B \-maxmemory
|
||||||
|
switch.
|
||||||
|
.B JPEGMEM
|
||||||
|
overrides the default value specified when the program was compiled, and
|
||||||
|
itself is overridden by an explicit
|
||||||
|
.BR \-maxmemory .
|
||||||
|
.SH SEE ALSO
|
||||||
|
.BR djpeg (1),
|
||||||
|
.BR jpegtran (1),
|
||||||
|
.BR rdjpgcom (1),
|
||||||
|
.BR wrjpgcom (1)
|
||||||
|
.br
|
||||||
|
.BR ppm (5),
|
||||||
|
.BR pgm (5)
|
||||||
|
.br
|
||||||
|
Wallace, Gregory K. "The JPEG Still Picture Compression Standard",
|
||||||
|
Communications of the ACM, April 1991 (vol. 34, no. 4), pp. 30-44.
|
||||||
|
.SH AUTHOR
|
||||||
|
Independent JPEG Group
|
||||||
|
.SH BUGS
|
||||||
|
Support for GIF input files was removed in cjpeg v6b due to concerns over
|
||||||
|
the Unisys LZW patent. Although this patent expired in 2006, cjpeg still
|
||||||
|
lacks GIF support, for these historical reasons. (Conversion of GIF files to
|
||||||
|
JPEG is usually a bad idea anyway.)
|
||||||
|
.PP
|
||||||
|
Not all variants of BMP and Targa file formats are supported.
|
||||||
|
.PP
|
||||||
|
The
|
||||||
|
.B \-targa
|
||||||
|
switch is not a bug, it's a feature. (It would be a bug if the Targa format
|
||||||
|
designers had not been clueless.)
|
605
library/deps/libjpeg-turbo/cjpeg.c
Normal file
|
@ -0,0 +1,605 @@
|
||||||
|
/*
|
||||||
|
* cjpeg.c
|
||||||
|
*
|
||||||
|
* Copyright (C) 1991-1998, Thomas G. Lane.
|
||||||
|
* Modified 2003-2008 by Guido Vollbeding.
|
||||||
|
* Copyright (C) 2010, D. R. Commander.
|
||||||
|
* This file is part of the Independent JPEG Group's software.
|
||||||
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
|
*
|
||||||
|
* This file contains a command-line user interface for the JPEG compressor.
|
||||||
|
* It should work on any system with Unix- or MS-DOS-style command lines.
|
||||||
|
*
|
||||||
|
* Two different command line styles are permitted, depending on the
|
||||||
|
* compile-time switch TWO_FILE_COMMANDLINE:
|
||||||
|
* cjpeg [options] inputfile outputfile
|
||||||
|
* cjpeg [options] [inputfile]
|
||||||
|
* In the second style, output is always to standard output, which you'd
|
||||||
|
* normally redirect to a file or pipe to some other program. Input is
|
||||||
|
* either from a named file or from standard input (typically redirected).
|
||||||
|
* The second style is convenient on Unix but is unhelpful on systems that
|
||||||
|
* don't support pipes. Also, you MUST use the first style if your system
|
||||||
|
* doesn't do binary I/O to stdin/stdout.
|
||||||
|
* To simplify script writing, the "-outfile" switch is provided. The syntax
|
||||||
|
* cjpeg [options] -outfile outputfile inputfile
|
||||||
|
* works regardless of which command line style is used.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
|
||||||
|
#include "jversion.h" /* for version message */
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
|
#ifdef USE_CCOMMAND /* command-line reader for Macintosh */
|
||||||
|
#ifdef __MWERKS__
|
||||||
|
#include <SIOUX.h> /* Metrowerks needs this */
|
||||||
|
#include <console.h> /* ... and this */
|
||||||
|
#endif
|
||||||
|
#ifdef THINK_C
|
||||||
|
#include <console.h> /* Think declares it here */
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Create the add-on message string table. */
|
||||||
|
|
||||||
|
#define JMESSAGE(code,string) string ,
|
||||||
|
|
||||||
|
static const char * const cdjpeg_message_table[] = {
|
||||||
|
#include "cderror.h"
|
||||||
|
NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This routine determines what format the input file is,
|
||||||
|
* and selects the appropriate input-reading module.
|
||||||
|
*
|
||||||
|
* To determine which family of input formats the file belongs to,
|
||||||
|
* we may look only at the first byte of the file, since C does not
|
||||||
|
* guarantee that more than one character can be pushed back with ungetc.
|
||||||
|
* Looking at additional bytes would require one of these approaches:
|
||||||
|
* 1) assume we can fseek() the input file (fails for piped input);
|
||||||
|
* 2) assume we can push back more than one character (works in
|
||||||
|
* some C implementations, but unportable);
|
||||||
|
* 3) provide our own buffering (breaks input readers that want to use
|
||||||
|
* stdio directly, such as the RLE library);
|
||||||
|
* or 4) don't put back the data, and modify the input_init methods to assume
|
||||||
|
* they start reading after the start of file (also breaks RLE library).
|
||||||
|
* #1 is attractive for MS-DOS but is untenable on Unix.
|
||||||
|
*
|
||||||
|
* The most portable solution for file types that can't be identified by their
|
||||||
|
* first byte is to make the user tell us what they are. This is also the
|
||||||
|
* only approach for "raw" file types that contain only arbitrary values.
|
||||||
|
* We presently apply this method for Targa files. Most of the time Targa
|
||||||
|
* files start with 0x00, so we recognize that case. Potentially, however,
|
||||||
|
* a Targa file could start with any byte value (byte 0 is the length of the
|
||||||
|
* seldom-used ID field), so we provide a switch to force Targa input mode.
|
||||||
|
*/
|
||||||
|
|
||||||
|
static boolean is_targa; /* records user -targa switch */
|
||||||
|
|
||||||
|
|
||||||
|
LOCAL(cjpeg_source_ptr)
|
||||||
|
select_file_type (j_compress_ptr cinfo, FILE * infile)
|
||||||
|
{
|
||||||
|
int c;
|
||||||
|
|
||||||
|
if (is_targa) {
|
||||||
|
#ifdef TARGA_SUPPORTED
|
||||||
|
return jinit_read_targa(cinfo);
|
||||||
|
#else
|
||||||
|
ERREXIT(cinfo, JERR_TGA_NOTCOMP);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((c = getc(infile)) == EOF)
|
||||||
|
ERREXIT(cinfo, JERR_INPUT_EMPTY);
|
||||||
|
if (ungetc(c, infile) == EOF)
|
||||||
|
ERREXIT(cinfo, JERR_UNGETC_FAILED);
|
||||||
|
|
||||||
|
switch (c) {
|
||||||
|
#ifdef BMP_SUPPORTED
|
||||||
|
case 'B':
|
||||||
|
return jinit_read_bmp(cinfo);
|
||||||
|
#endif
|
||||||
|
#ifdef GIF_SUPPORTED
|
||||||
|
case 'G':
|
||||||
|
return jinit_read_gif(cinfo);
|
||||||
|
#endif
|
||||||
|
#ifdef PPM_SUPPORTED
|
||||||
|
case 'P':
|
||||||
|
return jinit_read_ppm(cinfo);
|
||||||
|
#endif
|
||||||
|
#ifdef RLE_SUPPORTED
|
||||||
|
case 'R':
|
||||||
|
return jinit_read_rle(cinfo);
|
||||||
|
#endif
|
||||||
|
#ifdef TARGA_SUPPORTED
|
||||||
|
case 0x00:
|
||||||
|
return jinit_read_targa(cinfo);
|
||||||
|
#endif
|
||||||
|
default:
|
||||||
|
ERREXIT(cinfo, JERR_UNKNOWN_FORMAT);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return NULL; /* suppress compiler warnings */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Argument-parsing code.
|
||||||
|
* The switch parser is designed to be useful with DOS-style command line
|
||||||
|
* syntax, ie, intermixed switches and file names, where only the switches
|
||||||
|
* to the left of a given file name affect processing of that file.
|
||||||
|
* The main program in this file doesn't actually use this capability...
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
static const char * progname; /* program name for error messages */
|
||||||
|
static char * outfilename; /* for -outfile switch */
|
||||||
|
|
||||||
|
|
||||||
|
LOCAL(void)
|
||||||
|
usage (void)
|
||||||
|
/* complain about bad command line */
|
||||||
|
{
|
||||||
|
fprintf(stderr, "usage: %s [switches] ", progname);
|
||||||
|
#ifdef TWO_FILE_COMMANDLINE
|
||||||
|
fprintf(stderr, "inputfile outputfile\n");
|
||||||
|
#else
|
||||||
|
fprintf(stderr, "[inputfile]\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
fprintf(stderr, "Switches (names may be abbreviated):\n");
|
||||||
|
fprintf(stderr, " -quality N[,...] Compression quality (0..100; 5-95 is useful range)\n");
|
||||||
|
fprintf(stderr, " -grayscale Create monochrome JPEG file\n");
|
||||||
|
#ifdef ENTROPY_OPT_SUPPORTED
|
||||||
|
fprintf(stderr, " -optimize Optimize Huffman table (smaller file, but slow compression)\n");
|
||||||
|
#endif
|
||||||
|
#ifdef C_PROGRESSIVE_SUPPORTED
|
||||||
|
fprintf(stderr, " -progressive Create progressive JPEG file\n");
|
||||||
|
#endif
|
||||||
|
#ifdef TARGA_SUPPORTED
|
||||||
|
fprintf(stderr, " -targa Input file is Targa format (usually not needed)\n");
|
||||||
|
#endif
|
||||||
|
fprintf(stderr, "Switches for advanced users:\n");
|
||||||
|
#ifdef C_ARITH_CODING_SUPPORTED
|
||||||
|
fprintf(stderr, " -arithmetic Use arithmetic coding\n");
|
||||||
|
#endif
|
||||||
|
#ifdef DCT_ISLOW_SUPPORTED
|
||||||
|
fprintf(stderr, " -dct int Use integer DCT method%s\n",
|
||||||
|
(JDCT_DEFAULT == JDCT_ISLOW ? " (default)" : ""));
|
||||||
|
#endif
|
||||||
|
#ifdef DCT_IFAST_SUPPORTED
|
||||||
|
fprintf(stderr, " -dct fast Use fast integer DCT (less accurate)%s\n",
|
||||||
|
(JDCT_DEFAULT == JDCT_IFAST ? " (default)" : ""));
|
||||||
|
#endif
|
||||||
|
#ifdef DCT_FLOAT_SUPPORTED
|
||||||
|
fprintf(stderr, " -dct float Use floating-point DCT method%s\n",
|
||||||
|
(JDCT_DEFAULT == JDCT_FLOAT ? " (default)" : ""));
|
||||||
|
#endif
|
||||||
|
fprintf(stderr, " -restart N Set restart interval in rows, or in blocks with B\n");
|
||||||
|
#ifdef INPUT_SMOOTHING_SUPPORTED
|
||||||
|
fprintf(stderr, " -smooth N Smooth dithered input (N=1..100 is strength)\n");
|
||||||
|
#endif
|
||||||
|
fprintf(stderr, " -maxmemory N Maximum memory to use (in kbytes)\n");
|
||||||
|
fprintf(stderr, " -outfile name Specify name for output file\n");
|
||||||
|
fprintf(stderr, " -verbose or -debug Emit debug output\n");
|
||||||
|
fprintf(stderr, "Switches for wizards:\n");
|
||||||
|
fprintf(stderr, " -baseline Force baseline quantization tables\n");
|
||||||
|
fprintf(stderr, " -qtables file Use quantization tables given in file\n");
|
||||||
|
fprintf(stderr, " -qslots N[,...] Set component quantization tables\n");
|
||||||
|
fprintf(stderr, " -sample HxV[,...] Set component sampling factors\n");
|
||||||
|
#ifdef C_MULTISCAN_FILES_SUPPORTED
|
||||||
|
fprintf(stderr, " -scans file Create multi-scan JPEG per script file\n");
|
||||||
|
#endif
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
LOCAL(int)
|
||||||
|
parse_switches (j_compress_ptr cinfo, int argc, char **argv,
|
||||||
|
int last_file_arg_seen, boolean for_real)
|
||||||
|
/* Parse optional switches.
|
||||||
|
* Returns argv[] index of first file-name argument (== argc if none).
|
||||||
|
* Any file names with indexes <= last_file_arg_seen are ignored;
|
||||||
|
* they have presumably been processed in a previous iteration.
|
||||||
|
* (Pass 0 for last_file_arg_seen on the first or only iteration.)
|
||||||
|
* for_real is FALSE on the first (dummy) pass; we may skip any expensive
|
||||||
|
* processing.
|
||||||
|
*/
|
||||||
|
{
|
||||||
|
int argn;
|
||||||
|
char * arg;
|
||||||
|
boolean force_baseline;
|
||||||
|
boolean simple_progressive;
|
||||||
|
char * qualityarg = NULL; /* saves -quality parm if any */
|
||||||
|
char * qtablefile = NULL; /* saves -qtables filename if any */
|
||||||
|
char * qslotsarg = NULL; /* saves -qslots parm if any */
|
||||||
|
char * samplearg = NULL; /* saves -sample parm if any */
|
||||||
|
char * scansarg = NULL; /* saves -scans parm if any */
|
||||||
|
|
||||||
|
/* Set up default JPEG parameters. */
|
||||||
|
|
||||||
|
force_baseline = FALSE; /* by default, allow 16-bit quantizers */
|
||||||
|
simple_progressive = FALSE;
|
||||||
|
is_targa = FALSE;
|
||||||
|
outfilename = NULL;
|
||||||
|
cinfo->err->trace_level = 0;
|
||||||
|
|
||||||
|
/* Scan command line options, adjust parameters */
|
||||||
|
|
||||||
|
for (argn = 1; argn < argc; argn++) {
|
||||||
|
arg = argv[argn];
|
||||||
|
if (*arg != '-') {
|
||||||
|
/* Not a switch, must be a file name argument */
|
||||||
|
if (argn <= last_file_arg_seen) {
|
||||||
|
outfilename = NULL; /* -outfile applies to just one input file */
|
||||||
|
continue; /* ignore this name if previously processed */
|
||||||
|
}
|
||||||
|
break; /* else done parsing switches */
|
||||||
|
}
|
||||||
|
arg++; /* advance past switch marker character */
|
||||||
|
|
||||||
|
if (keymatch(arg, "arithmetic", 1)) {
|
||||||
|
/* Use arithmetic coding. */
|
||||||
|
#ifdef C_ARITH_CODING_SUPPORTED
|
||||||
|
cinfo->arith_code = TRUE;
|
||||||
|
#else
|
||||||
|
fprintf(stderr, "%s: sorry, arithmetic coding not supported\n",
|
||||||
|
progname);
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "baseline", 1)) {
|
||||||
|
/* Force baseline-compatible output (8-bit quantizer values). */
|
||||||
|
force_baseline = TRUE;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "dct", 2)) {
|
||||||
|
/* Select DCT algorithm. */
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
if (keymatch(argv[argn], "int", 1)) {
|
||||||
|
cinfo->dct_method = JDCT_ISLOW;
|
||||||
|
} else if (keymatch(argv[argn], "fast", 2)) {
|
||||||
|
cinfo->dct_method = JDCT_IFAST;
|
||||||
|
} else if (keymatch(argv[argn], "float", 2)) {
|
||||||
|
cinfo->dct_method = JDCT_FLOAT;
|
||||||
|
} else
|
||||||
|
usage();
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "debug", 1) || keymatch(arg, "verbose", 1)) {
|
||||||
|
/* Enable debug printouts. */
|
||||||
|
/* On first -d, print version identification */
|
||||||
|
static boolean printed_version = FALSE;
|
||||||
|
|
||||||
|
if (! printed_version) {
|
||||||
|
fprintf(stderr, "%s version %s (build %s)\n",
|
||||||
|
PACKAGE_NAME, VERSION, BUILD);
|
||||||
|
fprintf(stderr, "%s\n\n", JCOPYRIGHT);
|
||||||
|
fprintf(stderr, "Emulating The Independent JPEG Group's libjpeg, version %s\n\n",
|
||||||
|
JVERSION);
|
||||||
|
printed_version = TRUE;
|
||||||
|
}
|
||||||
|
cinfo->err->trace_level++;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "grayscale", 2) || keymatch(arg, "greyscale",2)) {
|
||||||
|
/* Force a monochrome JPEG file to be generated. */
|
||||||
|
jpeg_set_colorspace(cinfo, JCS_GRAYSCALE);
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "maxmemory", 3)) {
|
||||||
|
/* Maximum memory in Kb (or Mb with 'm'). */
|
||||||
|
long lval;
|
||||||
|
char ch = 'x';
|
||||||
|
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
|
||||||
|
usage();
|
||||||
|
if (ch == 'm' || ch == 'M')
|
||||||
|
lval *= 1000L;
|
||||||
|
cinfo->mem->max_memory_to_use = lval * 1000L;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "optimize", 1) || keymatch(arg, "optimise", 1)) {
|
||||||
|
/* Enable entropy parm optimization. */
|
||||||
|
#ifdef ENTROPY_OPT_SUPPORTED
|
||||||
|
cinfo->optimize_coding = TRUE;
|
||||||
|
#else
|
||||||
|
fprintf(stderr, "%s: sorry, entropy optimization was not compiled\n",
|
||||||
|
progname);
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "outfile", 4)) {
|
||||||
|
/* Set output file name. */
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
outfilename = argv[argn]; /* save it away for later use */
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "progressive", 1)) {
|
||||||
|
/* Select simple progressive mode. */
|
||||||
|
#ifdef C_PROGRESSIVE_SUPPORTED
|
||||||
|
simple_progressive = TRUE;
|
||||||
|
/* We must postpone execution until num_components is known. */
|
||||||
|
#else
|
||||||
|
fprintf(stderr, "%s: sorry, progressive output was not compiled\n",
|
||||||
|
progname);
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "quality", 1)) {
|
||||||
|
/* Quality ratings (quantization table scaling factors). */
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
qualityarg = argv[argn];
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "qslots", 2)) {
|
||||||
|
/* Quantization table slot numbers. */
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
qslotsarg = argv[argn];
|
||||||
|
/* Must delay setting qslots until after we have processed any
|
||||||
|
* colorspace-determining switches, since jpeg_set_colorspace sets
|
||||||
|
* default quant table numbers.
|
||||||
|
*/
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "qtables", 2)) {
|
||||||
|
/* Quantization tables fetched from file. */
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
qtablefile = argv[argn];
|
||||||
|
/* We postpone actually reading the file in case -quality comes later. */
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "restart", 1)) {
|
||||||
|
/* Restart interval in MCU rows (or in MCUs with 'b'). */
|
||||||
|
long lval;
|
||||||
|
char ch = 'x';
|
||||||
|
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
|
||||||
|
usage();
|
||||||
|
if (lval < 0 || lval > 65535L)
|
||||||
|
usage();
|
||||||
|
if (ch == 'b' || ch == 'B') {
|
||||||
|
cinfo->restart_interval = (unsigned int) lval;
|
||||||
|
cinfo->restart_in_rows = 0; /* else prior '-restart n' overrides me */
|
||||||
|
} else {
|
||||||
|
cinfo->restart_in_rows = (int) lval;
|
||||||
|
/* restart_interval will be computed during startup */
|
||||||
|
}
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "sample", 2)) {
|
||||||
|
/* Set sampling factors. */
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
samplearg = argv[argn];
|
||||||
|
/* Must delay setting sample factors until after we have processed any
|
||||||
|
* colorspace-determining switches, since jpeg_set_colorspace sets
|
||||||
|
* default sampling factors.
|
||||||
|
*/
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "scans", 4)) {
|
||||||
|
/* Set scan script. */
|
||||||
|
#ifdef C_MULTISCAN_FILES_SUPPORTED
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
scansarg = argv[argn];
|
||||||
|
/* We must postpone reading the file in case -progressive appears. */
|
||||||
|
#else
|
||||||
|
fprintf(stderr, "%s: sorry, multi-scan output was not compiled\n",
|
||||||
|
progname);
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "smooth", 2)) {
|
||||||
|
/* Set input smoothing factor. */
|
||||||
|
int val;
|
||||||
|
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
if (sscanf(argv[argn], "%d", &val) != 1)
|
||||||
|
usage();
|
||||||
|
if (val < 0 || val > 100)
|
||||||
|
usage();
|
||||||
|
cinfo->smoothing_factor = val;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "targa", 1)) {
|
||||||
|
/* Input file is Targa format. */
|
||||||
|
is_targa = TRUE;
|
||||||
|
|
||||||
|
} else {
|
||||||
|
usage(); /* bogus switch */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Post-switch-scanning cleanup */
|
||||||
|
|
||||||
|
if (for_real) {
|
||||||
|
|
||||||
|
/* Set quantization tables for selected quality. */
|
||||||
|
/* Some or all may be overridden if -qtables is present. */
|
||||||
|
if (qualityarg != NULL) /* process -quality if it was present */
|
||||||
|
if (! set_quality_ratings(cinfo, qualityarg, force_baseline))
|
||||||
|
usage();
|
||||||
|
|
||||||
|
if (qtablefile != NULL) /* process -qtables if it was present */
|
||||||
|
if (! read_quant_tables(cinfo, qtablefile, force_baseline))
|
||||||
|
usage();
|
||||||
|
|
||||||
|
if (qslotsarg != NULL) /* process -qslots if it was present */
|
||||||
|
if (! set_quant_slots(cinfo, qslotsarg))
|
||||||
|
usage();
|
||||||
|
|
||||||
|
if (samplearg != NULL) /* process -sample if it was present */
|
||||||
|
if (! set_sample_factors(cinfo, samplearg))
|
||||||
|
usage();
|
||||||
|
|
||||||
|
#ifdef C_PROGRESSIVE_SUPPORTED
|
||||||
|
if (simple_progressive) /* process -progressive; -scans can override */
|
||||||
|
jpeg_simple_progression(cinfo);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef C_MULTISCAN_FILES_SUPPORTED
|
||||||
|
if (scansarg != NULL) /* process -scans if it was present */
|
||||||
|
if (! read_scan_script(cinfo, scansarg))
|
||||||
|
usage();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
return argn; /* return index of next arg (file name) */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The main program.
|
||||||
|
*/
|
||||||
|
|
||||||
|
int
|
||||||
|
main (int argc, char **argv)
|
||||||
|
{
|
||||||
|
struct jpeg_compress_struct cinfo;
|
||||||
|
struct jpeg_error_mgr jerr;
|
||||||
|
#ifdef PROGRESS_REPORT
|
||||||
|
struct cdjpeg_progress_mgr progress;
|
||||||
|
#endif
|
||||||
|
int file_index;
|
||||||
|
cjpeg_source_ptr src_mgr;
|
||||||
|
FILE * input_file;
|
||||||
|
FILE * output_file;
|
||||||
|
JDIMENSION num_scanlines;
|
||||||
|
|
||||||
|
/* On Mac, fetch a command line. */
|
||||||
|
#ifdef USE_CCOMMAND
|
||||||
|
argc = ccommand(&argv);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
progname = argv[0];
|
||||||
|
if (progname == NULL || progname[0] == 0)
|
||||||
|
progname = "cjpeg"; /* in case C library doesn't provide it */
|
||||||
|
|
||||||
|
/* Initialize the JPEG compression object with default error handling. */
|
||||||
|
cinfo.err = jpeg_std_error(&jerr);
|
||||||
|
jpeg_create_compress(&cinfo);
|
||||||
|
/* Add some application-specific error messages (from cderror.h) */
|
||||||
|
jerr.addon_message_table = cdjpeg_message_table;
|
||||||
|
jerr.first_addon_message = JMSG_FIRSTADDONCODE;
|
||||||
|
jerr.last_addon_message = JMSG_LASTADDONCODE;
|
||||||
|
|
||||||
|
/* Now safe to enable signal catcher. */
|
||||||
|
#ifdef NEED_SIGNAL_CATCHER
|
||||||
|
enable_signal_catcher((j_common_ptr) &cinfo);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Initialize JPEG parameters.
|
||||||
|
* Much of this may be overridden later.
|
||||||
|
* In particular, we don't yet know the input file's color space,
|
||||||
|
* but we need to provide some value for jpeg_set_defaults() to work.
|
||||||
|
*/
|
||||||
|
|
||||||
|
cinfo.in_color_space = JCS_RGB; /* arbitrary guess */
|
||||||
|
jpeg_set_defaults(&cinfo);
|
||||||
|
|
||||||
|
/* Scan command line to find file names.
|
||||||
|
* It is convenient to use just one switch-parsing routine, but the switch
|
||||||
|
* values read here are ignored; we will rescan the switches after opening
|
||||||
|
* the input file.
|
||||||
|
*/
|
||||||
|
|
||||||
|
file_index = parse_switches(&cinfo, argc, argv, 0, FALSE);
|
||||||
|
|
||||||
|
#ifdef TWO_FILE_COMMANDLINE
|
||||||
|
/* Must have either -outfile switch or explicit output file name */
|
||||||
|
if (outfilename == NULL) {
|
||||||
|
if (file_index != argc-2) {
|
||||||
|
fprintf(stderr, "%s: must name one input and one output file\n",
|
||||||
|
progname);
|
||||||
|
usage();
|
||||||
|
}
|
||||||
|
outfilename = argv[file_index+1];
|
||||||
|
} else {
|
||||||
|
if (file_index != argc-1) {
|
||||||
|
fprintf(stderr, "%s: must name one input and one output file\n",
|
||||||
|
progname);
|
||||||
|
usage();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
/* Unix style: expect zero or one file name */
|
||||||
|
if (file_index < argc-1) {
|
||||||
|
fprintf(stderr, "%s: only one input file\n", progname);
|
||||||
|
usage();
|
||||||
|
}
|
||||||
|
#endif /* TWO_FILE_COMMANDLINE */
|
||||||
|
|
||||||
|
/* Open the input file. */
|
||||||
|
if (file_index < argc) {
|
||||||
|
if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
|
||||||
|
fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
/* default input file is stdin */
|
||||||
|
input_file = read_stdin();
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Open the output file. */
|
||||||
|
if (outfilename != NULL) {
|
||||||
|
if ((output_file = fopen(outfilename, WRITE_BINARY)) == NULL) {
|
||||||
|
fprintf(stderr, "%s: can't open %s\n", progname, outfilename);
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
/* default output file is stdout */
|
||||||
|
output_file = write_stdout();
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef PROGRESS_REPORT
|
||||||
|
start_progress_monitor((j_common_ptr) &cinfo, &progress);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Figure out the input file format, and set up to read it. */
|
||||||
|
src_mgr = select_file_type(&cinfo, input_file);
|
||||||
|
src_mgr->input_file = input_file;
|
||||||
|
|
||||||
|
/* Read the input file header to obtain file size & colorspace. */
|
||||||
|
(*src_mgr->start_input) (&cinfo, src_mgr);
|
||||||
|
|
||||||
|
/* Now that we know input colorspace, fix colorspace-dependent defaults */
|
||||||
|
jpeg_default_colorspace(&cinfo);
|
||||||
|
|
||||||
|
/* Adjust default compression parameters by re-parsing the options */
|
||||||
|
file_index = parse_switches(&cinfo, argc, argv, 0, TRUE);
|
||||||
|
|
||||||
|
/* Specify data destination for compression */
|
||||||
|
jpeg_stdio_dest(&cinfo, output_file);
|
||||||
|
|
||||||
|
/* Start compressor */
|
||||||
|
jpeg_start_compress(&cinfo, TRUE);
|
||||||
|
|
||||||
|
/* Process data */
|
||||||
|
while (cinfo.next_scanline < cinfo.image_height) {
|
||||||
|
num_scanlines = (*src_mgr->get_pixel_rows) (&cinfo, src_mgr);
|
||||||
|
(void) jpeg_write_scanlines(&cinfo, src_mgr->buffer, num_scanlines);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Finish compression and release memory */
|
||||||
|
(*src_mgr->finish_input) (&cinfo, src_mgr);
|
||||||
|
jpeg_finish_compress(&cinfo);
|
||||||
|
jpeg_destroy_compress(&cinfo);
|
||||||
|
|
||||||
|
/* Close files, if we opened them */
|
||||||
|
if (input_file != stdin)
|
||||||
|
fclose(input_file);
|
||||||
|
if (output_file != stdout)
|
||||||
|
fclose(output_file);
|
||||||
|
|
||||||
|
#ifdef PROGRESS_REPORT
|
||||||
|
end_progress_monitor((j_common_ptr) &cinfo);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* All done. */
|
||||||
|
exit(jerr.num_warnings ? EXIT_WARNING : EXIT_SUCCESS);
|
||||||
|
return 0; /* suppress no-return-value warnings */
|
||||||
|
}
|
118
library/deps/libjpeg-turbo/coderules.txt
Normal file
|
@ -0,0 +1,118 @@
|
||||||
|
IJG JPEG LIBRARY: CODING RULES
|
||||||
|
|
||||||
|
Copyright (C) 1991-1996, Thomas G. Lane.
|
||||||
|
This file is part of the Independent JPEG Group's software.
|
||||||
|
For conditions of distribution and use, see the accompanying README file.
|
||||||
|
|
||||||
|
|
||||||
|
Since numerous people will be contributing code and bug fixes, it's important
|
||||||
|
to establish a common coding style. The goal of using similar coding styles
|
||||||
|
is much more important than the details of just what that style is.
|
||||||
|
|
||||||
|
In general we follow the recommendations of "Recommended C Style and Coding
|
||||||
|
Standards" revision 6.1 (Cannon et al. as modified by Spencer, Keppel and
|
||||||
|
Brader). This document is available in the IJG FTP archive (see
|
||||||
|
jpeg/doc/cstyle.ms.tbl.Z, or cstyle.txt.Z for those without nroff/tbl).
|
||||||
|
|
||||||
|
Block comments should be laid out thusly:
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Block comments in this style.
|
||||||
|
*/
|
||||||
|
|
||||||
|
We indent statements in K&R style, e.g.,
|
||||||
|
if (test) {
|
||||||
|
then-part;
|
||||||
|
} else {
|
||||||
|
else-part;
|
||||||
|
}
|
||||||
|
with two spaces per indentation level. (This indentation convention is
|
||||||
|
handled automatically by GNU Emacs and many other text editors.)
|
||||||
|
|
||||||
|
Multi-word names should be written in lower case with underscores, e.g.,
|
||||||
|
multi_word_name (not multiWordName). Preprocessor symbols and enum constants
|
||||||
|
are similar but upper case (MULTI_WORD_NAME). Names should be unique within
|
||||||
|
the first fifteen characters. (On some older systems, global names must be
|
||||||
|
unique within six characters. We accommodate this without cluttering the
|
||||||
|
source code by using macros to substitute shorter names.)
|
||||||
|
|
||||||
|
We use function prototypes everywhere; we rely on automatic source code
|
||||||
|
transformation to feed prototype-less C compilers. Transformation is done
|
||||||
|
by the simple and portable tool 'ansi2knr.c' (courtesy of Ghostscript).
|
||||||
|
ansi2knr is not very bright, so it imposes a format requirement on function
|
||||||
|
declarations: the function name MUST BEGIN IN COLUMN 1. Thus all functions
|
||||||
|
should be written in the following style:
|
||||||
|
|
||||||
|
LOCAL(int *)
|
||||||
|
function_name (int a, char *b)
|
||||||
|
{
|
||||||
|
code...
|
||||||
|
}
|
||||||
|
|
||||||
|
Note that each function definition must begin with GLOBAL(type), LOCAL(type),
|
||||||
|
or METHODDEF(type). These macros expand to "static type" or just "type" as
|
||||||
|
appropriate. They provide a readable indication of the routine's usage and
|
||||||
|
can readily be changed for special needs. (For instance, special linkage
|
||||||
|
keywords can be inserted for use in Windows DLLs.)
|
||||||
|
|
||||||
|
ansi2knr does not transform method declarations (function pointers in
|
||||||
|
structs). We handle these with a macro JMETHOD, defined as
|
||||||
|
#ifdef HAVE_PROTOTYPES
|
||||||
|
#define JMETHOD(type,methodname,arglist) type (*methodname) arglist
|
||||||
|
#else
|
||||||
|
#define JMETHOD(type,methodname,arglist) type (*methodname) ()
|
||||||
|
#endif
|
||||||
|
which is used like this:
|
||||||
|
struct function_pointers {
|
||||||
|
JMETHOD(void, init_entropy_encoder, (int somearg, jparms *jp));
|
||||||
|
JMETHOD(void, term_entropy_encoder, (void));
|
||||||
|
};
|
||||||
|
Note the set of parentheses surrounding the parameter list.
|
||||||
|
|
||||||
|
A similar solution is used for forward and external function declarations
|
||||||
|
(see the EXTERN and JPP macros).
|
||||||
|
|
||||||
|
If the code is to work on non-ANSI compilers, we cannot rely on a prototype
|
||||||
|
declaration to coerce actual parameters into the right types. Therefore, use
|
||||||
|
explicit casts on actual parameters whenever the actual parameter type is not
|
||||||
|
identical to the formal parameter. Beware of implicit conversions to "int".
|
||||||
|
|
||||||
|
It seems there are some non-ANSI compilers in which the sizeof() operator
|
||||||
|
is defined to return int, yet size_t is defined as long. Needless to say,
|
||||||
|
this is brain-damaged. Always use the SIZEOF() macro in place of sizeof(),
|
||||||
|
so that the result is guaranteed to be of type size_t.
|
||||||
|
|
||||||
|
|
||||||
|
The JPEG library is intended to be used within larger programs. Furthermore,
|
||||||
|
we want it to be reentrant so that it can be used by applications that process
|
||||||
|
multiple images concurrently. The following rules support these requirements:
|
||||||
|
|
||||||
|
1. Avoid direct use of file I/O, "malloc", error report printouts, etc;
|
||||||
|
pass these through the common routines provided.
|
||||||
|
|
||||||
|
2. Minimize global namespace pollution. Functions should be declared static
|
||||||
|
wherever possible. (Note that our method-based calling conventions help this
|
||||||
|
a lot: in many modules only the initialization function will ever need to be
|
||||||
|
called directly, so only that function need be externally visible.) All
|
||||||
|
global function names should begin with "jpeg_", and should have an
|
||||||
|
abbreviated name (unique in the first six characters) substituted by macro
|
||||||
|
when NEED_SHORT_EXTERNAL_NAMES is set.
|
||||||
|
|
||||||
|
3. Don't use global variables; anything that must be used in another module
|
||||||
|
should be in the common data structures.
|
||||||
|
|
||||||
|
4. Don't use static variables except for read-only constant tables. Variables
|
||||||
|
that should be private to a module can be placed into private structures (see
|
||||||
|
the system architecture document, structure.txt).
|
||||||
|
|
||||||
|
5. Source file names should begin with "j" for files that are part of the
|
||||||
|
library proper; source files that are not part of the library, such as cjpeg.c
|
||||||
|
and djpeg.c, do not begin with "j". Keep source file names to eight
|
||||||
|
characters (plus ".c" or ".h", etc) to make life easy for MS-DOSers. Keep
|
||||||
|
compression and decompression code in separate source files --- some
|
||||||
|
applications may want only one half of the library.
|
||||||
|
|
||||||
|
Note: these rules (particularly #4) are not followed religiously in the
|
||||||
|
modules that are used in cjpeg/djpeg but are not part of the JPEG library
|
||||||
|
proper. Those modules are not really intended to be used in other
|
||||||
|
applications.
|
140
library/deps/libjpeg-turbo/compile
Normal file
|
@ -0,0 +1,140 @@
|
||||||
|
#! /bin/sh
|
||||||
|
# Wrapper for compilers which do not understand `-c -o'.
|
||||||
|
|
||||||
|
scriptversion=2004-09-10.20
|
||||||
|
|
||||||
|
# Copyright (C) 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
|
||||||
|
# Written by Tom Tromey <tromey@cygnus.com>.
|
||||||
|
#
|
||||||
|
# This program 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 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
#
|
||||||
|
# This program 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 this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
# As a special exception to the GNU General Public License, if you
|
||||||
|
# distribute this file as part of a program that contains a
|
||||||
|
# configuration script generated by Autoconf, you may include it under
|
||||||
|
# the same distribution terms that you use for the rest of that program.
|
||||||
|
|
||||||
|
# This file is maintained in Automake, please report
|
||||||
|
# bugs to <bug-automake@gnu.org> or send patches to
|
||||||
|
# <automake-patches@gnu.org>.
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
'')
|
||||||
|
echo "$0: No command. Try \`$0 --help' for more information." 1>&2
|
||||||
|
exit 1;
|
||||||
|
;;
|
||||||
|
-h | --h*)
|
||||||
|
cat <<\EOF
|
||||||
|
Usage: compile [--help] [--version] PROGRAM [ARGS]
|
||||||
|
|
||||||
|
Wrapper for compilers which do not understand `-c -o'.
|
||||||
|
Remove `-o dest.o' from ARGS, run PROGRAM with the remaining
|
||||||
|
arguments, and rename the output as expected.
|
||||||
|
|
||||||
|
If you are trying to build a whole package this is not the
|
||||||
|
right script to run: please start by reading the file `INSTALL'.
|
||||||
|
|
||||||
|
Report bugs to <bug-automake@gnu.org>.
|
||||||
|
EOF
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
-v | --v*)
|
||||||
|
echo "compile $scriptversion"
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
ofile=
|
||||||
|
cfile=
|
||||||
|
eat=
|
||||||
|
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
if test -n "$eat"; then
|
||||||
|
eat=
|
||||||
|
else
|
||||||
|
case $1 in
|
||||||
|
-o)
|
||||||
|
# configure might choose to run compile as `compile cc -o foo foo.c'.
|
||||||
|
# So we strip `-o arg' only if arg is an object.
|
||||||
|
eat=1
|
||||||
|
case $2 in
|
||||||
|
*.o | *.obj)
|
||||||
|
ofile=$2
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set x "$@" -o "$2"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
*.c)
|
||||||
|
cfile=$1
|
||||||
|
set x "$@" "$1"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set x "$@" "$1"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
if test -z "$ofile" || test -z "$cfile"; then
|
||||||
|
# If no `-o' option was seen then we might have been invoked from a
|
||||||
|
# pattern rule where we don't need one. That is ok -- this is a
|
||||||
|
# normal compilation that the losing compiler can handle. If no
|
||||||
|
# `.c' file was seen then we are probably linking. That is also
|
||||||
|
# ok.
|
||||||
|
exec "$@"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Name of file we expect compiler to create.
|
||||||
|
cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
|
||||||
|
|
||||||
|
# Create the lock directory.
|
||||||
|
# Note: use `[/.-]' here to ensure that we don't use the same name
|
||||||
|
# that we are using for the .o file. Also, base the name on the expected
|
||||||
|
# object file name, since that is what matters with a parallel build.
|
||||||
|
lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d
|
||||||
|
while true; do
|
||||||
|
if mkdir "$lockdir" >/dev/null 2>&1; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
# FIXME: race condition here if user kills between mkdir and trap.
|
||||||
|
trap "rmdir '$lockdir'; exit 1" 1 2 15
|
||||||
|
|
||||||
|
# Run the compile.
|
||||||
|
"$@"
|
||||||
|
ret=$?
|
||||||
|
|
||||||
|
if test -f "$cofile"; then
|
||||||
|
mv "$cofile" "$ofile"
|
||||||
|
fi
|
||||||
|
|
||||||
|
rmdir "$lockdir"
|
||||||
|
exit $ret
|
||||||
|
|
||||||
|
# Local Variables:
|
||||||
|
# mode: shell-script
|
||||||
|
# sh-indentation: 2
|
||||||
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-end: "$"
|
||||||
|
# End:
|
1447
library/deps/libjpeg-turbo/config.guess
vendored
Normal file
130
library/deps/libjpeg-turbo/config.h
Normal file
|
@ -0,0 +1,130 @@
|
||||||
|
/* config.h. Generated by configure. */
|
||||||
|
/* config.h.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
|
/* Build number */
|
||||||
|
#define BUILD "20120225"
|
||||||
|
|
||||||
|
/* Support arithmetic encoding */
|
||||||
|
#define C_ARITH_CODING_SUPPORTED 1
|
||||||
|
|
||||||
|
/* Support arithmetic decoding */
|
||||||
|
#define D_ARITH_CODING_SUPPORTED 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||||
|
/* #undef HAVE_DLFCN_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <jni.h> header file. */
|
||||||
|
/* #undef HAVE_JNI_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `memcpy' function. */
|
||||||
|
#define HAVE_MEMCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <memory.h> header file. */
|
||||||
|
#define HAVE_MEMORY_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `memset' function. */
|
||||||
|
#define HAVE_MEMSET 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports prototypes */
|
||||||
|
#define HAVE_PROTOTYPES 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stddef.h> header file. */
|
||||||
|
#define HAVE_STDDEF_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stdint.h> header file. */
|
||||||
|
#define HAVE_STDINT_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||||
|
#define HAVE_STDLIB_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <strings.h> header file. */
|
||||||
|
#define HAVE_STRINGS_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <string.h> header file. */
|
||||||
|
#define HAVE_STRING_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||||
|
#define HAVE_SYS_TYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `unsigned char'. */
|
||||||
|
#define HAVE_UNSIGNED_CHAR 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `unsigned short'. */
|
||||||
|
#define HAVE_UNSIGNED_SHORT 1
|
||||||
|
|
||||||
|
/* Compiler does not support pointers to undefined structures. */
|
||||||
|
/* #undef INCOMPLETE_TYPES_BROKEN */
|
||||||
|
|
||||||
|
/* How to obtain function inlining. */
|
||||||
|
#define INLINE __attribute__((always_inline))
|
||||||
|
|
||||||
|
/* libjpeg API version */
|
||||||
|
#define JPEG_LIB_VERSION 80
|
||||||
|
|
||||||
|
/* libjpeg-turbo version */
|
||||||
|
#define LIBJPEG_TURBO_VERSION 1.2.0
|
||||||
|
|
||||||
|
/* Define if you have BSD-like bzero and bcopy */
|
||||||
|
/* #undef NEED_BSD_STRINGS */
|
||||||
|
|
||||||
|
/* Define if you need short function names */
|
||||||
|
/* #undef NEED_SHORT_EXTERNAL_NAMES */
|
||||||
|
|
||||||
|
/* Define if you have sys/types.h */
|
||||||
|
#define NEED_SYS_TYPES_H 1
|
||||||
|
|
||||||
|
/* Name of package */
|
||||||
|
#define PACKAGE "libjpeg-turbo"
|
||||||
|
|
||||||
|
/* Define to the address where bug reports for this package should be sent. */
|
||||||
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
|
/* Define to the full name of this package. */
|
||||||
|
#define PACKAGE_NAME "libjpeg-turbo"
|
||||||
|
|
||||||
|
/* Define to the full name and version of this package. */
|
||||||
|
#define PACKAGE_STRING "libjpeg-turbo 1.2.0"
|
||||||
|
|
||||||
|
/* Define to the one symbol short name of this package. */
|
||||||
|
#define PACKAGE_TARNAME "libjpeg-turbo"
|
||||||
|
|
||||||
|
/* Define to the version of this package. */
|
||||||
|
#define PACKAGE_VERSION "1.2.0"
|
||||||
|
|
||||||
|
/* Define if shift is unsigned */
|
||||||
|
/* #undef RIGHT_SHIFT_IS_UNSIGNED */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the ANSI C header files. */
|
||||||
|
#define STDC_HEADERS 1
|
||||||
|
|
||||||
|
/* Version number of package */
|
||||||
|
#define VERSION "1.2.0"
|
||||||
|
|
||||||
|
/* Use accelerated SIMD routines. */
|
||||||
|
#define WITH_SIMD 1
|
||||||
|
|
||||||
|
/* Define to 1 if type `char' is unsigned and you are not using gcc. */
|
||||||
|
#ifndef __CHAR_UNSIGNED__
|
||||||
|
/* # undef __CHAR_UNSIGNED__ */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Define to empty if `const' does not conform to ANSI C. */
|
||||||
|
/* #undef const */
|
||||||
|
|
||||||
|
/* Define to `__inline__' or `__inline' if that's what the C compiler
|
||||||
|
calls it, or to nothing if 'inline' is not supported under any name. */
|
||||||
|
#ifndef __cplusplus
|
||||||
|
/* #undef inline */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Define to `unsigned' if <sys/types.h> does not define. */
|
||||||
|
/* #undef size_t */
|
129
library/deps/libjpeg-turbo/config.h.in
Normal file
|
@ -0,0 +1,129 @@
|
||||||
|
/* config.h.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
|
/* Build number */
|
||||||
|
#undef BUILD
|
||||||
|
|
||||||
|
/* Support arithmetic encoding */
|
||||||
|
#undef C_ARITH_CODING_SUPPORTED
|
||||||
|
|
||||||
|
/* Support arithmetic decoding */
|
||||||
|
#undef D_ARITH_CODING_SUPPORTED
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||||
|
#undef HAVE_DLFCN_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
|
#undef HAVE_INTTYPES_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <jni.h> header file. */
|
||||||
|
#undef HAVE_JNI_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `memcpy' function. */
|
||||||
|
#undef HAVE_MEMCPY
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <memory.h> header file. */
|
||||||
|
#undef HAVE_MEMORY_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `memset' function. */
|
||||||
|
#undef HAVE_MEMSET
|
||||||
|
|
||||||
|
/* Define if your compiler supports prototypes */
|
||||||
|
#undef HAVE_PROTOTYPES
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stddef.h> header file. */
|
||||||
|
#undef HAVE_STDDEF_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stdint.h> header file. */
|
||||||
|
#undef HAVE_STDINT_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||||
|
#undef HAVE_STDLIB_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <strings.h> header file. */
|
||||||
|
#undef HAVE_STRINGS_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <string.h> header file. */
|
||||||
|
#undef HAVE_STRING_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
|
#undef HAVE_SYS_STAT_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||||
|
#undef HAVE_SYS_TYPES_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
|
#undef HAVE_UNISTD_H
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `unsigned char'. */
|
||||||
|
#undef HAVE_UNSIGNED_CHAR
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `unsigned short'. */
|
||||||
|
#undef HAVE_UNSIGNED_SHORT
|
||||||
|
|
||||||
|
/* Compiler does not support pointers to undefined structures. */
|
||||||
|
#undef INCOMPLETE_TYPES_BROKEN
|
||||||
|
|
||||||
|
/* How to obtain function inlining. */
|
||||||
|
#undef INLINE
|
||||||
|
|
||||||
|
/* libjpeg API version */
|
||||||
|
#undef JPEG_LIB_VERSION
|
||||||
|
|
||||||
|
/* libjpeg-turbo version */
|
||||||
|
#undef LIBJPEG_TURBO_VERSION
|
||||||
|
|
||||||
|
/* Define if you have BSD-like bzero and bcopy */
|
||||||
|
#undef NEED_BSD_STRINGS
|
||||||
|
|
||||||
|
/* Define if you need short function names */
|
||||||
|
#undef NEED_SHORT_EXTERNAL_NAMES
|
||||||
|
|
||||||
|
/* Define if you have sys/types.h */
|
||||||
|
#undef NEED_SYS_TYPES_H
|
||||||
|
|
||||||
|
/* Name of package */
|
||||||
|
#undef PACKAGE
|
||||||
|
|
||||||
|
/* Define to the address where bug reports for this package should be sent. */
|
||||||
|
#undef PACKAGE_BUGREPORT
|
||||||
|
|
||||||
|
/* Define to the full name of this package. */
|
||||||
|
#undef PACKAGE_NAME
|
||||||
|
|
||||||
|
/* Define to the full name and version of this package. */
|
||||||
|
#undef PACKAGE_STRING
|
||||||
|
|
||||||
|
/* Define to the one symbol short name of this package. */
|
||||||
|
#undef PACKAGE_TARNAME
|
||||||
|
|
||||||
|
/* Define to the version of this package. */
|
||||||
|
#undef PACKAGE_VERSION
|
||||||
|
|
||||||
|
/* Define if shift is unsigned */
|
||||||
|
#undef RIGHT_SHIFT_IS_UNSIGNED
|
||||||
|
|
||||||
|
/* Define to 1 if you have the ANSI C header files. */
|
||||||
|
#undef STDC_HEADERS
|
||||||
|
|
||||||
|
/* Version number of package */
|
||||||
|
#undef VERSION
|
||||||
|
|
||||||
|
/* Use accelerated SIMD routines. */
|
||||||
|
#undef WITH_SIMD
|
||||||
|
|
||||||
|
/* Define to 1 if type `char' is unsigned and you are not using gcc. */
|
||||||
|
#ifndef __CHAR_UNSIGNED__
|
||||||
|
# undef __CHAR_UNSIGNED__
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Define to empty if `const' does not conform to ANSI C. */
|
||||||
|
#undef const
|
||||||
|
|
||||||
|
/* Define to `__inline__' or `__inline' if that's what the C compiler
|
||||||
|
calls it, or to nothing if 'inline' is not supported under any name. */
|
||||||
|
#ifndef __cplusplus
|
||||||
|
#undef inline
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Define to `unsigned' if <sys/types.h> does not define. */
|
||||||
|
#undef size_t
|
1287
library/deps/libjpeg-turbo/config.status
Normal file
1555
library/deps/libjpeg-turbo/config.sub
vendored
Normal file
24371
library/deps/libjpeg-turbo/configure
vendored
Normal file
376
library/deps/libjpeg-turbo/configure.ac
Normal file
|
@ -0,0 +1,376 @@
|
||||||
|
# -*- Autoconf -*-
|
||||||
|
# Process this file with autoconf to produce a configure script.
|
||||||
|
|
||||||
|
AC_PREREQ([2.56])
|
||||||
|
AC_INIT([libjpeg-turbo], [1.2.0])
|
||||||
|
BUILD=`date +%Y%m%d`
|
||||||
|
|
||||||
|
AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2])
|
||||||
|
AC_PREFIX_DEFAULT(/opt/libjpeg-turbo)
|
||||||
|
|
||||||
|
# Always build with prototypes
|
||||||
|
AC_DEFINE([HAVE_PROTOTYPES], 1, [Define if your compiler supports prototypes])
|
||||||
|
|
||||||
|
# Checks for programs.
|
||||||
|
SAVED_CFLAGS=${CFLAGS}
|
||||||
|
SAVED_CPPFLAGS=${CPPFLAGS}
|
||||||
|
AC_PROG_CPP
|
||||||
|
AC_PROG_CC
|
||||||
|
AM_PROG_AS
|
||||||
|
AC_PROG_INSTALL
|
||||||
|
AC_PROG_LIBTOOL
|
||||||
|
AC_PROG_LN_S
|
||||||
|
|
||||||
|
# Check whether compiler supports pointers to undefined structures
|
||||||
|
AC_MSG_CHECKING(whether compiler supports pointers to undefined structures)
|
||||||
|
AC_TRY_COMPILE([ typedef struct undefined_structure * undef_struct_ptr; ], ,
|
||||||
|
AC_MSG_RESULT(yes),
|
||||||
|
[AC_MSG_RESULT(no)
|
||||||
|
AC_DEFINE([INCOMPLETE_TYPES_BROKEN],[1],[Compiler does not support pointers to undefined structures.])])
|
||||||
|
|
||||||
|
if test "x${GCC}" = "xyes"; then
|
||||||
|
if test "x${SAVED_CFLAGS}" = "x"; then
|
||||||
|
CFLAGS=-O3
|
||||||
|
fi
|
||||||
|
if test "x${SAVED_CPPFLAGS}" = "x"; then
|
||||||
|
CPPFLAGS=-Wall
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
AC_CHECK_DECL([__SUNPRO_C], [SUNCC="yes"], [SUNCC="no"])
|
||||||
|
if test "x${SUNCC}" = "xyes"; then
|
||||||
|
if test "x${SAVED_CFLAGS}" = "x"; then
|
||||||
|
CFLAGS=-xO5
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Checks for libraries.
|
||||||
|
|
||||||
|
# Checks for header files.
|
||||||
|
AC_HEADER_STDC
|
||||||
|
AC_CHECK_HEADERS([stddef.h stdlib.h string.h])
|
||||||
|
AC_CHECK_HEADER([sys/types.h], AC_DEFINE([NEED_SYS_TYPES_H], 1, [Define if you have sys/types.h]))
|
||||||
|
|
||||||
|
# Checks for typedefs, structures, and compiler characteristics.
|
||||||
|
AC_C_CONST
|
||||||
|
AC_C_CHAR_UNSIGNED
|
||||||
|
AC_C_INLINE
|
||||||
|
AC_TYPE_SIZE_T
|
||||||
|
AC_CHECK_TYPES([unsigned char, unsigned short])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([if right shift is signed])
|
||||||
|
AC_TRY_RUN(
|
||||||
|
[#include <stdio.h>
|
||||||
|
int is_shifting_signed (long arg) {
|
||||||
|
long res = arg >> 4;
|
||||||
|
|
||||||
|
if (res == -0x7F7E80CL)
|
||||||
|
return 1; /* right shift is signed */
|
||||||
|
|
||||||
|
/* see if unsigned-shift hack will fix it. */
|
||||||
|
/* we can't just test exact value since it depends on width of long... */
|
||||||
|
res |= (~0L) << (32-4);
|
||||||
|
if (res == -0x7F7E80CL)
|
||||||
|
return 0; /* right shift is unsigned */
|
||||||
|
|
||||||
|
printf("Right shift isn't acting as I expect it to.\n");
|
||||||
|
printf("I fear the JPEG software will not work at all.\n\n");
|
||||||
|
return 0; /* try it with unsigned anyway */
|
||||||
|
}
|
||||||
|
int main (void) {
|
||||||
|
exit(is_shifting_signed(-0x7F7E80B1L));
|
||||||
|
}],
|
||||||
|
[AC_MSG_RESULT(no)
|
||||||
|
AC_DEFINE([RIGHT_SHIFT_IS_UNSIGNED], 1, [Define if shift is unsigned])],
|
||||||
|
[AC_MSG_RESULT(yes)],
|
||||||
|
[AC_MSG_RESULT(Assuming that right shift is signed on target machine.)])
|
||||||
|
|
||||||
|
# test whether global names are unique to at least 15 chars
|
||||||
|
AC_MSG_CHECKING([for short external names])
|
||||||
|
AC_TRY_LINK(
|
||||||
|
[int possibly_duplicate_function () { return 0; }
|
||||||
|
int possibly_dupli_function () { return 1; }], [ ],
|
||||||
|
[AC_MSG_RESULT(ok)],
|
||||||
|
[AC_MSG_RESULT(short)
|
||||||
|
AC_DEFINE([NEED_SHORT_EXTERNAL_NAMES], 1, [Define if you need short function names])])
|
||||||
|
|
||||||
|
# Checks for library functions.
|
||||||
|
AC_CHECK_FUNCS([memset memcpy], [],
|
||||||
|
[AC_DEFINE([NEED_BSD_STRINGS], 1,
|
||||||
|
[Define if you have BSD-like bzero and bcopy])])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([libjpeg API version])
|
||||||
|
AC_ARG_VAR(JPEG_LIB_VERSION, [libjpeg API version (62, 70, or 80)])
|
||||||
|
if test "x$JPEG_LIB_VERSION" = "x"; then
|
||||||
|
AC_ARG_WITH([jpeg7],
|
||||||
|
AC_HELP_STRING([--with-jpeg7], [Emulate libjpeg v7 API/ABI (this makes libjpeg-turbo backward incompatible with libjpeg v6b.)]))
|
||||||
|
AC_ARG_WITH([jpeg8],
|
||||||
|
AC_HELP_STRING([--with-jpeg8], [Emulate libjpeg v8 API/ABI (this makes libjpeg-turbo backward incompatible with libjpeg v6b.)]))
|
||||||
|
if test "x${with_jpeg8}" = "xyes"; then
|
||||||
|
JPEG_LIB_VERSION=80
|
||||||
|
else
|
||||||
|
if test "x${with_jpeg7}" = "xyes"; then
|
||||||
|
JPEG_LIB_VERSION=70
|
||||||
|
else
|
||||||
|
JPEG_LIB_VERSION=62
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
JPEG_LIB_VERSION_DECIMAL=`expr $JPEG_LIB_VERSION / 10`.`expr $JPEG_LIB_VERSION % 10`
|
||||||
|
AC_SUBST(JPEG_LIB_VERSION_DECIMAL)
|
||||||
|
AC_MSG_RESULT([$JPEG_LIB_VERSION_DECIMAL])
|
||||||
|
AC_DEFINE_UNQUOTED(JPEG_LIB_VERSION, [$JPEG_LIB_VERSION], [libjpeg API version])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([libjpeg shared library version])
|
||||||
|
AC_ARG_VAR(SO_MAJOR_VERSION, [Major version of the libjpeg-turbo shared library (default is determined by the API version)])
|
||||||
|
AC_ARG_VAR(SO_MINOR_VERSION, [Minor version of the libjpeg-turbo shared library (default is determined by the API version)])
|
||||||
|
if test "x$SO_MAJOR_VERSION" = "x"; then
|
||||||
|
case "$JPEG_LIB_VERSION" in
|
||||||
|
62) SO_MAJOR_VERSION=$JPEG_LIB_VERSION ;;
|
||||||
|
*) SO_MAJOR_VERSION=`expr $JPEG_LIB_VERSION / 10` ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
if test "x$SO_MINOR_VERSION" = "x"; then
|
||||||
|
case "$JPEG_LIB_VERSION" in
|
||||||
|
80) SO_MINOR_VERSION=2 ;;
|
||||||
|
*) SO_MINOR_VERSION=0 ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
AC_MSG_RESULT([$SO_MAJOR_VERSION:$SO_MINOR_VERSION])
|
||||||
|
AC_SUBST(SO_MAJOR_VERSION)
|
||||||
|
AC_SUBST(SO_MINOR_VERSION)
|
||||||
|
|
||||||
|
AC_DEFINE_UNQUOTED(LIBJPEG_TURBO_VERSION, [$VERSION], [libjpeg-turbo version])
|
||||||
|
|
||||||
|
VERSION_SCRIPT=yes
|
||||||
|
AC_ARG_ENABLE([ld-version-script],
|
||||||
|
AS_HELP_STRING([--disable-ld-version-script],
|
||||||
|
[Disable linker version script for libjpeg-turbo (default is to use linker version script if the linker supports it)]),
|
||||||
|
[VERSION_SCRIPT=$enableval], [])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([whether the linker supports version scripts])
|
||||||
|
SAVED_LDFLAGS="$LDFLAGS"
|
||||||
|
LDFLAGS="$LDFLAGS -Wl,--version-script,conftest.map"
|
||||||
|
cat > conftest.map <<EOF
|
||||||
|
VERS_1 {
|
||||||
|
global: *;
|
||||||
|
};
|
||||||
|
EOF
|
||||||
|
AC_LINK_IFELSE(AC_LANG_PROGRAM([], []),
|
||||||
|
[VERSION_SCRIPT_FLAG=-Wl,--version-script,; AC_MSG_RESULT([yes (GNU style)])], [])
|
||||||
|
if test "x$VERSION_SCRIPT_FLAG" = "x"; then
|
||||||
|
LDFLAGS="$SAVED_LDFLAGS -Wl,-M,conftest.map"
|
||||||
|
AC_LINK_IFELSE(AC_LANG_PROGRAM([], []),
|
||||||
|
[VERSION_SCRIPT_FLAG=-Wl,-M,; AC_MSG_RESULT([yes (Sun style)])], [])
|
||||||
|
fi
|
||||||
|
if test "x$VERSION_SCRIPT_FLAG" = "x"; then
|
||||||
|
VERSION_SCRIPT=no
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
fi
|
||||||
|
LDFLAGS="$SAVED_LDFLAGS"
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([whether to use version script when building libjpeg-turbo])
|
||||||
|
AC_MSG_RESULT($VERSION_SCRIPT)
|
||||||
|
|
||||||
|
AM_CONDITIONAL(VERSION_SCRIPT, test "x$VERSION_SCRIPT" = "xyes")
|
||||||
|
AC_SUBST(VERSION_SCRIPT_FLAG)
|
||||||
|
|
||||||
|
# Check for non-broken inline under various spellings
|
||||||
|
AC_MSG_CHECKING(for inline)
|
||||||
|
ljt_cv_inline=""
|
||||||
|
AC_TRY_COMPILE(, [} __attribute__((always_inline)) int foo() { return 0; }
|
||||||
|
int bar() { return foo();], ljt_cv_inline="__attribute__((always_inline))",
|
||||||
|
AC_TRY_COMPILE(, [} __inline__ int foo() { return 0; }
|
||||||
|
int bar() { return foo();], ljt_cv_inline="__inline__",
|
||||||
|
AC_TRY_COMPILE(, [} __inline int foo() { return 0; }
|
||||||
|
int bar() { return foo();], ljt_cv_inline="__inline",
|
||||||
|
AC_TRY_COMPILE(, [} inline int foo() { return 0; }
|
||||||
|
int bar() { return foo();], ljt_cv_inline="inline"))))
|
||||||
|
AC_MSG_RESULT($ljt_cv_inline)
|
||||||
|
AC_DEFINE_UNQUOTED([INLINE],[$ljt_cv_inline],[How to obtain function inlining.])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([whether to include arithmetic encoding support])
|
||||||
|
AC_ARG_WITH([arith-enc],
|
||||||
|
AC_HELP_STRING([--without-arith-enc], [Omit arithmetic encoding support]))
|
||||||
|
if test "x$with_arith_enc" = "xno"; then
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
else
|
||||||
|
AC_DEFINE([C_ARITH_CODING_SUPPORTED], [1], [Support arithmetic encoding])
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
fi
|
||||||
|
AM_CONDITIONAL([WITH_ARITH_ENC], [test "x$with_arith_enc" != "xno"])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([whether to include arithmetic decoding support])
|
||||||
|
AC_ARG_WITH([arith-dec],
|
||||||
|
AC_HELP_STRING([--without-arith-dec], [Omit arithmetic decoding support]))
|
||||||
|
if test "x$with_arith_dec" = "xno"; then
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
else
|
||||||
|
AC_DEFINE([D_ARITH_CODING_SUPPORTED], [1], [Support arithmetic decoding])
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
fi
|
||||||
|
AM_CONDITIONAL([WITH_ARITH_DEC], [test "x$with_arith_dec" != "xno"])
|
||||||
|
|
||||||
|
AM_CONDITIONAL([WITH_ARITH], [test "x$with_arith_dec" != "xno" -o "x$with_arith_enc" != "xno"])
|
||||||
|
|
||||||
|
AC_ARG_VAR(JAVAC, [Java compiler command (default: javac)])
|
||||||
|
if test "x$JAVAC" = "x"; then
|
||||||
|
JAVAC=javac
|
||||||
|
fi
|
||||||
|
AC_SUBST(JAVAC)
|
||||||
|
AC_ARG_VAR(JAVACFLAGS, [Java compiler flags])
|
||||||
|
AC_SUBST(JAVACFLAGS)
|
||||||
|
AC_ARG_VAR(JAR, [Java archive command (default: jar)])
|
||||||
|
if test "x$JAR" = "x"; then
|
||||||
|
JAR=jar
|
||||||
|
fi
|
||||||
|
AC_SUBST(JAR)
|
||||||
|
AC_ARG_VAR(JAVA, [Java runtime command (default: java)])
|
||||||
|
if test "x$JAVA" = "x"; then
|
||||||
|
JAVA=java
|
||||||
|
fi
|
||||||
|
AC_SUBST(JAVA)
|
||||||
|
AC_ARG_VAR(JNI_CFLAGS, [C compiler flags needed to include jni.h (default: -I/System/Library/Frameworks/JavaVM.framework/Headers on OS X, '-I/usr/java/include -I/usr/java/include/solaris' on Solaris, and '-I/usr/java/default/include -I/usr/java/default/include/linux' on Linux)])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([whether to build TurboJPEG/OSS Java wrapper])
|
||||||
|
AC_ARG_WITH([java],
|
||||||
|
AC_HELP_STRING([--with-java],[Build Java wrapper for the TurboJPEG/OSS library]))
|
||||||
|
|
||||||
|
RPM_CONFIG_ARGS=
|
||||||
|
WITH_JAVA=0
|
||||||
|
if test "x$with_java" = "xyes"; then
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
|
||||||
|
case $host_os in
|
||||||
|
darwin*)
|
||||||
|
DEFAULT_JNI_CFLAGS=-I/System/Library/Frameworks/JavaVM.framework/Headers
|
||||||
|
;;
|
||||||
|
solaris*)
|
||||||
|
DEFAULT_JNI_CFLAGS='-I/usr/java/include -I/usr/java/include/solaris'
|
||||||
|
;;
|
||||||
|
linux*)
|
||||||
|
DEFAULT_JNI_CFLAGS='-I/usr/java/default/include -I/usr/java/default/include/linux'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
if test "x$JNI_CFLAGS" = "x"; then
|
||||||
|
JNI_CFLAGS=$DEFAULT_JNI_CFLAGS
|
||||||
|
fi
|
||||||
|
|
||||||
|
SAVE_CPPFLAGS=${CPPFLAGS}
|
||||||
|
CPPFLAGS="${CPPFLAGS} ${JNI_CFLAGS}"
|
||||||
|
AC_CHECK_HEADERS([jni.h], [DUMMY=1],
|
||||||
|
[AC_MSG_ERROR([Could not find JNI header file])])
|
||||||
|
CPPFLAGS=${SAVE_CPPFLAGS}
|
||||||
|
AC_SUBST(JNI_CFLAGS)
|
||||||
|
|
||||||
|
RPM_CONFIG_ARGS=--with-java
|
||||||
|
JAVA_RPM_CONTENTS_1='%dir /opt/%{name}/classes'
|
||||||
|
JAVA_RPM_CONTENTS_2=/opt/%{name}/classes/turbojpeg.jar
|
||||||
|
WITH_JAVA=1
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
fi
|
||||||
|
AM_CONDITIONAL([WITH_JAVA], [test "x$with_java" = "xyes"])
|
||||||
|
AC_SUBST(WITH_JAVA)
|
||||||
|
AC_SUBST(JAVA_RPM_CONTENTS_1)
|
||||||
|
AC_SUBST(JAVA_RPM_CONTENTS_2)
|
||||||
|
AC_SUBST(RPM_CONFIG_ARGS)
|
||||||
|
|
||||||
|
# optionally force using gas-preprocessor.pl for compatibility testing
|
||||||
|
AC_ARG_WITH([gas-preprocessor],
|
||||||
|
AC_HELP_STRING([--with-gas-preprocessor],[Force using gas-preprocessor.pl on ARM.]))
|
||||||
|
if test "x${with_gas_preprocessor}" = "xyes"; then
|
||||||
|
case $host_os in
|
||||||
|
darwin*)
|
||||||
|
CCAS="gas-preprocessor.pl -fix-unreq $CC"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
CCAS="gas-preprocessor.pl -no-fix-unreq $CC"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
AC_SUBST([CCAS])
|
||||||
|
fi
|
||||||
|
|
||||||
|
# SIMD is optional
|
||||||
|
AC_ARG_WITH([simd],
|
||||||
|
AC_HELP_STRING([--without-simd],[Omit SIMD extensions.]))
|
||||||
|
if test "x${with_simd}" != "xno"; then
|
||||||
|
# Check if we're on a supported CPU
|
||||||
|
AC_MSG_CHECKING([if we have SIMD optimisations for cpu type])
|
||||||
|
case "$host_cpu" in
|
||||||
|
x86_64 | amd64)
|
||||||
|
AC_MSG_RESULT([yes (x86_64)])
|
||||||
|
AC_PROG_NASM
|
||||||
|
simd_arch=x86_64
|
||||||
|
;;
|
||||||
|
i*86 | x86 | ia32)
|
||||||
|
AC_MSG_RESULT([yes (i386)])
|
||||||
|
AC_PROG_NASM
|
||||||
|
simd_arch=i386
|
||||||
|
;;
|
||||||
|
arm*)
|
||||||
|
AC_MSG_RESULT([yes (arm)])
|
||||||
|
AC_MSG_CHECKING([if the assembler is GNU-compatible and can be used])
|
||||||
|
AC_CHECK_COMPATIBLE_ARM_ASSEMBLER_IFELSE(
|
||||||
|
[AC_MSG_RESULT([yes])
|
||||||
|
simd_arch=arm],
|
||||||
|
[AC_MSG_RESULT([no])
|
||||||
|
with_simd=no
|
||||||
|
AC_MSG_WARN([SIMD support can't be enabled. Performance will suffer.])])
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
AC_MSG_RESULT([no ("$host_cpu")])
|
||||||
|
AC_MSG_WARN([SIMD support not available for this CPU. Performance will suffer.])
|
||||||
|
with_simd=no;
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if test "x${with_simd}" != "xno"; then
|
||||||
|
AC_DEFINE([WITH_SIMD], [1], [Use accelerated SIMD routines.])
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
AM_CONDITIONAL([WITH_SIMD], [test "x$with_simd" != "xno"])
|
||||||
|
AM_CONDITIONAL([WITH_SSE_FLOAT_DCT], [test "x$simd_arch" = "xx86_64" -o "x$simd_arch" = "xi386"])
|
||||||
|
AM_CONDITIONAL([SIMD_I386], [test "x$simd_arch" = "xi386"])
|
||||||
|
AM_CONDITIONAL([SIMD_X86_64], [test "x$simd_arch" = "xx86_64"])
|
||||||
|
AM_CONDITIONAL([SIMD_ARM], [test "x$simd_arch" = "xarm"])
|
||||||
|
AM_CONDITIONAL([X86_64], [test "x$host_cpu" = "xx86_64" -o "x$host_cpu" = "xamd64"])
|
||||||
|
|
||||||
|
case "$host_cpu" in
|
||||||
|
x86_64)
|
||||||
|
RPMARCH=x86_64
|
||||||
|
DEBARCH=amd64
|
||||||
|
;;
|
||||||
|
i*86 | x86 | ia32)
|
||||||
|
RPMARCH=i386
|
||||||
|
DEBARCH=i386
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
AC_SUBST(RPMARCH)
|
||||||
|
AC_SUBST(DEBARCH)
|
||||||
|
AC_SUBST(BUILD)
|
||||||
|
AC_DEFINE_UNQUOTED([BUILD], "$BUILD", [Build number])
|
||||||
|
|
||||||
|
# jconfig.h is the file we use, but we have another before that to
|
||||||
|
# fool autoheader. the reason is that we include this header in our
|
||||||
|
# API headers, which can screw things up for users of the lib.
|
||||||
|
# jconfig.h is a minimal version that allows this package to be built
|
||||||
|
AC_CONFIG_HEADERS([config.h])
|
||||||
|
AC_CONFIG_HEADERS([jconfig.h])
|
||||||
|
AC_CONFIG_FILES([pkgscripts/libjpeg-turbo.spec:release/libjpeg-turbo.spec.in])
|
||||||
|
AC_CONFIG_FILES([pkgscripts/makecygwinpkg:release/makecygwinpkg.in])
|
||||||
|
AC_CONFIG_FILES([pkgscripts/makedpkg:release/makedpkg.in])
|
||||||
|
AC_CONFIG_FILES([pkgscripts/makemacpkg:release/makemacpkg.in])
|
||||||
|
AC_CONFIG_FILES([pkgscripts/Description.plist:release/Description.plist.in])
|
||||||
|
AC_CONFIG_FILES([pkgscripts/Info.plist:release/Info.plist.in])
|
||||||
|
AC_CONFIG_FILES([pkgscripts/uninstall:release/uninstall.in])
|
||||||
|
AC_CONFIG_FILES([pkgscripts/makesunpkg:release/makesunpkg.in])
|
||||||
|
AC_CONFIG_FILES([pkgscripts/pkginfo:release/pkginfo.in])
|
||||||
|
AC_CONFIG_FILES([tjbenchtest])
|
||||||
|
AC_CONFIG_FILES([tjexampletest])
|
||||||
|
AC_CONFIG_FILES([libjpeg.map])
|
||||||
|
AC_CONFIG_FILES([Makefile simd/Makefile])
|
||||||
|
AC_CONFIG_FILES([java/Makefile])
|
||||||
|
AC_OUTPUT
|
522
library/deps/libjpeg-turbo/depcomp
Normal file
|
@ -0,0 +1,522 @@
|
||||||
|
#! /bin/sh
|
||||||
|
# depcomp - compile a program generating dependencies as side-effects
|
||||||
|
|
||||||
|
scriptversion=2004-05-31.23
|
||||||
|
|
||||||
|
# Copyright (C) 1999, 2000, 2003, 2004 Free Software Foundation, Inc.
|
||||||
|
|
||||||
|
# This program 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 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
|
||||||
|
# This program 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 this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
|
# 02111-1307, USA.
|
||||||
|
|
||||||
|
# As a special exception to the GNU General Public License, if you
|
||||||
|
# distribute this file as part of a program that contains a
|
||||||
|
# configuration script generated by Autoconf, you may include it under
|
||||||
|
# the same distribution terms that you use for the rest of that program.
|
||||||
|
|
||||||
|
# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
'')
|
||||||
|
echo "$0: No command. Try \`$0 --help' for more information." 1>&2
|
||||||
|
exit 1;
|
||||||
|
;;
|
||||||
|
-h | --h*)
|
||||||
|
cat <<\EOF
|
||||||
|
Usage: depcomp [--help] [--version] PROGRAM [ARGS]
|
||||||
|
|
||||||
|
Run PROGRAMS ARGS to compile a file, generating dependencies
|
||||||
|
as side-effects.
|
||||||
|
|
||||||
|
Environment variables:
|
||||||
|
depmode Dependency tracking mode.
|
||||||
|
source Source file read by `PROGRAMS ARGS'.
|
||||||
|
object Object file output by `PROGRAMS ARGS'.
|
||||||
|
DEPDIR directory where to store dependencies.
|
||||||
|
depfile Dependency file to output.
|
||||||
|
tmpdepfile Temporary file to use when outputing dependencies.
|
||||||
|
libtool Whether libtool is used (yes/no).
|
||||||
|
|
||||||
|
Report bugs to <bug-automake@gnu.org>.
|
||||||
|
EOF
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
-v | --v*)
|
||||||
|
echo "depcomp $scriptversion"
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
|
||||||
|
echo "depcomp: Variables source, object and depmode must be set" 1>&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
|
||||||
|
depfile=${depfile-`echo "$object" |
|
||||||
|
sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
|
||||||
|
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
|
||||||
|
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
|
||||||
|
# Some modes work just like other modes, but use different flags. We
|
||||||
|
# parameterize here, but still list the modes in the big case below,
|
||||||
|
# to make depend.m4 easier to write. Note that we *cannot* use a case
|
||||||
|
# here, because this file can only contain one case statement.
|
||||||
|
if test "$depmode" = hp; then
|
||||||
|
# HP compiler uses -M and no extra arg.
|
||||||
|
gccflag=-M
|
||||||
|
depmode=gcc
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$depmode" = dashXmstdout; then
|
||||||
|
# This is just like dashmstdout with a different argument.
|
||||||
|
dashmflag=-xM
|
||||||
|
depmode=dashmstdout
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$depmode" in
|
||||||
|
gcc3)
|
||||||
|
## gcc 3 implements dependency tracking that does exactly what
|
||||||
|
## we want. Yay! Note: for some reason libtool 1.4 doesn't like
|
||||||
|
## it if -MD -MP comes after the -MF stuff. Hmm.
|
||||||
|
"$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
|
||||||
|
stat=$?
|
||||||
|
if test $stat -eq 0; then :
|
||||||
|
else
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
mv "$tmpdepfile" "$depfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
gcc)
|
||||||
|
## There are various ways to get dependency output from gcc. Here's
|
||||||
|
## why we pick this rather obscure method:
|
||||||
|
## - Don't want to use -MD because we'd like the dependencies to end
|
||||||
|
## up in a subdir. Having to rename by hand is ugly.
|
||||||
|
## (We might end up doing this anyway to support other compilers.)
|
||||||
|
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
|
||||||
|
## -MM, not -M (despite what the docs say).
|
||||||
|
## - Using -M directly means running the compiler twice (even worse
|
||||||
|
## than renaming).
|
||||||
|
if test -z "$gccflag"; then
|
||||||
|
gccflag=-MD,
|
||||||
|
fi
|
||||||
|
"$@" -Wp,"$gccflag$tmpdepfile"
|
||||||
|
stat=$?
|
||||||
|
if test $stat -eq 0; then :
|
||||||
|
else
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
|
||||||
|
## The second -e expression handles DOS-style file names with drive letters.
|
||||||
|
sed -e 's/^[^:]*: / /' \
|
||||||
|
-e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
|
||||||
|
## This next piece of magic avoids the `deleted header file' problem.
|
||||||
|
## The problem is that when a header file which appears in a .P file
|
||||||
|
## is deleted, the dependency causes make to die (because there is
|
||||||
|
## typically no way to rebuild the header). We avoid this by adding
|
||||||
|
## dummy dependencies for each header file. Too bad gcc doesn't do
|
||||||
|
## this for us directly.
|
||||||
|
tr ' ' '
|
||||||
|
' < "$tmpdepfile" |
|
||||||
|
## Some versions of gcc put a space before the `:'. On the theory
|
||||||
|
## that the space means something, we add a space to the output as
|
||||||
|
## well.
|
||||||
|
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||||
|
## correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
hp)
|
||||||
|
# This case exists only to let depend.m4 do its work. It works by
|
||||||
|
# looking at the text of this script. This case will never be run,
|
||||||
|
# since it is checked for above.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
sgi)
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
"$@" "-Wp,-MDupdate,$tmpdepfile"
|
||||||
|
else
|
||||||
|
"$@" -MDupdate "$tmpdepfile"
|
||||||
|
fi
|
||||||
|
stat=$?
|
||||||
|
if test $stat -eq 0; then :
|
||||||
|
else
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
|
||||||
|
if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
|
||||||
|
# Clip off the initial element (the dependent). Don't try to be
|
||||||
|
# clever and replace this with sed code, as IRIX sed won't handle
|
||||||
|
# lines with more than a fixed number of characters (4096 in
|
||||||
|
# IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
|
||||||
|
# the IRIX cc adds comments like `#:fec' to the end of the
|
||||||
|
# dependency line.
|
||||||
|
tr ' ' '
|
||||||
|
' < "$tmpdepfile" \
|
||||||
|
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
|
||||||
|
tr '
|
||||||
|
' ' ' >> $depfile
|
||||||
|
echo >> $depfile
|
||||||
|
|
||||||
|
# The second pass generates a dummy entry for each header file.
|
||||||
|
tr ' ' '
|
||||||
|
' < "$tmpdepfile" \
|
||||||
|
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
|
||||||
|
>> $depfile
|
||||||
|
else
|
||||||
|
# The sourcefile does not contain any dependencies, so just
|
||||||
|
# store a dummy comment line, to avoid errors with the Makefile
|
||||||
|
# "include basename.Plo" scheme.
|
||||||
|
echo "#dummy" > "$depfile"
|
||||||
|
fi
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
aix)
|
||||||
|
# The C for AIX Compiler uses -M and outputs the dependencies
|
||||||
|
# in a .u file. In older versions, this file always lives in the
|
||||||
|
# current directory. Also, the AIX compiler puts `$object:' at the
|
||||||
|
# start of each line; $object doesn't have directory information.
|
||||||
|
# Version 6 uses the directory in both cases.
|
||||||
|
stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'`
|
||||||
|
tmpdepfile="$stripped.u"
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
"$@" -Wc,-M
|
||||||
|
else
|
||||||
|
"$@" -M
|
||||||
|
fi
|
||||||
|
stat=$?
|
||||||
|
|
||||||
|
if test -f "$tmpdepfile"; then :
|
||||||
|
else
|
||||||
|
stripped=`echo "$stripped" | sed 's,^.*/,,'`
|
||||||
|
tmpdepfile="$stripped.u"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test $stat -eq 0; then :
|
||||||
|
else
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -f "$tmpdepfile"; then
|
||||||
|
outname="$stripped.o"
|
||||||
|
# Each line is of the form `foo.o: dependent.h'.
|
||||||
|
# Do two passes, one to just change these to
|
||||||
|
# `$object: dependent.h' and one to simply `dependent.h:'.
|
||||||
|
sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
|
||||||
|
sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
|
||||||
|
else
|
||||||
|
# The sourcefile does not contain any dependencies, so just
|
||||||
|
# store a dummy comment line, to avoid errors with the Makefile
|
||||||
|
# "include basename.Plo" scheme.
|
||||||
|
echo "#dummy" > "$depfile"
|
||||||
|
fi
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
icc)
|
||||||
|
# Intel's C compiler understands `-MD -MF file'. However on
|
||||||
|
# icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
|
||||||
|
# ICC 7.0 will fill foo.d with something like
|
||||||
|
# foo.o: sub/foo.c
|
||||||
|
# foo.o: sub/foo.h
|
||||||
|
# which is wrong. We want:
|
||||||
|
# sub/foo.o: sub/foo.c
|
||||||
|
# sub/foo.o: sub/foo.h
|
||||||
|
# sub/foo.c:
|
||||||
|
# sub/foo.h:
|
||||||
|
# ICC 7.1 will output
|
||||||
|
# foo.o: sub/foo.c sub/foo.h
|
||||||
|
# and will wrap long lines using \ :
|
||||||
|
# foo.o: sub/foo.c ... \
|
||||||
|
# sub/foo.h ... \
|
||||||
|
# ...
|
||||||
|
|
||||||
|
"$@" -MD -MF "$tmpdepfile"
|
||||||
|
stat=$?
|
||||||
|
if test $stat -eq 0; then :
|
||||||
|
else
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
# Each line is of the form `foo.o: dependent.h',
|
||||||
|
# or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
|
||||||
|
# Do two passes, one to just change these to
|
||||||
|
# `$object: dependent.h' and one to simply `dependent.h:'.
|
||||||
|
sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
|
||||||
|
# Some versions of the HPUX 10.20 sed can't process this invocation
|
||||||
|
# correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" |
|
||||||
|
sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
tru64)
|
||||||
|
# The Tru64 compiler uses -MD to generate dependencies as a side
|
||||||
|
# effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
|
||||||
|
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
|
||||||
|
# dependencies in `foo.d' instead, so we check for that too.
|
||||||
|
# Subdirectories are respected.
|
||||||
|
dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
|
||||||
|
test "x$dir" = "x$object" && dir=
|
||||||
|
base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
|
||||||
|
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
# Dependencies are output in .lo.d with libtool 1.4.
|
||||||
|
# With libtool 1.5 they are output both in $dir.libs/$base.o.d
|
||||||
|
# and in $dir.libs/$base.o.d and $dir$base.o.d. We process the
|
||||||
|
# latter, because the former will be cleaned when $dir.libs is
|
||||||
|
# erased.
|
||||||
|
tmpdepfile1="$dir.libs/$base.lo.d"
|
||||||
|
tmpdepfile2="$dir$base.o.d"
|
||||||
|
tmpdepfile3="$dir.libs/$base.d"
|
||||||
|
"$@" -Wc,-MD
|
||||||
|
else
|
||||||
|
tmpdepfile1="$dir$base.o.d"
|
||||||
|
tmpdepfile2="$dir$base.d"
|
||||||
|
tmpdepfile3="$dir$base.d"
|
||||||
|
"$@" -MD
|
||||||
|
fi
|
||||||
|
|
||||||
|
stat=$?
|
||||||
|
if test $stat -eq 0; then :
|
||||||
|
else
|
||||||
|
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -f "$tmpdepfile1"; then
|
||||||
|
tmpdepfile="$tmpdepfile1"
|
||||||
|
elif test -f "$tmpdepfile2"; then
|
||||||
|
tmpdepfile="$tmpdepfile2"
|
||||||
|
else
|
||||||
|
tmpdepfile="$tmpdepfile3"
|
||||||
|
fi
|
||||||
|
if test -f "$tmpdepfile"; then
|
||||||
|
sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
|
||||||
|
# That's a tab and a space in the [].
|
||||||
|
sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
|
||||||
|
else
|
||||||
|
echo "#dummy" > "$depfile"
|
||||||
|
fi
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
#nosideeffect)
|
||||||
|
# This comment above is used by automake to tell side-effect
|
||||||
|
# dependency tracking mechanisms from slower ones.
|
||||||
|
|
||||||
|
dashmstdout)
|
||||||
|
# Important note: in order to support this mode, a compiler *must*
|
||||||
|
# always write the preprocessed file to stdout, regardless of -o.
|
||||||
|
"$@" || exit $?
|
||||||
|
|
||||||
|
# Remove the call to Libtool.
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test $1 != '--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Remove `-o $object'.
|
||||||
|
IFS=" "
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case $arg in
|
||||||
|
-o)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
$object)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"
|
||||||
|
shift # fnord
|
||||||
|
shift # $arg
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
test -z "$dashmflag" && dashmflag=-M
|
||||||
|
# Require at least two characters before searching for `:'
|
||||||
|
# in the target name. This is to cope with DOS-style filenames:
|
||||||
|
# a dependency such as `c:/foo/bar' could be seen as target `c' otherwise.
|
||||||
|
"$@" $dashmflag |
|
||||||
|
sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile"
|
||||||
|
rm -f "$depfile"
|
||||||
|
cat < "$tmpdepfile" > "$depfile"
|
||||||
|
tr ' ' '
|
||||||
|
' < "$tmpdepfile" | \
|
||||||
|
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||||
|
## correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
dashXmstdout)
|
||||||
|
# This case only exists to satisfy depend.m4. It is never actually
|
||||||
|
# run, as this mode is specially recognized in the preamble.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
makedepend)
|
||||||
|
"$@" || exit $?
|
||||||
|
# Remove any Libtool call
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test $1 != '--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
# X makedepend
|
||||||
|
shift
|
||||||
|
cleared=no
|
||||||
|
for arg in "$@"; do
|
||||||
|
case $cleared in
|
||||||
|
no)
|
||||||
|
set ""; shift
|
||||||
|
cleared=yes ;;
|
||||||
|
esac
|
||||||
|
case "$arg" in
|
||||||
|
-D*|-I*)
|
||||||
|
set fnord "$@" "$arg"; shift ;;
|
||||||
|
# Strip any option that makedepend may not understand. Remove
|
||||||
|
# the object too, otherwise makedepend will parse it as a source file.
|
||||||
|
-*|$object)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"; shift ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
obj_suffix="`echo $object | sed 's/^.*\././'`"
|
||||||
|
touch "$tmpdepfile"
|
||||||
|
${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
|
||||||
|
rm -f "$depfile"
|
||||||
|
cat < "$tmpdepfile" > "$depfile"
|
||||||
|
sed '1,2d' "$tmpdepfile" | tr ' ' '
|
||||||
|
' | \
|
||||||
|
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||||
|
## correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile" "$tmpdepfile".bak
|
||||||
|
;;
|
||||||
|
|
||||||
|
cpp)
|
||||||
|
# Important note: in order to support this mode, a compiler *must*
|
||||||
|
# always write the preprocessed file to stdout.
|
||||||
|
"$@" || exit $?
|
||||||
|
|
||||||
|
# Remove the call to Libtool.
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test $1 != '--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Remove `-o $object'.
|
||||||
|
IFS=" "
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case $arg in
|
||||||
|
-o)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
$object)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"
|
||||||
|
shift # fnord
|
||||||
|
shift # $arg
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
"$@" -E |
|
||||||
|
sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
|
||||||
|
sed '$ s: \\$::' > "$tmpdepfile"
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
cat < "$tmpdepfile" >> "$depfile"
|
||||||
|
sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
msvisualcpp)
|
||||||
|
# Important note: in order to support this mode, a compiler *must*
|
||||||
|
# always write the preprocessed file to stdout, regardless of -o,
|
||||||
|
# because we must use -o when running libtool.
|
||||||
|
"$@" || exit $?
|
||||||
|
IFS=" "
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case "$arg" in
|
||||||
|
"-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
|
||||||
|
set fnord "$@"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
"$@" -E |
|
||||||
|
sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile"
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
. "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile"
|
||||||
|
echo " " >> "$depfile"
|
||||||
|
. "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
none)
|
||||||
|
exec "$@"
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "Unknown depmode $depmode" 1>&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|
||||||
|
# Local Variables:
|
||||||
|
# mode: shell-script
|
||||||
|
# sh-indentation: 2
|
||||||
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-end: "$"
|
||||||
|
# End:
|
249
library/deps/libjpeg-turbo/djpeg.1
Normal file
|
@ -0,0 +1,249 @@
|
||||||
|
.TH DJPEG 1 "11 October 2010"
|
||||||
|
.SH NAME
|
||||||
|
djpeg \- decompress a JPEG file to an image file
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B djpeg
|
||||||
|
[
|
||||||
|
.I options
|
||||||
|
]
|
||||||
|
[
|
||||||
|
.I filename
|
||||||
|
]
|
||||||
|
.LP
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.LP
|
||||||
|
.B djpeg
|
||||||
|
decompresses the named JPEG file, or the standard input if no file is named,
|
||||||
|
and produces an image file on the standard output. PBMPLUS (PPM/PGM), BMP,
|
||||||
|
GIF, Targa, or RLE (Utah Raster Toolkit) output format can be selected.
|
||||||
|
(RLE is supported only if the URT library is available.)
|
||||||
|
.SH OPTIONS
|
||||||
|
All switch names may be abbreviated; for example,
|
||||||
|
.B \-grayscale
|
||||||
|
may be written
|
||||||
|
.B \-gray
|
||||||
|
or
|
||||||
|
.BR \-gr .
|
||||||
|
Most of the "basic" switches can be abbreviated to as little as one letter.
|
||||||
|
Upper and lower case are equivalent (thus
|
||||||
|
.B \-BMP
|
||||||
|
is the same as
|
||||||
|
.BR \-bmp ).
|
||||||
|
British spellings are also accepted (e.g.,
|
||||||
|
.BR \-greyscale ),
|
||||||
|
though for brevity these are not mentioned below.
|
||||||
|
.PP
|
||||||
|
The basic switches are:
|
||||||
|
.TP
|
||||||
|
.BI \-colors " N"
|
||||||
|
Reduce image to at most N colors. This reduces the number of colors used in
|
||||||
|
the output image, so that it can be displayed on a colormapped display or
|
||||||
|
stored in a colormapped file format. For example, if you have an 8-bit
|
||||||
|
display, you'd need to reduce to 256 or fewer colors.
|
||||||
|
.TP
|
||||||
|
.BI \-quantize " N"
|
||||||
|
Same as
|
||||||
|
.BR \-colors .
|
||||||
|
.B \-colors
|
||||||
|
is the recommended name,
|
||||||
|
.B \-quantize
|
||||||
|
is provided only for backwards compatibility.
|
||||||
|
.TP
|
||||||
|
.B \-fast
|
||||||
|
Select recommended processing options for fast, low quality output. (The
|
||||||
|
default options are chosen for highest quality output.) Currently, this is
|
||||||
|
equivalent to \fB\-dct fast \-nosmooth \-onepass \-dither ordered\fR.
|
||||||
|
.TP
|
||||||
|
.B \-grayscale
|
||||||
|
Force gray-scale output even if JPEG file is color. Useful for viewing on
|
||||||
|
monochrome displays; also,
|
||||||
|
.B djpeg
|
||||||
|
runs noticeably faster in this mode.
|
||||||
|
.TP
|
||||||
|
.BI \-scale " M/N"
|
||||||
|
Scale the output image by a factor M/N. Currently the scale factor must be
|
||||||
|
1/1, 1/2, 1/4, or 1/8. Scaling is handy if the image is larger than your
|
||||||
|
screen; also,
|
||||||
|
.B djpeg
|
||||||
|
runs much faster when scaling down the output.
|
||||||
|
.TP
|
||||||
|
.B \-bmp
|
||||||
|
Select BMP output format (Windows flavor). 8-bit colormapped format is
|
||||||
|
emitted if
|
||||||
|
.B \-colors
|
||||||
|
or
|
||||||
|
.B \-grayscale
|
||||||
|
is specified, or if the JPEG file is gray-scale; otherwise, 24-bit full-color
|
||||||
|
format is emitted.
|
||||||
|
.TP
|
||||||
|
.B \-gif
|
||||||
|
Select GIF output format. Since GIF does not support more than 256 colors,
|
||||||
|
.B \-colors 256
|
||||||
|
is assumed (unless you specify a smaller number of colors).
|
||||||
|
.TP
|
||||||
|
.B \-os2
|
||||||
|
Select BMP output format (OS/2 1.x flavor). 8-bit colormapped format is
|
||||||
|
emitted if
|
||||||
|
.B \-colors
|
||||||
|
or
|
||||||
|
.B \-grayscale
|
||||||
|
is specified, or if the JPEG file is gray-scale; otherwise, 24-bit full-color
|
||||||
|
format is emitted.
|
||||||
|
.TP
|
||||||
|
.B \-pnm
|
||||||
|
Select PBMPLUS (PPM/PGM) output format (this is the default format).
|
||||||
|
PGM is emitted if the JPEG file is gray-scale or if
|
||||||
|
.B \-grayscale
|
||||||
|
is specified; otherwise PPM is emitted.
|
||||||
|
.TP
|
||||||
|
.B \-rle
|
||||||
|
Select RLE output format. (Requires URT library.)
|
||||||
|
.TP
|
||||||
|
.B \-targa
|
||||||
|
Select Targa output format. Gray-scale format is emitted if the JPEG file is
|
||||||
|
gray-scale or if
|
||||||
|
.B \-grayscale
|
||||||
|
is specified; otherwise, colormapped format is emitted if
|
||||||
|
.B \-colors
|
||||||
|
is specified; otherwise, 24-bit full-color format is emitted.
|
||||||
|
.PP
|
||||||
|
Switches for advanced users:
|
||||||
|
.TP
|
||||||
|
.B \-dct int
|
||||||
|
Use integer DCT method (default).
|
||||||
|
.TP
|
||||||
|
.B \-dct fast
|
||||||
|
Use fast integer DCT (less accurate).
|
||||||
|
.TP
|
||||||
|
.B \-dct float
|
||||||
|
Use floating-point DCT method.
|
||||||
|
The float method is very slightly more accurate than the int method, but is
|
||||||
|
much slower unless your machine has very fast floating-point hardware. Also
|
||||||
|
note that results of the floating-point method may vary slightly across
|
||||||
|
machines, while the integer methods should give the same results everywhere.
|
||||||
|
The fast integer method is much less accurate than the other two.
|
||||||
|
.TP
|
||||||
|
.B \-dither fs
|
||||||
|
Use Floyd-Steinberg dithering in color quantization.
|
||||||
|
.TP
|
||||||
|
.B \-dither ordered
|
||||||
|
Use ordered dithering in color quantization.
|
||||||
|
.TP
|
||||||
|
.B \-dither none
|
||||||
|
Do not use dithering in color quantization.
|
||||||
|
By default, Floyd-Steinberg dithering is applied when quantizing colors; this
|
||||||
|
is slow but usually produces the best results. Ordered dither is a compromise
|
||||||
|
between speed and quality; no dithering is fast but usually looks awful. Note
|
||||||
|
that these switches have no effect unless color quantization is being done.
|
||||||
|
Ordered dither is only available in
|
||||||
|
.B \-onepass
|
||||||
|
mode.
|
||||||
|
.TP
|
||||||
|
.BI \-map " file"
|
||||||
|
Quantize to the colors used in the specified image file. This is useful for
|
||||||
|
producing multiple files with identical color maps, or for forcing a
|
||||||
|
predefined set of colors to be used. The
|
||||||
|
.I file
|
||||||
|
must be a GIF or PPM file. This option overrides
|
||||||
|
.B \-colors
|
||||||
|
and
|
||||||
|
.BR \-onepass .
|
||||||
|
.TP
|
||||||
|
.B \-nosmooth
|
||||||
|
Use a faster, lower-quality upsampling routine.
|
||||||
|
.TP
|
||||||
|
.B \-onepass
|
||||||
|
Use one-pass instead of two-pass color quantization. The one-pass method is
|
||||||
|
faster and needs less memory, but it produces a lower-quality image.
|
||||||
|
.B \-onepass
|
||||||
|
is ignored unless you also say
|
||||||
|
.B \-colors
|
||||||
|
.IR N .
|
||||||
|
Also, the one-pass method is always used for gray-scale output (the two-pass
|
||||||
|
method is no improvement then).
|
||||||
|
.TP
|
||||||
|
.BI \-maxmemory " N"
|
||||||
|
Set limit for amount of memory to use in processing large images. Value is
|
||||||
|
in thousands of bytes, or millions of bytes if "M" is attached to the
|
||||||
|
number. For example,
|
||||||
|
.B \-max 4m
|
||||||
|
selects 4000000 bytes. If more space is needed, temporary files will be used.
|
||||||
|
.TP
|
||||||
|
.BI \-outfile " name"
|
||||||
|
Send output image to the named file, not to standard output.
|
||||||
|
.TP
|
||||||
|
.B \-verbose
|
||||||
|
Enable debug printout. More
|
||||||
|
.BR \-v 's
|
||||||
|
give more output. Also, version information is printed at startup.
|
||||||
|
.TP
|
||||||
|
.B \-debug
|
||||||
|
Same as
|
||||||
|
.BR \-verbose .
|
||||||
|
.SH EXAMPLES
|
||||||
|
.LP
|
||||||
|
This example decompresses the JPEG file foo.jpg, quantizes it to
|
||||||
|
256 colors, and saves the output in 8-bit BMP format in foo.bmp:
|
||||||
|
.IP
|
||||||
|
.B djpeg \-colors 256 \-bmp
|
||||||
|
.I foo.jpg
|
||||||
|
.B >
|
||||||
|
.I foo.bmp
|
||||||
|
.SH HINTS
|
||||||
|
To get a quick preview of an image, use the
|
||||||
|
.B \-grayscale
|
||||||
|
and/or
|
||||||
|
.B \-scale
|
||||||
|
switches.
|
||||||
|
.B \-grayscale \-scale 1/8
|
||||||
|
is the fastest case.
|
||||||
|
.PP
|
||||||
|
Several options are available that trade off image quality to gain speed.
|
||||||
|
.B \-fast
|
||||||
|
turns on the recommended settings.
|
||||||
|
.PP
|
||||||
|
.B \-dct fast
|
||||||
|
and/or
|
||||||
|
.B \-nosmooth
|
||||||
|
gain speed at a small sacrifice in quality.
|
||||||
|
When producing a color-quantized image,
|
||||||
|
.B \-onepass \-dither ordered
|
||||||
|
is fast but much lower quality than the default behavior.
|
||||||
|
.B \-dither none
|
||||||
|
may give acceptable results in two-pass mode, but is seldom tolerable in
|
||||||
|
one-pass mode.
|
||||||
|
.PP
|
||||||
|
If you are fortunate enough to have very fast floating point hardware,
|
||||||
|
\fB\-dct float\fR may be even faster than \fB\-dct fast\fR. But on most
|
||||||
|
machines \fB\-dct float\fR is slower than \fB\-dct int\fR; in this case it is
|
||||||
|
not worth using, because its theoretical accuracy advantage is too small to be
|
||||||
|
significant in practice.
|
||||||
|
.SH ENVIRONMENT
|
||||||
|
.TP
|
||||||
|
.B JPEGMEM
|
||||||
|
If this environment variable is set, its value is the default memory limit.
|
||||||
|
The value is specified as described for the
|
||||||
|
.B \-maxmemory
|
||||||
|
switch.
|
||||||
|
.B JPEGMEM
|
||||||
|
overrides the default value specified when the program was compiled, and
|
||||||
|
itself is overridden by an explicit
|
||||||
|
.BR \-maxmemory .
|
||||||
|
.SH SEE ALSO
|
||||||
|
.BR cjpeg (1),
|
||||||
|
.BR jpegtran (1),
|
||||||
|
.BR rdjpgcom (1),
|
||||||
|
.BR wrjpgcom (1)
|
||||||
|
.br
|
||||||
|
.BR ppm (5),
|
||||||
|
.BR pgm (5)
|
||||||
|
.br
|
||||||
|
Wallace, Gregory K. "The JPEG Still Picture Compression Standard",
|
||||||
|
Communications of the ACM, April 1991 (vol. 34, no. 4), pp. 30-44.
|
||||||
|
.SH AUTHOR
|
||||||
|
Independent JPEG Group
|
||||||
|
.SH BUGS
|
||||||
|
To avoid the Unisys LZW patent,
|
||||||
|
.B djpeg
|
||||||
|
produces uncompressed GIF files. These are larger than they should be, but
|
||||||
|
are readable by standard GIF decoders.
|
626
library/deps/libjpeg-turbo/djpeg.c
Normal file
|
@ -0,0 +1,626 @@
|
||||||
|
/*
|
||||||
|
* djpeg.c
|
||||||
|
*
|
||||||
|
* Copyright (C) 1991-1997, Thomas G. Lane.
|
||||||
|
* Copyright (C) 2010-2011, D. R. Commander.
|
||||||
|
* This file is part of the Independent JPEG Group's software.
|
||||||
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
|
*
|
||||||
|
* This file contains a command-line user interface for the JPEG decompressor.
|
||||||
|
* It should work on any system with Unix- or MS-DOS-style command lines.
|
||||||
|
*
|
||||||
|
* Two different command line styles are permitted, depending on the
|
||||||
|
* compile-time switch TWO_FILE_COMMANDLINE:
|
||||||
|
* djpeg [options] inputfile outputfile
|
||||||
|
* djpeg [options] [inputfile]
|
||||||
|
* In the second style, output is always to standard output, which you'd
|
||||||
|
* normally redirect to a file or pipe to some other program. Input is
|
||||||
|
* either from a named file or from standard input (typically redirected).
|
||||||
|
* The second style is convenient on Unix but is unhelpful on systems that
|
||||||
|
* don't support pipes. Also, you MUST use the first style if your system
|
||||||
|
* doesn't do binary I/O to stdin/stdout.
|
||||||
|
* To simplify script writing, the "-outfile" switch is provided. The syntax
|
||||||
|
* djpeg [options] -outfile outputfile inputfile
|
||||||
|
* works regardless of which command line style is used.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
|
||||||
|
#include "jversion.h" /* for version message */
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
|
#include <ctype.h> /* to declare isprint() */
|
||||||
|
|
||||||
|
#ifdef USE_CCOMMAND /* command-line reader for Macintosh */
|
||||||
|
#ifdef __MWERKS__
|
||||||
|
#include <SIOUX.h> /* Metrowerks needs this */
|
||||||
|
#include <console.h> /* ... and this */
|
||||||
|
#endif
|
||||||
|
#ifdef THINK_C
|
||||||
|
#include <console.h> /* Think declares it here */
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Create the add-on message string table. */
|
||||||
|
|
||||||
|
#define JMESSAGE(code,string) string ,
|
||||||
|
|
||||||
|
static const char * const cdjpeg_message_table[] = {
|
||||||
|
#include "cderror.h"
|
||||||
|
NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This list defines the known output image formats
|
||||||
|
* (not all of which need be supported by a given version).
|
||||||
|
* You can change the default output format by defining DEFAULT_FMT;
|
||||||
|
* indeed, you had better do so if you undefine PPM_SUPPORTED.
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
FMT_BMP, /* BMP format (Windows flavor) */
|
||||||
|
FMT_GIF, /* GIF format */
|
||||||
|
FMT_OS2, /* BMP format (OS/2 flavor) */
|
||||||
|
FMT_PPM, /* PPM/PGM (PBMPLUS formats) */
|
||||||
|
FMT_RLE, /* RLE format */
|
||||||
|
FMT_TARGA, /* Targa format */
|
||||||
|
FMT_TIFF /* TIFF format */
|
||||||
|
} IMAGE_FORMATS;
|
||||||
|
|
||||||
|
#ifndef DEFAULT_FMT /* so can override from CFLAGS in Makefile */
|
||||||
|
#define DEFAULT_FMT FMT_PPM
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static IMAGE_FORMATS requested_fmt;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Argument-parsing code.
|
||||||
|
* The switch parser is designed to be useful with DOS-style command line
|
||||||
|
* syntax, ie, intermixed switches and file names, where only the switches
|
||||||
|
* to the left of a given file name affect processing of that file.
|
||||||
|
* The main program in this file doesn't actually use this capability...
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
static const char * progname; /* program name for error messages */
|
||||||
|
static char * outfilename; /* for -outfile switch */
|
||||||
|
|
||||||
|
|
||||||
|
LOCAL(void)
|
||||||
|
usage (void)
|
||||||
|
/* complain about bad command line */
|
||||||
|
{
|
||||||
|
fprintf(stderr, "usage: %s [switches] ", progname);
|
||||||
|
#ifdef TWO_FILE_COMMANDLINE
|
||||||
|
fprintf(stderr, "inputfile outputfile\n");
|
||||||
|
#else
|
||||||
|
fprintf(stderr, "[inputfile]\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
fprintf(stderr, "Switches (names may be abbreviated):\n");
|
||||||
|
fprintf(stderr, " -colors N Reduce image to no more than N colors\n");
|
||||||
|
fprintf(stderr, " -fast Fast, low-quality processing\n");
|
||||||
|
fprintf(stderr, " -grayscale Force grayscale output\n");
|
||||||
|
fprintf(stderr, " -rgb Force RGB output\n");
|
||||||
|
#ifdef IDCT_SCALING_SUPPORTED
|
||||||
|
fprintf(stderr, " -scale M/N Scale output image by fraction M/N, eg, 1/8\n");
|
||||||
|
#endif
|
||||||
|
#ifdef BMP_SUPPORTED
|
||||||
|
fprintf(stderr, " -bmp Select BMP output format (Windows style)%s\n",
|
||||||
|
(DEFAULT_FMT == FMT_BMP ? " (default)" : ""));
|
||||||
|
#endif
|
||||||
|
#ifdef GIF_SUPPORTED
|
||||||
|
fprintf(stderr, " -gif Select GIF output format%s\n",
|
||||||
|
(DEFAULT_FMT == FMT_GIF ? " (default)" : ""));
|
||||||
|
#endif
|
||||||
|
#ifdef BMP_SUPPORTED
|
||||||
|
fprintf(stderr, " -os2 Select BMP output format (OS/2 style)%s\n",
|
||||||
|
(DEFAULT_FMT == FMT_OS2 ? " (default)" : ""));
|
||||||
|
#endif
|
||||||
|
#ifdef PPM_SUPPORTED
|
||||||
|
fprintf(stderr, " -pnm Select PBMPLUS (PPM/PGM) output format%s\n",
|
||||||
|
(DEFAULT_FMT == FMT_PPM ? " (default)" : ""));
|
||||||
|
#endif
|
||||||
|
#ifdef RLE_SUPPORTED
|
||||||
|
fprintf(stderr, " -rle Select Utah RLE output format%s\n",
|
||||||
|
(DEFAULT_FMT == FMT_RLE ? " (default)" : ""));
|
||||||
|
#endif
|
||||||
|
#ifdef TARGA_SUPPORTED
|
||||||
|
fprintf(stderr, " -targa Select Targa output format%s\n",
|
||||||
|
(DEFAULT_FMT == FMT_TARGA ? " (default)" : ""));
|
||||||
|
#endif
|
||||||
|
fprintf(stderr, "Switches for advanced users:\n");
|
||||||
|
#ifdef DCT_ISLOW_SUPPORTED
|
||||||
|
fprintf(stderr, " -dct int Use integer DCT method%s\n",
|
||||||
|
(JDCT_DEFAULT == JDCT_ISLOW ? " (default)" : ""));
|
||||||
|
#endif
|
||||||
|
#ifdef DCT_IFAST_SUPPORTED
|
||||||
|
fprintf(stderr, " -dct fast Use fast integer DCT (less accurate)%s\n",
|
||||||
|
(JDCT_DEFAULT == JDCT_IFAST ? " (default)" : ""));
|
||||||
|
#endif
|
||||||
|
#ifdef DCT_FLOAT_SUPPORTED
|
||||||
|
fprintf(stderr, " -dct float Use floating-point DCT method%s\n",
|
||||||
|
(JDCT_DEFAULT == JDCT_FLOAT ? " (default)" : ""));
|
||||||
|
#endif
|
||||||
|
fprintf(stderr, " -dither fs Use F-S dithering (default)\n");
|
||||||
|
fprintf(stderr, " -dither none Don't use dithering in quantization\n");
|
||||||
|
fprintf(stderr, " -dither ordered Use ordered dither (medium speed, quality)\n");
|
||||||
|
#ifdef QUANT_2PASS_SUPPORTED
|
||||||
|
fprintf(stderr, " -map FILE Map to colors used in named image file\n");
|
||||||
|
#endif
|
||||||
|
fprintf(stderr, " -nosmooth Don't use high-quality upsampling\n");
|
||||||
|
#ifdef QUANT_1PASS_SUPPORTED
|
||||||
|
fprintf(stderr, " -onepass Use 1-pass quantization (fast, low quality)\n");
|
||||||
|
#endif
|
||||||
|
fprintf(stderr, " -maxmemory N Maximum memory to use (in kbytes)\n");
|
||||||
|
fprintf(stderr, " -outfile name Specify name for output file\n");
|
||||||
|
fprintf(stderr, " -verbose or -debug Emit debug output\n");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
LOCAL(int)
|
||||||
|
parse_switches (j_decompress_ptr cinfo, int argc, char **argv,
|
||||||
|
int last_file_arg_seen, boolean for_real)
|
||||||
|
/* Parse optional switches.
|
||||||
|
* Returns argv[] index of first file-name argument (== argc if none).
|
||||||
|
* Any file names with indexes <= last_file_arg_seen are ignored;
|
||||||
|
* they have presumably been processed in a previous iteration.
|
||||||
|
* (Pass 0 for last_file_arg_seen on the first or only iteration.)
|
||||||
|
* for_real is FALSE on the first (dummy) pass; we may skip any expensive
|
||||||
|
* processing.
|
||||||
|
*/
|
||||||
|
{
|
||||||
|
int argn;
|
||||||
|
char * arg;
|
||||||
|
|
||||||
|
/* Set up default JPEG parameters. */
|
||||||
|
requested_fmt = DEFAULT_FMT; /* set default output file format */
|
||||||
|
outfilename = NULL;
|
||||||
|
cinfo->err->trace_level = 0;
|
||||||
|
|
||||||
|
/* Scan command line options, adjust parameters */
|
||||||
|
|
||||||
|
for (argn = 1; argn < argc; argn++) {
|
||||||
|
arg = argv[argn];
|
||||||
|
if (*arg != '-') {
|
||||||
|
/* Not a switch, must be a file name argument */
|
||||||
|
if (argn <= last_file_arg_seen) {
|
||||||
|
outfilename = NULL; /* -outfile applies to just one input file */
|
||||||
|
continue; /* ignore this name if previously processed */
|
||||||
|
}
|
||||||
|
break; /* else done parsing switches */
|
||||||
|
}
|
||||||
|
arg++; /* advance past switch marker character */
|
||||||
|
|
||||||
|
if (keymatch(arg, "bmp", 1)) {
|
||||||
|
/* BMP output format. */
|
||||||
|
requested_fmt = FMT_BMP;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "colors", 1) || keymatch(arg, "colours", 1) ||
|
||||||
|
keymatch(arg, "quantize", 1) || keymatch(arg, "quantise", 1)) {
|
||||||
|
/* Do color quantization. */
|
||||||
|
int val;
|
||||||
|
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
if (sscanf(argv[argn], "%d", &val) != 1)
|
||||||
|
usage();
|
||||||
|
cinfo->desired_number_of_colors = val;
|
||||||
|
cinfo->quantize_colors = TRUE;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "dct", 2)) {
|
||||||
|
/* Select IDCT algorithm. */
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
if (keymatch(argv[argn], "int", 1)) {
|
||||||
|
cinfo->dct_method = JDCT_ISLOW;
|
||||||
|
} else if (keymatch(argv[argn], "fast", 2)) {
|
||||||
|
cinfo->dct_method = JDCT_IFAST;
|
||||||
|
} else if (keymatch(argv[argn], "float", 2)) {
|
||||||
|
cinfo->dct_method = JDCT_FLOAT;
|
||||||
|
} else
|
||||||
|
usage();
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "dither", 2)) {
|
||||||
|
/* Select dithering algorithm. */
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
if (keymatch(argv[argn], "fs", 2)) {
|
||||||
|
cinfo->dither_mode = JDITHER_FS;
|
||||||
|
} else if (keymatch(argv[argn], "none", 2)) {
|
||||||
|
cinfo->dither_mode = JDITHER_NONE;
|
||||||
|
} else if (keymatch(argv[argn], "ordered", 2)) {
|
||||||
|
cinfo->dither_mode = JDITHER_ORDERED;
|
||||||
|
} else
|
||||||
|
usage();
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "debug", 1) || keymatch(arg, "verbose", 1)) {
|
||||||
|
/* Enable debug printouts. */
|
||||||
|
/* On first -d, print version identification */
|
||||||
|
static boolean printed_version = FALSE;
|
||||||
|
|
||||||
|
if (! printed_version) {
|
||||||
|
fprintf(stderr, "%s version %s (build %s)\n",
|
||||||
|
PACKAGE_NAME, VERSION, BUILD);
|
||||||
|
fprintf(stderr, "%s\n\n", JCOPYRIGHT);
|
||||||
|
fprintf(stderr, "Emulating The Independent JPEG Group's libjpeg, version %s\n\n",
|
||||||
|
JVERSION);
|
||||||
|
printed_version = TRUE;
|
||||||
|
}
|
||||||
|
cinfo->err->trace_level++;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "fast", 1)) {
|
||||||
|
/* Select recommended processing options for quick-and-dirty output. */
|
||||||
|
cinfo->two_pass_quantize = FALSE;
|
||||||
|
cinfo->dither_mode = JDITHER_ORDERED;
|
||||||
|
if (! cinfo->quantize_colors) /* don't override an earlier -colors */
|
||||||
|
cinfo->desired_number_of_colors = 216;
|
||||||
|
cinfo->dct_method = JDCT_FASTEST;
|
||||||
|
cinfo->do_fancy_upsampling = FALSE;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "gif", 1)) {
|
||||||
|
/* GIF output format. */
|
||||||
|
requested_fmt = FMT_GIF;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "grayscale", 2) || keymatch(arg, "greyscale",2)) {
|
||||||
|
/* Force monochrome output. */
|
||||||
|
cinfo->out_color_space = JCS_GRAYSCALE;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "rgb", 2)) {
|
||||||
|
/* Force RGB output. */
|
||||||
|
cinfo->out_color_space = JCS_RGB;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "map", 3)) {
|
||||||
|
/* Quantize to a color map taken from an input file. */
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
if (for_real) { /* too expensive to do twice! */
|
||||||
|
#ifdef QUANT_2PASS_SUPPORTED /* otherwise can't quantize to supplied map */
|
||||||
|
FILE * mapfile;
|
||||||
|
|
||||||
|
if ((mapfile = fopen(argv[argn], READ_BINARY)) == NULL) {
|
||||||
|
fprintf(stderr, "%s: can't open %s\n", progname, argv[argn]);
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
read_color_map(cinfo, mapfile);
|
||||||
|
fclose(mapfile);
|
||||||
|
cinfo->quantize_colors = TRUE;
|
||||||
|
#else
|
||||||
|
ERREXIT(cinfo, JERR_NOT_COMPILED);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "maxmemory", 3)) {
|
||||||
|
/* Maximum memory in Kb (or Mb with 'm'). */
|
||||||
|
long lval;
|
||||||
|
char ch = 'x';
|
||||||
|
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
if (sscanf(argv[argn], "%ld%c", &lval, &ch) < 1)
|
||||||
|
usage();
|
||||||
|
if (ch == 'm' || ch == 'M')
|
||||||
|
lval *= 1000L;
|
||||||
|
cinfo->mem->max_memory_to_use = lval * 1000L;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "nosmooth", 3)) {
|
||||||
|
/* Suppress fancy upsampling */
|
||||||
|
cinfo->do_fancy_upsampling = FALSE;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "onepass", 3)) {
|
||||||
|
/* Use fast one-pass quantization. */
|
||||||
|
cinfo->two_pass_quantize = FALSE;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "os2", 3)) {
|
||||||
|
/* BMP output format (OS/2 flavor). */
|
||||||
|
requested_fmt = FMT_OS2;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "outfile", 4)) {
|
||||||
|
/* Set output file name. */
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
outfilename = argv[argn]; /* save it away for later use */
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "pnm", 1) || keymatch(arg, "ppm", 1)) {
|
||||||
|
/* PPM/PGM output format. */
|
||||||
|
requested_fmt = FMT_PPM;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "rle", 1)) {
|
||||||
|
/* RLE output format. */
|
||||||
|
requested_fmt = FMT_RLE;
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "scale", 1)) {
|
||||||
|
/* Scale the output image by a fraction M/N. */
|
||||||
|
if (++argn >= argc) /* advance to next argument */
|
||||||
|
usage();
|
||||||
|
if (sscanf(argv[argn], "%d/%d",
|
||||||
|
&cinfo->scale_num, &cinfo->scale_denom) != 2)
|
||||||
|
usage();
|
||||||
|
|
||||||
|
} else if (keymatch(arg, "targa", 1)) {
|
||||||
|
/* Targa output format. */
|
||||||
|
requested_fmt = FMT_TARGA;
|
||||||
|
|
||||||
|
} else {
|
||||||
|
usage(); /* bogus switch */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return argn; /* return index of next arg (file name) */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Marker processor for COM and interesting APPn markers.
|
||||||
|
* This replaces the library's built-in processor, which just skips the marker.
|
||||||
|
* We want to print out the marker as text, to the extent possible.
|
||||||
|
* Note this code relies on a non-suspending data source.
|
||||||
|
*/
|
||||||
|
|
||||||
|
LOCAL(unsigned int)
|
||||||
|
jpeg_getc (j_decompress_ptr cinfo)
|
||||||
|
/* Read next byte */
|
||||||
|
{
|
||||||
|
struct jpeg_source_mgr * datasrc = cinfo->src;
|
||||||
|
|
||||||
|
if (datasrc->bytes_in_buffer == 0) {
|
||||||
|
if (! (*datasrc->fill_input_buffer) (cinfo))
|
||||||
|
ERREXIT(cinfo, JERR_CANT_SUSPEND);
|
||||||
|
}
|
||||||
|
datasrc->bytes_in_buffer--;
|
||||||
|
return GETJOCTET(*datasrc->next_input_byte++);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
METHODDEF(boolean)
|
||||||
|
print_text_marker (j_decompress_ptr cinfo)
|
||||||
|
{
|
||||||
|
boolean traceit = (cinfo->err->trace_level >= 1);
|
||||||
|
INT32 length;
|
||||||
|
unsigned int ch;
|
||||||
|
unsigned int lastch = 0;
|
||||||
|
|
||||||
|
length = jpeg_getc(cinfo) << 8;
|
||||||
|
length += jpeg_getc(cinfo);
|
||||||
|
length -= 2; /* discount the length word itself */
|
||||||
|
|
||||||
|
if (traceit) {
|
||||||
|
if (cinfo->unread_marker == JPEG_COM)
|
||||||
|
fprintf(stderr, "Comment, length %ld:\n", (long) length);
|
||||||
|
else /* assume it is an APPn otherwise */
|
||||||
|
fprintf(stderr, "APP%d, length %ld:\n",
|
||||||
|
cinfo->unread_marker - JPEG_APP0, (long) length);
|
||||||
|
}
|
||||||
|
|
||||||
|
while (--length >= 0) {
|
||||||
|
ch = jpeg_getc(cinfo);
|
||||||
|
if (traceit) {
|
||||||
|
/* Emit the character in a readable form.
|
||||||
|
* Nonprintables are converted to \nnn form,
|
||||||
|
* while \ is converted to \\.
|
||||||
|
* Newlines in CR, CR/LF, or LF form will be printed as one newline.
|
||||||
|
*/
|
||||||
|
if (ch == '\r') {
|
||||||
|
fprintf(stderr, "\n");
|
||||||
|
} else if (ch == '\n') {
|
||||||
|
if (lastch != '\r')
|
||||||
|
fprintf(stderr, "\n");
|
||||||
|
} else if (ch == '\\') {
|
||||||
|
fprintf(stderr, "\\\\");
|
||||||
|
} else if (isprint(ch)) {
|
||||||
|
putc(ch, stderr);
|
||||||
|
} else {
|
||||||
|
fprintf(stderr, "\\%03o", ch);
|
||||||
|
}
|
||||||
|
lastch = ch;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (traceit)
|
||||||
|
fprintf(stderr, "\n");
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The main program.
|
||||||
|
*/
|
||||||
|
|
||||||
|
int
|
||||||
|
main (int argc, char **argv)
|
||||||
|
{
|
||||||
|
struct jpeg_decompress_struct cinfo;
|
||||||
|
struct jpeg_error_mgr jerr;
|
||||||
|
#ifdef PROGRESS_REPORT
|
||||||
|
struct cdjpeg_progress_mgr progress;
|
||||||
|
#endif
|
||||||
|
int file_index;
|
||||||
|
djpeg_dest_ptr dest_mgr = NULL;
|
||||||
|
FILE * input_file;
|
||||||
|
FILE * output_file;
|
||||||
|
JDIMENSION num_scanlines;
|
||||||
|
|
||||||
|
/* On Mac, fetch a command line. */
|
||||||
|
#ifdef USE_CCOMMAND
|
||||||
|
argc = ccommand(&argv);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
progname = argv[0];
|
||||||
|
if (progname == NULL || progname[0] == 0)
|
||||||
|
progname = "djpeg"; /* in case C library doesn't provide it */
|
||||||
|
|
||||||
|
/* Initialize the JPEG decompression object with default error handling. */
|
||||||
|
cinfo.err = jpeg_std_error(&jerr);
|
||||||
|
jpeg_create_decompress(&cinfo);
|
||||||
|
/* Add some application-specific error messages (from cderror.h) */
|
||||||
|
jerr.addon_message_table = cdjpeg_message_table;
|
||||||
|
jerr.first_addon_message = JMSG_FIRSTADDONCODE;
|
||||||
|
jerr.last_addon_message = JMSG_LASTADDONCODE;
|
||||||
|
|
||||||
|
/* Insert custom marker processor for COM and APP12.
|
||||||
|
* APP12 is used by some digital camera makers for textual info,
|
||||||
|
* so we provide the ability to display it as text.
|
||||||
|
* If you like, additional APPn marker types can be selected for display,
|
||||||
|
* but don't try to override APP0 or APP14 this way (see libjpeg.txt).
|
||||||
|
*/
|
||||||
|
jpeg_set_marker_processor(&cinfo, JPEG_COM, print_text_marker);
|
||||||
|
jpeg_set_marker_processor(&cinfo, JPEG_APP0+12, print_text_marker);
|
||||||
|
|
||||||
|
/* Now safe to enable signal catcher. */
|
||||||
|
#ifdef NEED_SIGNAL_CATCHER
|
||||||
|
enable_signal_catcher((j_common_ptr) &cinfo);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Scan command line to find file names. */
|
||||||
|
/* It is convenient to use just one switch-parsing routine, but the switch
|
||||||
|
* values read here are ignored; we will rescan the switches after opening
|
||||||
|
* the input file.
|
||||||
|
* (Exception: tracing level set here controls verbosity for COM markers
|
||||||
|
* found during jpeg_read_header...)
|
||||||
|
*/
|
||||||
|
|
||||||
|
file_index = parse_switches(&cinfo, argc, argv, 0, FALSE);
|
||||||
|
|
||||||
|
#ifdef TWO_FILE_COMMANDLINE
|
||||||
|
/* Must have either -outfile switch or explicit output file name */
|
||||||
|
if (outfilename == NULL) {
|
||||||
|
if (file_index != argc-2) {
|
||||||
|
fprintf(stderr, "%s: must name one input and one output file\n",
|
||||||
|
progname);
|
||||||
|
usage();
|
||||||
|
}
|
||||||
|
outfilename = argv[file_index+1];
|
||||||
|
} else {
|
||||||
|
if (file_index != argc-1) {
|
||||||
|
fprintf(stderr, "%s: must name one input and one output file\n",
|
||||||
|
progname);
|
||||||
|
usage();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
/* Unix style: expect zero or one file name */
|
||||||
|
if (file_index < argc-1) {
|
||||||
|
fprintf(stderr, "%s: only one input file\n", progname);
|
||||||
|
usage();
|
||||||
|
}
|
||||||
|
#endif /* TWO_FILE_COMMANDLINE */
|
||||||
|
|
||||||
|
/* Open the input file. */
|
||||||
|
if (file_index < argc) {
|
||||||
|
if ((input_file = fopen(argv[file_index], READ_BINARY)) == NULL) {
|
||||||
|
fprintf(stderr, "%s: can't open %s\n", progname, argv[file_index]);
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
/* default input file is stdin */
|
||||||
|
input_file = read_stdin();
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Open the output file. */
|
||||||
|
if (outfilename != NULL) {
|
||||||
|
if ((output_file = fopen(outfilename, WRITE_BINARY)) == NULL) {
|
||||||
|
fprintf(stderr, "%s: can't open %s\n", progname, outfilename);
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
/* default output file is stdout */
|
||||||
|
output_file = write_stdout();
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef PROGRESS_REPORT
|
||||||
|
start_progress_monitor((j_common_ptr) &cinfo, &progress);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Specify data source for decompression */
|
||||||
|
jpeg_stdio_src(&cinfo, input_file);
|
||||||
|
|
||||||
|
/* Read file header, set default decompression parameters */
|
||||||
|
(void) jpeg_read_header(&cinfo, TRUE);
|
||||||
|
|
||||||
|
/* Adjust default decompression parameters by re-parsing the options */
|
||||||
|
file_index = parse_switches(&cinfo, argc, argv, 0, TRUE);
|
||||||
|
|
||||||
|
/* Initialize the output module now to let it override any crucial
|
||||||
|
* option settings (for instance, GIF wants to force color quantization).
|
||||||
|
*/
|
||||||
|
switch (requested_fmt) {
|
||||||
|
#ifdef BMP_SUPPORTED
|
||||||
|
case FMT_BMP:
|
||||||
|
dest_mgr = jinit_write_bmp(&cinfo, FALSE);
|
||||||
|
break;
|
||||||
|
case FMT_OS2:
|
||||||
|
dest_mgr = jinit_write_bmp(&cinfo, TRUE);
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef GIF_SUPPORTED
|
||||||
|
case FMT_GIF:
|
||||||
|
dest_mgr = jinit_write_gif(&cinfo);
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef PPM_SUPPORTED
|
||||||
|
case FMT_PPM:
|
||||||
|
dest_mgr = jinit_write_ppm(&cinfo);
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef RLE_SUPPORTED
|
||||||
|
case FMT_RLE:
|
||||||
|
dest_mgr = jinit_write_rle(&cinfo);
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
#ifdef TARGA_SUPPORTED
|
||||||
|
case FMT_TARGA:
|
||||||
|
dest_mgr = jinit_write_targa(&cinfo);
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
default:
|
||||||
|
ERREXIT(&cinfo, JERR_UNSUPPORTED_FORMAT);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
dest_mgr->output_file = output_file;
|
||||||
|
|
||||||
|
/* Start decompressor */
|
||||||
|
(void) jpeg_start_decompress(&cinfo);
|
||||||
|
|
||||||
|
/* Write output file header */
|
||||||
|
(*dest_mgr->start_output) (&cinfo, dest_mgr);
|
||||||
|
|
||||||
|
/* Process data */
|
||||||
|
while (cinfo.output_scanline < cinfo.output_height) {
|
||||||
|
num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer,
|
||||||
|
dest_mgr->buffer_height);
|
||||||
|
(*dest_mgr->put_pixel_rows) (&cinfo, dest_mgr, num_scanlines);
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef PROGRESS_REPORT
|
||||||
|
/* Hack: count final pass as done in case finish_output does an extra pass.
|
||||||
|
* The library won't have updated completed_passes.
|
||||||
|
*/
|
||||||
|
progress.pub.completed_passes = progress.pub.total_passes;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Finish decompression and release memory.
|
||||||
|
* I must do it in this order because output module has allocated memory
|
||||||
|
* of lifespan JPOOL_IMAGE; it needs to finish before releasing memory.
|
||||||
|
*/
|
||||||
|
(*dest_mgr->finish_output) (&cinfo, dest_mgr);
|
||||||
|
(void) jpeg_finish_decompress(&cinfo);
|
||||||
|
jpeg_destroy_decompress(&cinfo);
|
||||||
|
|
||||||
|
/* Close files, if we opened them */
|
||||||
|
if (input_file != stdin)
|
||||||
|
fclose(input_file);
|
||||||
|
if (output_file != stdout)
|
||||||
|
fclose(output_file);
|
||||||
|
|
||||||
|
#ifdef PROGRESS_REPORT
|
||||||
|
end_progress_monitor((j_common_ptr) &cinfo);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* All done. */
|
||||||
|
exit(jerr.num_warnings ? EXIT_WARNING : EXIT_SUCCESS);
|
||||||
|
return 0; /* suppress no-return-value warnings */
|
||||||
|
}
|
88
library/deps/libjpeg-turbo/doc/html/annotated.html
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<title>TurboJPEG: Data Structures</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body onload='searchBox.OnSelectItem(0);'>
|
||||||
|
<!-- Generated by Doxygen 1.7.4 -->
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
--></script>
|
||||||
|
<div id="top">
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">TurboJPEG <span id="projectnumber">1.2</span></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div id="navrow1" class="tabs">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||||
|
<li><a href="modules.html"><span>Modules</span></a></li>
|
||||||
|
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li id="searchli">
|
||||||
|
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div id="navrow2" class="tabs2">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
|
||||||
|
<li><a href="functions.html"><span>Data Fields</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Data Structures</div> </div>
|
||||||
|
</div>
|
||||||
|
<div class="contents">
|
||||||
|
<div class="textblock">Here are the data structures with brief descriptions:</div><table>
|
||||||
|
<tr><td class="indexkey"><a class="el" href="structtjregion.html">tjregion</a></td><td class="indexvalue">Cropping region </td></tr>
|
||||||
|
<tr><td class="indexkey"><a class="el" href="structtjscalingfactor.html">tjscalingfactor</a></td><td class="indexvalue">Scaling factor </td></tr>
|
||||||
|
<tr><td class="indexkey"><a class="el" href="structtjtransform.html">tjtransform</a></td><td class="indexvalue">Lossless transform </td></tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Variables</a></div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="footer"/><address class="footer"><small>Generated on Sun Dec 18 2011 20:09:47 for TurboJPEG by 
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
library/deps/libjpeg-turbo/doc/html/bc_s.png
Normal file
After Width: | Height: | Size: 677 B |
87
library/deps/libjpeg-turbo/doc/html/classes.html
Normal file
|
@ -0,0 +1,87 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<title>TurboJPEG: Data Structure Index</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body onload='searchBox.OnSelectItem(0);'>
|
||||||
|
<!-- Generated by Doxygen 1.7.4 -->
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
--></script>
|
||||||
|
<div id="top">
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">TurboJPEG <span id="projectnumber">1.2</span></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div id="navrow1" class="tabs">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||||
|
<li><a href="modules.html"><span>Modules</span></a></li>
|
||||||
|
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li id="searchli">
|
||||||
|
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div id="navrow2" class="tabs2">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li class="current"><a href="classes.html"><span>Data Structure Index</span></a></li>
|
||||||
|
<li><a href="functions.html"><span>Data Fields</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Data Structure Index</div> </div>
|
||||||
|
</div>
|
||||||
|
<div class="contents">
|
||||||
|
<div class="qindex"><a class="qindex" href="#letter_T">T</a></div>
|
||||||
|
<table align="center" width="95%" border="0" cellspacing="0" cellpadding="0">
|
||||||
|
<tr><td><a name="letter_T"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">  T  </div></td></tr></table>
|
||||||
|
</td><td><a class="el" href="structtjregion.html">tjregion</a>   </td><td><a class="el" href="structtjscalingfactor.html">tjscalingfactor</a>   </td><td><a class="el" href="structtjtransform.html">tjtransform</a>   </td></tr></table><div class="qindex"><a class="qindex" href="#letter_T">T</a></div>
|
||||||
|
</div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Variables</a></div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="footer"/><address class="footer"><small>Generated on Sun Dec 18 2011 20:09:47 for TurboJPEG by 
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
library/deps/libjpeg-turbo/doc/html/closed.png
Normal file
After Width: | Height: | Size: 126 B |
835
library/deps/libjpeg-turbo/doc/html/doxygen.css
Normal file
|
@ -0,0 +1,835 @@
|
||||||
|
/* The standard CSS for doxygen */
|
||||||
|
|
||||||
|
body, table, div, p, dl {
|
||||||
|
font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @group Heading Levels */
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 150%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 150%;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 10px 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 120%;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
dt {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.multicol {
|
||||||
|
-moz-column-gap: 1em;
|
||||||
|
-webkit-column-gap: 1em;
|
||||||
|
-moz-column-count: 3;
|
||||||
|
-webkit-column-count: 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.startli, p.startdd, p.starttd {
|
||||||
|
margin-top: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.endli {
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.enddd {
|
||||||
|
margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.endtd {
|
||||||
|
margin-bottom: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @end */
|
||||||
|
|
||||||
|
caption {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.legend {
|
||||||
|
font-size: 70%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3.version {
|
||||||
|
font-size: 90%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.qindex, div.navtab{
|
||||||
|
background-color: #EBEFF6;
|
||||||
|
border: 1px solid #A3B4D7;
|
||||||
|
text-align: center;
|
||||||
|
margin: 2px;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.qindex, div.navpath {
|
||||||
|
width: 100%;
|
||||||
|
line-height: 140%;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.navtab {
|
||||||
|
margin-right: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @group Link Styling */
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #3D578C;
|
||||||
|
font-weight: normal;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contents a:visited {
|
||||||
|
color: #4665A2;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.qindex {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.qindexHL {
|
||||||
|
font-weight: bold;
|
||||||
|
background-color: #9CAFD4;
|
||||||
|
color: #ffffff;
|
||||||
|
border: 1px double #869DCA;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contents a.qindexHL:visited {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.el {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.elRef {
|
||||||
|
}
|
||||||
|
|
||||||
|
a.code {
|
||||||
|
color: #4665A2;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.codeRef {
|
||||||
|
color: #4665A2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @end */
|
||||||
|
|
||||||
|
dl.el {
|
||||||
|
margin-left: -1cm;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fragment {
|
||||||
|
font-family: monospace, fixed;
|
||||||
|
font-size: 105%;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre.fragment {
|
||||||
|
border: 1px solid #C4CFE5;
|
||||||
|
background-color: #FBFCFD;
|
||||||
|
padding: 4px 6px;
|
||||||
|
margin: 4px 8px 4px 2px;
|
||||||
|
overflow: auto;
|
||||||
|
word-wrap: break-word;
|
||||||
|
font-size: 9pt;
|
||||||
|
line-height: 125%;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.ah {
|
||||||
|
background-color: black;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #ffffff;
|
||||||
|
margin-bottom: 3px;
|
||||||
|
margin-top: 3px;
|
||||||
|
padding: 0.2em;
|
||||||
|
border: solid thin #333;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
-webkit-border-radius: .5em;
|
||||||
|
-moz-border-radius: .5em;
|
||||||
|
box-shadow: 2px 2px 3px #999;
|
||||||
|
-webkit-box-shadow: 2px 2px 3px #999;
|
||||||
|
-moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
|
||||||
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444));
|
||||||
|
background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.groupHeader {
|
||||||
|
margin-left: 16px;
|
||||||
|
margin-top: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.groupText {
|
||||||
|
margin-left: 16px;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: white;
|
||||||
|
color: black;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.contents {
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-left: 10px;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.indexkey {
|
||||||
|
background-color: #EBEFF6;
|
||||||
|
font-weight: bold;
|
||||||
|
border: 1px solid #C4CFE5;
|
||||||
|
margin: 2px 0px 2px 0;
|
||||||
|
padding: 2px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.indexvalue {
|
||||||
|
background-color: #EBEFF6;
|
||||||
|
border: 1px solid #C4CFE5;
|
||||||
|
padding: 2px 10px;
|
||||||
|
margin: 2px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
tr.memlist {
|
||||||
|
background-color: #EEF1F7;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.formulaDsp {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.formulaDsp {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
img.formulaInl {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.center {
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 0px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.center img {
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
address.footer {
|
||||||
|
text-align: right;
|
||||||
|
padding-right: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.footer {
|
||||||
|
border: 0px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @group Code Colorization */
|
||||||
|
|
||||||
|
span.keyword {
|
||||||
|
color: #008000
|
||||||
|
}
|
||||||
|
|
||||||
|
span.keywordtype {
|
||||||
|
color: #604020
|
||||||
|
}
|
||||||
|
|
||||||
|
span.keywordflow {
|
||||||
|
color: #e08000
|
||||||
|
}
|
||||||
|
|
||||||
|
span.comment {
|
||||||
|
color: #800000
|
||||||
|
}
|
||||||
|
|
||||||
|
span.preprocessor {
|
||||||
|
color: #806020
|
||||||
|
}
|
||||||
|
|
||||||
|
span.stringliteral {
|
||||||
|
color: #002080
|
||||||
|
}
|
||||||
|
|
||||||
|
span.charliteral {
|
||||||
|
color: #008080
|
||||||
|
}
|
||||||
|
|
||||||
|
span.vhdldigit {
|
||||||
|
color: #ff00ff
|
||||||
|
}
|
||||||
|
|
||||||
|
span.vhdlchar {
|
||||||
|
color: #000000
|
||||||
|
}
|
||||||
|
|
||||||
|
span.vhdlkeyword {
|
||||||
|
color: #700070
|
||||||
|
}
|
||||||
|
|
||||||
|
span.vhdllogic {
|
||||||
|
color: #ff0000
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @end */
|
||||||
|
|
||||||
|
/*
|
||||||
|
.search {
|
||||||
|
color: #003399;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
form.search {
|
||||||
|
margin-bottom: 0px;
|
||||||
|
margin-top: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.search {
|
||||||
|
font-size: 75%;
|
||||||
|
color: #000080;
|
||||||
|
font-weight: normal;
|
||||||
|
background-color: #e8eef2;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
td.tiny {
|
||||||
|
font-size: 75%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dirtab {
|
||||||
|
padding: 4px;
|
||||||
|
border-collapse: collapse;
|
||||||
|
border: 1px solid #A3B4D7;
|
||||||
|
}
|
||||||
|
|
||||||
|
th.dirtab {
|
||||||
|
background: #EBEFF6;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
height: 0px;
|
||||||
|
border: none;
|
||||||
|
border-top: 1px solid #4A6AAA;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr.footer {
|
||||||
|
height: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @group Member Descriptions */
|
||||||
|
|
||||||
|
table.memberdecls {
|
||||||
|
border-spacing: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mdescLeft, .mdescRight,
|
||||||
|
.memItemLeft, .memItemRight,
|
||||||
|
.memTemplItemLeft, .memTemplItemRight, .memTemplParams {
|
||||||
|
background-color: #F9FAFC;
|
||||||
|
border: none;
|
||||||
|
margin: 4px;
|
||||||
|
padding: 1px 0 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mdescLeft, .mdescRight {
|
||||||
|
padding: 0px 8px 4px 8px;
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
.memItemLeft, .memItemRight, .memTemplParams {
|
||||||
|
border-top: 1px solid #C4CFE5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.memItemLeft, .memTemplItemLeft {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.memItemRight {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.memTemplParams {
|
||||||
|
color: #4665A2;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @end */
|
||||||
|
|
||||||
|
/* @group Member Details */
|
||||||
|
|
||||||
|
/* Styles for detailed member documentation */
|
||||||
|
|
||||||
|
.memtemplate {
|
||||||
|
font-size: 80%;
|
||||||
|
color: #4665A2;
|
||||||
|
font-weight: normal;
|
||||||
|
margin-left: 9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.memnav {
|
||||||
|
background-color: #EBEFF6;
|
||||||
|
border: 1px solid #A3B4D7;
|
||||||
|
text-align: center;
|
||||||
|
margin: 2px;
|
||||||
|
margin-right: 15px;
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mempage {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.memitem {
|
||||||
|
padding: 0;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.memname {
|
||||||
|
white-space: nowrap;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-left: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.memproto {
|
||||||
|
border-top: 1px solid #A8B8D9;
|
||||||
|
border-left: 1px solid #A8B8D9;
|
||||||
|
border-right: 1px solid #A8B8D9;
|
||||||
|
padding: 6px 0px 6px 0px;
|
||||||
|
color: #253555;
|
||||||
|
font-weight: bold;
|
||||||
|
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
|
||||||
|
/* opera specific markup */
|
||||||
|
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
|
||||||
|
border-top-right-radius: 8px;
|
||||||
|
border-top-left-radius: 8px;
|
||||||
|
/* firefox specific markup */
|
||||||
|
-moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
|
||||||
|
-moz-border-radius-topright: 8px;
|
||||||
|
-moz-border-radius-topleft: 8px;
|
||||||
|
/* webkit specific markup */
|
||||||
|
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
|
||||||
|
-webkit-border-top-right-radius: 8px;
|
||||||
|
-webkit-border-top-left-radius: 8px;
|
||||||
|
background-image:url('nav_f.png');
|
||||||
|
background-repeat:repeat-x;
|
||||||
|
background-color: #E2E8F2;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.memdoc {
|
||||||
|
border-bottom: 1px solid #A8B8D9;
|
||||||
|
border-left: 1px solid #A8B8D9;
|
||||||
|
border-right: 1px solid #A8B8D9;
|
||||||
|
padding: 2px 5px;
|
||||||
|
background-color: #FBFCFD;
|
||||||
|
border-top-width: 0;
|
||||||
|
/* opera specific markup */
|
||||||
|
border-bottom-left-radius: 8px;
|
||||||
|
border-bottom-right-radius: 8px;
|
||||||
|
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
|
||||||
|
/* firefox specific markup */
|
||||||
|
-moz-border-radius-bottomleft: 8px;
|
||||||
|
-moz-border-radius-bottomright: 8px;
|
||||||
|
-moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
|
||||||
|
background-image: -moz-linear-gradient(center top, #FFFFFF 0%, #FFFFFF 60%, #F7F8FB 95%, #EEF1F7);
|
||||||
|
/* webkit specific markup */
|
||||||
|
-webkit-border-bottom-left-radius: 8px;
|
||||||
|
-webkit-border-bottom-right-radius: 8px;
|
||||||
|
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
|
||||||
|
background-image: -webkit-gradient(linear,center top,center bottom,from(#FFFFFF), color-stop(0.6,#FFFFFF), color-stop(0.60,#FFFFFF), color-stop(0.95,#F7F8FB), to(#EEF1F7));
|
||||||
|
}
|
||||||
|
|
||||||
|
.paramkey {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.paramtype {
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.paramname {
|
||||||
|
color: #602020;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
.paramname em {
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.params, .retval, .exception, .tparams {
|
||||||
|
border-spacing: 6px 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.params .paramname, .retval .paramname {
|
||||||
|
font-weight: bold;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.params .paramtype {
|
||||||
|
font-style: italic;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
.params .paramdir {
|
||||||
|
font-family: "courier new",courier,monospace;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* @end */
|
||||||
|
|
||||||
|
/* @group Directory (tree) */
|
||||||
|
|
||||||
|
/* for the tree view */
|
||||||
|
|
||||||
|
.ftvtree {
|
||||||
|
font-family: sans-serif;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* these are for tree view when used as main index */
|
||||||
|
|
||||||
|
.directory {
|
||||||
|
font-size: 9pt;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.directory h3 {
|
||||||
|
margin: 0px;
|
||||||
|
margin-top: 1em;
|
||||||
|
font-size: 11pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
The following two styles can be used to replace the root node title
|
||||||
|
with an image of your choice. Simply uncomment the next two styles,
|
||||||
|
specify the name of your image and be sure to set 'height' to the
|
||||||
|
proper pixel height of your image.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
.directory h3.swap {
|
||||||
|
height: 61px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-image: url("yourimage.gif");
|
||||||
|
}
|
||||||
|
.directory h3.swap span {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
.directory > h3 {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.directory p {
|
||||||
|
margin: 0px;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.directory div {
|
||||||
|
display: none;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.directory img {
|
||||||
|
vertical-align: -30%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* these are for tree view when not used as main index */
|
||||||
|
|
||||||
|
.directory-alt {
|
||||||
|
font-size: 100%;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.directory-alt h3 {
|
||||||
|
margin: 0px;
|
||||||
|
margin-top: 1em;
|
||||||
|
font-size: 11pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
.directory-alt > h3 {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.directory-alt p {
|
||||||
|
margin: 0px;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.directory-alt div {
|
||||||
|
display: none;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.directory-alt img {
|
||||||
|
vertical-align: -30%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @end */
|
||||||
|
|
||||||
|
div.dynheader {
|
||||||
|
margin-top: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
address {
|
||||||
|
font-style: normal;
|
||||||
|
color: #2A3D61;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.doxtable {
|
||||||
|
border-collapse:collapse;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.doxtable td, table.doxtable th {
|
||||||
|
border: 1px solid #2D4068;
|
||||||
|
padding: 3px 7px 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table.doxtable th {
|
||||||
|
background-color: #374F7F;
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-size: 110%;
|
||||||
|
padding-bottom: 4px;
|
||||||
|
padding-top: 5px;
|
||||||
|
text-align:left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabsearch {
|
||||||
|
top: 0px;
|
||||||
|
left: 10px;
|
||||||
|
height: 36px;
|
||||||
|
background-image: url('tab_b.png');
|
||||||
|
z-index: 101;
|
||||||
|
overflow: hidden;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navpath ul
|
||||||
|
{
|
||||||
|
font-size: 11px;
|
||||||
|
background-image:url('tab_b.png');
|
||||||
|
background-repeat:repeat-x;
|
||||||
|
height:30px;
|
||||||
|
line-height:30px;
|
||||||
|
color:#8AA0CC;
|
||||||
|
border:solid 1px #C2CDE4;
|
||||||
|
overflow:hidden;
|
||||||
|
margin:0px;
|
||||||
|
padding:0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navpath li
|
||||||
|
{
|
||||||
|
list-style-type:none;
|
||||||
|
float:left;
|
||||||
|
padding-left:10px;
|
||||||
|
padding-right:15px;
|
||||||
|
background-image:url('bc_s.png');
|
||||||
|
background-repeat:no-repeat;
|
||||||
|
background-position:right;
|
||||||
|
color:#364D7C;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navpath li.navelem a
|
||||||
|
{
|
||||||
|
height:32px;
|
||||||
|
display:block;
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navpath li.navelem a:hover
|
||||||
|
{
|
||||||
|
color:#6884BD;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navpath li.footer
|
||||||
|
{
|
||||||
|
list-style-type:none;
|
||||||
|
float:right;
|
||||||
|
padding-left:10px;
|
||||||
|
padding-right:15px;
|
||||||
|
background-image:none;
|
||||||
|
background-repeat:no-repeat;
|
||||||
|
background-position:right;
|
||||||
|
color:#364D7C;
|
||||||
|
font-size: 8pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
div.summary
|
||||||
|
{
|
||||||
|
float: right;
|
||||||
|
font-size: 8pt;
|
||||||
|
padding-right: 5px;
|
||||||
|
width: 50%;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.summary a
|
||||||
|
{
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.ingroups
|
||||||
|
{
|
||||||
|
font-size: 8pt;
|
||||||
|
padding-left: 5px;
|
||||||
|
width: 50%;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.ingroups a
|
||||||
|
{
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.header
|
||||||
|
{
|
||||||
|
background-image:url('nav_h.png');
|
||||||
|
background-repeat:repeat-x;
|
||||||
|
background-color: #F9FAFC;
|
||||||
|
margin: 0px;
|
||||||
|
border-bottom: 1px solid #C4CFE5;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.headertitle
|
||||||
|
{
|
||||||
|
padding: 5px 5px 5px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl
|
||||||
|
{
|
||||||
|
padding: 0 0 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug
|
||||||
|
{
|
||||||
|
border-left:4px solid;
|
||||||
|
padding: 0 0 0 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl.note
|
||||||
|
{
|
||||||
|
border-color: #D0C000;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl.warning, dl.attention
|
||||||
|
{
|
||||||
|
border-color: #FF0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl.pre, dl.post, dl.invariant
|
||||||
|
{
|
||||||
|
border-color: #00D000;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl.deprecated
|
||||||
|
{
|
||||||
|
border-color: #505050;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl.todo
|
||||||
|
{
|
||||||
|
border-color: #00C0E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl.test
|
||||||
|
{
|
||||||
|
border-color: #3030E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl.bug
|
||||||
|
{
|
||||||
|
border-color: #C08050;
|
||||||
|
}
|
||||||
|
|
||||||
|
#projectlogo
|
||||||
|
{
|
||||||
|
text-align: center;
|
||||||
|
vertical-align: bottom;
|
||||||
|
border-collapse: separate;
|
||||||
|
}
|
||||||
|
|
||||||
|
#projectlogo img
|
||||||
|
{
|
||||||
|
border: 0px none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#projectname
|
||||||
|
{
|
||||||
|
font: 300% Tahoma, Arial,sans-serif;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 2px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#projectbrief
|
||||||
|
{
|
||||||
|
font: 120% Tahoma, Arial,sans-serif;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#projectnumber
|
||||||
|
{
|
||||||
|
font: 50% Tahoma, Arial,sans-serif;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlearea
|
||||||
|
{
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
width: 100%;
|
||||||
|
border-bottom: 1px solid #5373B4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.image
|
||||||
|
{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dotgraph
|
||||||
|
{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mscgraph
|
||||||
|
{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.caption
|
||||||
|
{
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
BIN
library/deps/libjpeg-turbo/doc/html/doxygen.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
120
library/deps/libjpeg-turbo/doc/html/functions.html
Normal file
|
@ -0,0 +1,120 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<title>TurboJPEG: Data Fields</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body onload='searchBox.OnSelectItem(0);'>
|
||||||
|
<!-- Generated by Doxygen 1.7.4 -->
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
--></script>
|
||||||
|
<div id="top">
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">TurboJPEG <span id="projectnumber">1.2</span></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div id="navrow1" class="tabs">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||||
|
<li><a href="modules.html"><span>Modules</span></a></li>
|
||||||
|
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li id="searchli">
|
||||||
|
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div id="navrow2" class="tabs2">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
|
||||||
|
<li class="current"><a href="functions.html"><span>Data Fields</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div id="navrow3" class="tabs2">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li class="current"><a href="functions.html"><span>All</span></a></li>
|
||||||
|
<li><a href="functions_vars.html"><span>Variables</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="contents">
|
||||||
|
<div class="textblock">Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:</div><ul>
|
||||||
|
<li>customFilter
|
||||||
|
: <a class="el" href="structtjtransform.html#a43ee1bcdd2a8d7249a756774f78793c1">tjtransform</a>
|
||||||
|
</li>
|
||||||
|
<li>data
|
||||||
|
: <a class="el" href="structtjtransform.html#a688fe8f1a8ecc12a538d9e561cf338e3">tjtransform</a>
|
||||||
|
</li>
|
||||||
|
<li>denom
|
||||||
|
: <a class="el" href="structtjscalingfactor.html#aefbcdf3e9e62274b2d312c695f133ce3">tjscalingfactor</a>
|
||||||
|
</li>
|
||||||
|
<li>h
|
||||||
|
: <a class="el" href="structtjregion.html#aecefc45a26f4d8b60dd4d825c1710115">tjregion</a>
|
||||||
|
</li>
|
||||||
|
<li>num
|
||||||
|
: <a class="el" href="structtjscalingfactor.html#a9b011e57f981ee23083e2c1aa5e640ec">tjscalingfactor</a>
|
||||||
|
</li>
|
||||||
|
<li>op
|
||||||
|
: <a class="el" href="structtjtransform.html#a2525aab4ba6978a1c273f74fef50e498">tjtransform</a>
|
||||||
|
</li>
|
||||||
|
<li>options
|
||||||
|
: <a class="el" href="structtjtransform.html#ac0e74655baa4402209a21e1ae481c8f6">tjtransform</a>
|
||||||
|
</li>
|
||||||
|
<li>r
|
||||||
|
: <a class="el" href="structtjtransform.html#ac324e5e442abec8a961e5bf219db12cf">tjtransform</a>
|
||||||
|
</li>
|
||||||
|
<li>w
|
||||||
|
: <a class="el" href="structtjregion.html#ab6eb73ceef584fc23c8c8097926dce42">tjregion</a>
|
||||||
|
</li>
|
||||||
|
<li>x
|
||||||
|
: <a class="el" href="structtjregion.html#a4b6a37a93997091b26a75831fa291ad9">tjregion</a>
|
||||||
|
</li>
|
||||||
|
<li>y
|
||||||
|
: <a class="el" href="structtjregion.html#a7b3e0c24cfe87acc80e334cafdcf22c2">tjregion</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Variables</a></div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="footer"/><address class="footer"><small>Generated on Sun Dec 18 2011 20:09:47 for TurboJPEG by 
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
120
library/deps/libjpeg-turbo/doc/html/functions_vars.html
Normal file
|
@ -0,0 +1,120 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<title>TurboJPEG: Data Fields - Variables</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body onload='searchBox.OnSelectItem(0);'>
|
||||||
|
<!-- Generated by Doxygen 1.7.4 -->
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
--></script>
|
||||||
|
<div id="top">
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">TurboJPEG <span id="projectnumber">1.2</span></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div id="navrow1" class="tabs">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||||
|
<li><a href="modules.html"><span>Modules</span></a></li>
|
||||||
|
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li id="searchli">
|
||||||
|
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div id="navrow2" class="tabs2">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
|
||||||
|
<li class="current"><a href="functions.html"><span>Data Fields</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div id="navrow3" class="tabs2">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="functions.html"><span>All</span></a></li>
|
||||||
|
<li class="current"><a href="functions_vars.html"><span>Variables</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="contents">
|
||||||
|
 <ul>
|
||||||
|
<li>customFilter
|
||||||
|
: <a class="el" href="structtjtransform.html#a43ee1bcdd2a8d7249a756774f78793c1">tjtransform</a>
|
||||||
|
</li>
|
||||||
|
<li>data
|
||||||
|
: <a class="el" href="structtjtransform.html#a688fe8f1a8ecc12a538d9e561cf338e3">tjtransform</a>
|
||||||
|
</li>
|
||||||
|
<li>denom
|
||||||
|
: <a class="el" href="structtjscalingfactor.html#aefbcdf3e9e62274b2d312c695f133ce3">tjscalingfactor</a>
|
||||||
|
</li>
|
||||||
|
<li>h
|
||||||
|
: <a class="el" href="structtjregion.html#aecefc45a26f4d8b60dd4d825c1710115">tjregion</a>
|
||||||
|
</li>
|
||||||
|
<li>num
|
||||||
|
: <a class="el" href="structtjscalingfactor.html#a9b011e57f981ee23083e2c1aa5e640ec">tjscalingfactor</a>
|
||||||
|
</li>
|
||||||
|
<li>op
|
||||||
|
: <a class="el" href="structtjtransform.html#a2525aab4ba6978a1c273f74fef50e498">tjtransform</a>
|
||||||
|
</li>
|
||||||
|
<li>options
|
||||||
|
: <a class="el" href="structtjtransform.html#ac0e74655baa4402209a21e1ae481c8f6">tjtransform</a>
|
||||||
|
</li>
|
||||||
|
<li>r
|
||||||
|
: <a class="el" href="structtjtransform.html#ac324e5e442abec8a961e5bf219db12cf">tjtransform</a>
|
||||||
|
</li>
|
||||||
|
<li>w
|
||||||
|
: <a class="el" href="structtjregion.html#ab6eb73ceef584fc23c8c8097926dce42">tjregion</a>
|
||||||
|
</li>
|
||||||
|
<li>x
|
||||||
|
: <a class="el" href="structtjregion.html#a4b6a37a93997091b26a75831fa291ad9">tjregion</a>
|
||||||
|
</li>
|
||||||
|
<li>y
|
||||||
|
: <a class="el" href="structtjregion.html#a7b3e0c24cfe87acc80e334cafdcf22c2">tjregion</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Variables</a></div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="footer"/><address class="footer"><small>Generated on Sun Dec 18 2011 20:09:47 for TurboJPEG by 
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
1564
library/deps/libjpeg-turbo/doc/html/group___turbo_j_p_e_g.html
Normal file
76
library/deps/libjpeg-turbo/doc/html/index.html
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<title>TurboJPEG: Main Page</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body onload='searchBox.OnSelectItem(0);'>
|
||||||
|
<!-- Generated by Doxygen 1.7.4 -->
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
--></script>
|
||||||
|
<div id="top">
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">TurboJPEG <span id="projectnumber">1.2</span></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div id="navrow1" class="tabs">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li class="current"><a href="index.html"><span>Main Page</span></a></li>
|
||||||
|
<li><a href="modules.html"><span>Modules</span></a></li>
|
||||||
|
<li><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li id="searchli">
|
||||||
|
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">TurboJPEG Documentation</div> </div>
|
||||||
|
</div>
|
||||||
|
<div class="contents">
|
||||||
|
</div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Variables</a></div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="footer"/><address class="footer"><small>Generated on Sun Dec 18 2011 20:09:47 for TurboJPEG by 
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
112
library/deps/libjpeg-turbo/doc/html/installdox
Normal file
|
@ -0,0 +1,112 @@
|
||||||
|
#!/usr/bin/perl
|
||||||
|
|
||||||
|
%subst = ( );
|
||||||
|
$quiet = 0;
|
||||||
|
|
||||||
|
while ( @ARGV ) {
|
||||||
|
$_ = shift @ARGV;
|
||||||
|
if ( s/^-// ) {
|
||||||
|
if ( /^l(.*)/ ) {
|
||||||
|
$v = ($1 eq "") ? shift @ARGV : $1;
|
||||||
|
($v =~ /\/$/) || ($v .= "/");
|
||||||
|
$_ = $v;
|
||||||
|
if ( /(.+)\@(.+)/ ) {
|
||||||
|
if ( exists $subst{$1} ) {
|
||||||
|
$subst{$1} = $2;
|
||||||
|
} else {
|
||||||
|
print STDERR "Unknown tag file $1 given with option -l\n";
|
||||||
|
&usage();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
print STDERR "Argument $_ is invalid for option -l\n";
|
||||||
|
&usage();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
elsif ( /^q/ ) {
|
||||||
|
$quiet = 1;
|
||||||
|
}
|
||||||
|
elsif ( /^\?|^h/ ) {
|
||||||
|
&usage();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
print STDERR "Illegal option -$_\n";
|
||||||
|
&usage();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
push (@files, $_ );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach $sub (keys %subst)
|
||||||
|
{
|
||||||
|
if ( $subst{$sub} eq "" )
|
||||||
|
{
|
||||||
|
print STDERR "No substitute given for tag file `$sub'\n";
|
||||||
|
&usage();
|
||||||
|
}
|
||||||
|
elsif ( ! $quiet && $sub ne "_doc" && $sub ne "_cgi" )
|
||||||
|
{
|
||||||
|
print "Substituting $subst{$sub} for each occurrence of tag file $sub\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! @files ) {
|
||||||
|
if (opendir(D,".")) {
|
||||||
|
foreach $file ( readdir(D) ) {
|
||||||
|
$match = ".html";
|
||||||
|
next if ( $file =~ /^\.\.?$/ );
|
||||||
|
($file =~ /$match/) && (push @files, $file);
|
||||||
|
($file =~ /\.svg/) && (push @files, $file);
|
||||||
|
($file =~ "navtree.js") && (push @files, $file);
|
||||||
|
}
|
||||||
|
closedir(D);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! @files ) {
|
||||||
|
print STDERR "Warning: No input files given and none found!\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach $f (@files)
|
||||||
|
{
|
||||||
|
if ( ! $quiet ) {
|
||||||
|
print "Editing: $f...\n";
|
||||||
|
}
|
||||||
|
$oldf = $f;
|
||||||
|
$f .= ".bak";
|
||||||
|
unless (rename $oldf,$f) {
|
||||||
|
print STDERR "Error: cannot rename file $oldf\n";
|
||||||
|
exit 1;
|
||||||
|
}
|
||||||
|
if (open(F,"<$f")) {
|
||||||
|
unless (open(G,">$oldf")) {
|
||||||
|
print STDERR "Error: opening file $oldf for writing\n";
|
||||||
|
exit 1;
|
||||||
|
}
|
||||||
|
if ($oldf ne "tree.js") {
|
||||||
|
while (<F>) {
|
||||||
|
s/doxygen\=\"([^ \"\:\t\>\<]*)\:([^ \"\t\>\<]*)\" (xlink:href|href|src)=\"\2/doxygen\=\"$1:$subst{$1}\" \3=\"$subst{$1}/g;
|
||||||
|
print G "$_";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
while (<F>) {
|
||||||
|
s/\"([^ \"\:\t\>\<]*)\:([^ \"\t\>\<]*)\", \"\2/\"$1:$subst{$1}\" ,\"$subst{$1}/g;
|
||||||
|
print G "$_";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
print STDERR "Warning file $f does not exist\n";
|
||||||
|
}
|
||||||
|
unlink $f;
|
||||||
|
}
|
||||||
|
|
||||||
|
sub usage {
|
||||||
|
print STDERR "Usage: installdox [options] [html-file [html-file ...]]\n";
|
||||||
|
print STDERR "Options:\n";
|
||||||
|
print STDERR " -l tagfile\@linkName tag file + URL or directory \n";
|
||||||
|
print STDERR " -q Quiet mode\n\n";
|
||||||
|
exit 1;
|
||||||
|
}
|
54
library/deps/libjpeg-turbo/doc/html/jquery.js
vendored
Normal file
79
library/deps/libjpeg-turbo/doc/html/modules.html
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<title>TurboJPEG: Modules</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body onload='searchBox.OnSelectItem(0);'>
|
||||||
|
<!-- Generated by Doxygen 1.7.4 -->
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
--></script>
|
||||||
|
<div id="top">
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">TurboJPEG <span id="projectnumber">1.2</span></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div id="navrow1" class="tabs">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||||
|
<li class="current"><a href="modules.html"><span>Modules</span></a></li>
|
||||||
|
<li><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li id="searchli">
|
||||||
|
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">Modules</div> </div>
|
||||||
|
</div>
|
||||||
|
<div class="contents">
|
||||||
|
<div class="textblock">Here is a list of all modules:</div><ul>
|
||||||
|
<li><a class="el" href="group___turbo_j_p_e_g.html">TurboJPEG</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Variables</a></div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="footer"/><address class="footer"><small>Generated on Sun Dec 18 2011 20:09:47 for TurboJPEG by 
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
library/deps/libjpeg-turbo/doc/html/nav_f.png
Normal file
After Width: | Height: | Size: 159 B |
BIN
library/deps/libjpeg-turbo/doc/html/nav_h.png
Normal file
After Width: | Height: | Size: 97 B |
BIN
library/deps/libjpeg-turbo/doc/html/open.png
Normal file
After Width: | Height: | Size: 118 B |
26
library/deps/libjpeg-turbo/doc/html/search/all_63.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_customfilter">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjtransform.html#a43ee1bcdd2a8d7249a756774f78793c1" target="_parent">customFilter</a>
|
||||||
|
<span class="SRScope">tjtransform</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
32
library/deps/libjpeg-turbo/doc/html/search/all_64.html
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_data">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjtransform.html#a688fe8f1a8ecc12a538d9e561cf338e3" target="_parent">data</a>
|
||||||
|
<span class="SRScope">tjtransform</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRResult" id="SR_denom">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item1" onkeydown="return searchResults.Nav(event,1)" onkeypress="return searchResults.Nav(event,1)" onkeyup="return searchResults.Nav(event,1)" class="SRSymbol" href="../structtjscalingfactor.html#aefbcdf3e9e62274b2d312c695f133ce3" target="_parent">denom</a>
|
||||||
|
<span class="SRScope">tjscalingfactor</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
library/deps/libjpeg-turbo/doc/html/search/all_68.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_h">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjregion.html#aecefc45a26f4d8b60dd4d825c1710115" target="_parent">h</a>
|
||||||
|
<span class="SRScope">tjregion</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
library/deps/libjpeg-turbo/doc/html/search/all_6e.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_num">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjscalingfactor.html#a9b011e57f981ee23083e2c1aa5e640ec" target="_parent">num</a>
|
||||||
|
<span class="SRScope">tjscalingfactor</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
32
library/deps/libjpeg-turbo/doc/html/search/all_6f.html
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_op">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjtransform.html#a2525aab4ba6978a1c273f74fef50e498" target="_parent">op</a>
|
||||||
|
<span class="SRScope">tjtransform</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRResult" id="SR_options">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item1" onkeydown="return searchResults.Nav(event,1)" onkeypress="return searchResults.Nav(event,1)" onkeyup="return searchResults.Nav(event,1)" class="SRSymbol" href="../structtjtransform.html#ac0e74655baa4402209a21e1ae481c8f6" target="_parent">options</a>
|
||||||
|
<span class="SRScope">tjtransform</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
library/deps/libjpeg-turbo/doc/html/search/all_72.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_r">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjtransform.html#ac324e5e442abec8a961e5bf219db12cf" target="_parent">r</a>
|
||||||
|
<span class="SRScope">tjtransform</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
35
library/deps/libjpeg-turbo/doc/html/search/all_74.html
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_tjregion">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjregion.html" target="_parent">tjregion</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRResult" id="SR_tjscalingfactor">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item1" onkeydown="return searchResults.Nav(event,1)" onkeypress="return searchResults.Nav(event,1)" onkeyup="return searchResults.Nav(event,1)" class="SRSymbol" href="../structtjscalingfactor.html" target="_parent">tjscalingfactor</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRResult" id="SR_tjtransform">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item2" onkeydown="return searchResults.Nav(event,2)" onkeypress="return searchResults.Nav(event,2)" onkeyup="return searchResults.Nav(event,2)" class="SRSymbol" href="../structtjtransform.html" target="_parent">tjtransform</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
library/deps/libjpeg-turbo/doc/html/search/all_77.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_w">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjregion.html#ab6eb73ceef584fc23c8c8097926dce42" target="_parent">w</a>
|
||||||
|
<span class="SRScope">tjregion</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
library/deps/libjpeg-turbo/doc/html/search/all_78.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_x">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjregion.html#a4b6a37a93997091b26a75831fa291ad9" target="_parent">x</a>
|
||||||
|
<span class="SRScope">tjregion</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
library/deps/libjpeg-turbo/doc/html/search/all_79.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_y">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjregion.html#a7b3e0c24cfe87acc80e334cafdcf22c2" target="_parent">y</a>
|
||||||
|
<span class="SRScope">tjregion</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
35
library/deps/libjpeg-turbo/doc/html/search/classes_74.html
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_tjregion">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjregion.html" target="_parent">tjregion</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRResult" id="SR_tjscalingfactor">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item1" onkeydown="return searchResults.Nav(event,1)" onkeypress="return searchResults.Nav(event,1)" onkeyup="return searchResults.Nav(event,1)" class="SRSymbol" href="../structtjscalingfactor.html" target="_parent">tjscalingfactor</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRResult" id="SR_tjtransform">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item2" onkeydown="return searchResults.Nav(event,2)" onkeypress="return searchResults.Nav(event,2)" onkeyup="return searchResults.Nav(event,2)" class="SRSymbol" href="../structtjtransform.html" target="_parent">tjtransform</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
library/deps/libjpeg-turbo/doc/html/search/close.png
Normal file
After Width: | Height: | Size: 273 B |
BIN
library/deps/libjpeg-turbo/doc/html/search/mag_sel.png
Normal file
After Width: | Height: | Size: 563 B |
12
library/deps/libjpeg-turbo/doc/html/search/nomatches.html
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
240
library/deps/libjpeg-turbo/doc/html/search/search.css
Normal file
|
@ -0,0 +1,240 @@
|
||||||
|
/*---------------- Search Box */
|
||||||
|
|
||||||
|
#FSearchBox {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#searchli {
|
||||||
|
float: right;
|
||||||
|
display: block;
|
||||||
|
width: 170px;
|
||||||
|
height: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#MSearchBox {
|
||||||
|
white-space : nowrap;
|
||||||
|
position: absolute;
|
||||||
|
float: none;
|
||||||
|
display: inline;
|
||||||
|
margin-top: 8px;
|
||||||
|
right: 0px;
|
||||||
|
width: 170px;
|
||||||
|
z-index: 102;
|
||||||
|
}
|
||||||
|
|
||||||
|
#MSearchBox .left
|
||||||
|
{
|
||||||
|
display:block;
|
||||||
|
position:absolute;
|
||||||
|
left:10px;
|
||||||
|
width:20px;
|
||||||
|
height:19px;
|
||||||
|
background:url('search_l.png') no-repeat;
|
||||||
|
background-position:right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#MSearchSelect {
|
||||||
|
display:block;
|
||||||
|
position:absolute;
|
||||||
|
width:20px;
|
||||||
|
height:19px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left #MSearchSelect {
|
||||||
|
left:4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right #MSearchSelect {
|
||||||
|
right:5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#MSearchField {
|
||||||
|
display:block;
|
||||||
|
position:absolute;
|
||||||
|
height:19px;
|
||||||
|
background:url('search_m.png') repeat-x;
|
||||||
|
border:none;
|
||||||
|
width:116px;
|
||||||
|
margin-left:20px;
|
||||||
|
padding-left:4px;
|
||||||
|
color: #909090;
|
||||||
|
outline: none;
|
||||||
|
font: 9pt Arial, Verdana, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
#FSearchBox #MSearchField {
|
||||||
|
margin-left:15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#MSearchBox .right {
|
||||||
|
display:block;
|
||||||
|
position:absolute;
|
||||||
|
right:10px;
|
||||||
|
top:0px;
|
||||||
|
width:20px;
|
||||||
|
height:19px;
|
||||||
|
background:url('search_r.png') no-repeat;
|
||||||
|
background-position:left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#MSearchClose {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
top: 4px;
|
||||||
|
background : none;
|
||||||
|
border: none;
|
||||||
|
margin: 0px 4px 0px 0px;
|
||||||
|
padding: 0px 0px;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left #MSearchClose {
|
||||||
|
left: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right #MSearchClose {
|
||||||
|
right: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.MSearchBoxActive #MSearchField {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*---------------- Search filter selection */
|
||||||
|
|
||||||
|
#MSearchSelectWindow {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
left: 0; top: 0;
|
||||||
|
border: 1px solid #90A5CE;
|
||||||
|
background-color: #F9FAFC;
|
||||||
|
z-index: 1;
|
||||||
|
padding-top: 4px;
|
||||||
|
padding-bottom: 4px;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
-webkit-border-top-left-radius: 4px;
|
||||||
|
-webkit-border-top-right-radius: 4px;
|
||||||
|
-webkit-border-bottom-left-radius: 4px;
|
||||||
|
-webkit-border-bottom-right-radius: 4px;
|
||||||
|
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
.SelectItem {
|
||||||
|
font: 8pt Arial, Verdana, sans-serif;
|
||||||
|
padding-left: 2px;
|
||||||
|
padding-right: 12px;
|
||||||
|
border: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.SelectionMark {
|
||||||
|
margin-right: 4px;
|
||||||
|
font-family: monospace;
|
||||||
|
outline-style: none;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.SelectItem {
|
||||||
|
display: block;
|
||||||
|
outline-style: none;
|
||||||
|
color: #000000;
|
||||||
|
text-decoration: none;
|
||||||
|
padding-left: 6px;
|
||||||
|
padding-right: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.SelectItem:focus,
|
||||||
|
a.SelectItem:active {
|
||||||
|
color: #000000;
|
||||||
|
outline-style: none;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.SelectItem:hover {
|
||||||
|
color: #FFFFFF;
|
||||||
|
background-color: #3D578C;
|
||||||
|
outline-style: none;
|
||||||
|
text-decoration: none;
|
||||||
|
cursor: pointer;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*---------------- Search results window */
|
||||||
|
|
||||||
|
iframe#MSearchResults {
|
||||||
|
width: 60ex;
|
||||||
|
height: 15em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#MSearchResultsWindow {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
left: 0; top: 0;
|
||||||
|
border: 1px solid #000;
|
||||||
|
background-color: #EEF1F7;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ----------------------------------- */
|
||||||
|
|
||||||
|
|
||||||
|
#SRIndex {
|
||||||
|
clear:both;
|
||||||
|
padding-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SREntry {
|
||||||
|
font-size: 10pt;
|
||||||
|
padding-left: 1ex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SRPage .SREntry {
|
||||||
|
font-size: 8pt;
|
||||||
|
padding: 1px 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.SRPage {
|
||||||
|
margin: 5px 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SRChildren {
|
||||||
|
padding-left: 3ex; padding-bottom: .5em
|
||||||
|
}
|
||||||
|
|
||||||
|
.SRPage .SRChildren {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SRSymbol {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #425E97;
|
||||||
|
font-family: Arial, Verdana, sans-serif;
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.SRScope {
|
||||||
|
display: block;
|
||||||
|
color: #425E97;
|
||||||
|
font-family: Arial, Verdana, sans-serif;
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.SRSymbol:focus, a.SRSymbol:active,
|
||||||
|
a.SRScope:focus, a.SRScope:active {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SRPage .SRStatus {
|
||||||
|
padding: 2px 5px;
|
||||||
|
font-size: 8pt;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.SRResult {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
DIV.searchresults {
|
||||||
|
margin-left: 10px;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
730
library/deps/libjpeg-turbo/doc/html/search/search.js
Normal file
|
@ -0,0 +1,730 @@
|
||||||
|
// Search script generated by doxygen
|
||||||
|
// Copyright (C) 2009 by Dimitri van Heesch.
|
||||||
|
|
||||||
|
// The code in this file is loosly based on main.js, part of Natural Docs,
|
||||||
|
// which is Copyright (C) 2003-2008 Greg Valure
|
||||||
|
// Natural Docs is licensed under the GPL.
|
||||||
|
|
||||||
|
var indexSectionsWithContent =
|
||||||
|
{
|
||||||
|
0: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100010000011001010011100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||||
|
1: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||||
|
2: "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100010000011001000011100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
|
||||||
|
};
|
||||||
|
|
||||||
|
var indexSectionNames =
|
||||||
|
{
|
||||||
|
0: "all",
|
||||||
|
1: "classes",
|
||||||
|
2: "variables"
|
||||||
|
};
|
||||||
|
|
||||||
|
function convertToId(search)
|
||||||
|
{
|
||||||
|
var result = '';
|
||||||
|
for (i=0;i<search.length;i++)
|
||||||
|
{
|
||||||
|
var c = search.charAt(i);
|
||||||
|
var cn = c.charCodeAt(0);
|
||||||
|
if (c.match(/[a-z0-9]/))
|
||||||
|
{
|
||||||
|
result+=c;
|
||||||
|
}
|
||||||
|
else if (cn<16)
|
||||||
|
{
|
||||||
|
result+="_0"+cn.toString(16);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result+="_"+cn.toString(16);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getXPos(item)
|
||||||
|
{
|
||||||
|
var x = 0;
|
||||||
|
if (item.offsetWidth)
|
||||||
|
{
|
||||||
|
while (item && item!=document.body)
|
||||||
|
{
|
||||||
|
x += item.offsetLeft;
|
||||||
|
item = item.offsetParent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getYPos(item)
|
||||||
|
{
|
||||||
|
var y = 0;
|
||||||
|
if (item.offsetWidth)
|
||||||
|
{
|
||||||
|
while (item && item!=document.body)
|
||||||
|
{
|
||||||
|
y += item.offsetTop;
|
||||||
|
item = item.offsetParent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return y;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* A class handling everything associated with the search panel.
|
||||||
|
|
||||||
|
Parameters:
|
||||||
|
name - The name of the global variable that will be
|
||||||
|
storing this instance. Is needed to be able to set timeouts.
|
||||||
|
resultPath - path to use for external files
|
||||||
|
*/
|
||||||
|
function SearchBox(name, resultsPath, inFrame, label)
|
||||||
|
{
|
||||||
|
if (!name || !resultsPath) { alert("Missing parameters to SearchBox."); }
|
||||||
|
|
||||||
|
// ---------- Instance variables
|
||||||
|
this.name = name;
|
||||||
|
this.resultsPath = resultsPath;
|
||||||
|
this.keyTimeout = 0;
|
||||||
|
this.keyTimeoutLength = 500;
|
||||||
|
this.closeSelectionTimeout = 300;
|
||||||
|
this.lastSearchValue = "";
|
||||||
|
this.lastResultsPage = "";
|
||||||
|
this.hideTimeout = 0;
|
||||||
|
this.searchIndex = 0;
|
||||||
|
this.searchActive = false;
|
||||||
|
this.insideFrame = inFrame;
|
||||||
|
this.searchLabel = label;
|
||||||
|
|
||||||
|
// ----------- DOM Elements
|
||||||
|
|
||||||
|
this.DOMSearchField = function()
|
||||||
|
{ return document.getElementById("MSearchField"); }
|
||||||
|
|
||||||
|
this.DOMSearchSelect = function()
|
||||||
|
{ return document.getElementById("MSearchSelect"); }
|
||||||
|
|
||||||
|
this.DOMSearchSelectWindow = function()
|
||||||
|
{ return document.getElementById("MSearchSelectWindow"); }
|
||||||
|
|
||||||
|
this.DOMPopupSearchResults = function()
|
||||||
|
{ return document.getElementById("MSearchResults"); }
|
||||||
|
|
||||||
|
this.DOMPopupSearchResultsWindow = function()
|
||||||
|
{ return document.getElementById("MSearchResultsWindow"); }
|
||||||
|
|
||||||
|
this.DOMSearchClose = function()
|
||||||
|
{ return document.getElementById("MSearchClose"); }
|
||||||
|
|
||||||
|
this.DOMSearchBox = function()
|
||||||
|
{ return document.getElementById("MSearchBox"); }
|
||||||
|
|
||||||
|
// ------------ Event Handlers
|
||||||
|
|
||||||
|
// Called when focus is added or removed from the search field.
|
||||||
|
this.OnSearchFieldFocus = function(isActive)
|
||||||
|
{
|
||||||
|
this.Activate(isActive);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.OnSearchSelectShow = function()
|
||||||
|
{
|
||||||
|
var searchSelectWindow = this.DOMSearchSelectWindow();
|
||||||
|
var searchField = this.DOMSearchSelect();
|
||||||
|
|
||||||
|
if (this.insideFrame)
|
||||||
|
{
|
||||||
|
var left = getXPos(searchField);
|
||||||
|
var top = getYPos(searchField);
|
||||||
|
left += searchField.offsetWidth + 6;
|
||||||
|
top += searchField.offsetHeight;
|
||||||
|
|
||||||
|
// show search selection popup
|
||||||
|
searchSelectWindow.style.display='block';
|
||||||
|
left -= searchSelectWindow.offsetWidth;
|
||||||
|
searchSelectWindow.style.left = left + 'px';
|
||||||
|
searchSelectWindow.style.top = top + 'px';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var left = getXPos(searchField);
|
||||||
|
var top = getYPos(searchField);
|
||||||
|
top += searchField.offsetHeight;
|
||||||
|
|
||||||
|
// show search selection popup
|
||||||
|
searchSelectWindow.style.display='block';
|
||||||
|
searchSelectWindow.style.left = left + 'px';
|
||||||
|
searchSelectWindow.style.top = top + 'px';
|
||||||
|
}
|
||||||
|
|
||||||
|
// stop selection hide timer
|
||||||
|
if (this.hideTimeout)
|
||||||
|
{
|
||||||
|
clearTimeout(this.hideTimeout);
|
||||||
|
this.hideTimeout=0;
|
||||||
|
}
|
||||||
|
return false; // to avoid "image drag" default event
|
||||||
|
}
|
||||||
|
|
||||||
|
this.OnSearchSelectHide = function()
|
||||||
|
{
|
||||||
|
this.hideTimeout = setTimeout(this.name +".CloseSelectionWindow()",
|
||||||
|
this.closeSelectionTimeout);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Called when the content of the search field is changed.
|
||||||
|
this.OnSearchFieldChange = function(evt)
|
||||||
|
{
|
||||||
|
if (this.keyTimeout) // kill running timer
|
||||||
|
{
|
||||||
|
clearTimeout(this.keyTimeout);
|
||||||
|
this.keyTimeout = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
var e = (evt) ? evt : window.event; // for IE
|
||||||
|
if (e.keyCode==40 || e.keyCode==13)
|
||||||
|
{
|
||||||
|
if (e.shiftKey==1)
|
||||||
|
{
|
||||||
|
this.OnSearchSelectShow();
|
||||||
|
var win=this.DOMSearchSelectWindow();
|
||||||
|
for (i=0;i<win.childNodes.length;i++)
|
||||||
|
{
|
||||||
|
var child = win.childNodes[i]; // get span within a
|
||||||
|
if (child.className=='SelectItem')
|
||||||
|
{
|
||||||
|
child.focus();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else if (window.frames.MSearchResults.searchResults)
|
||||||
|
{
|
||||||
|
var elem = window.frames.MSearchResults.searchResults.NavNext(0);
|
||||||
|
if (elem) elem.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (e.keyCode==27) // Escape out of the search field
|
||||||
|
{
|
||||||
|
this.DOMSearchField().blur();
|
||||||
|
this.DOMPopupSearchResultsWindow().style.display = 'none';
|
||||||
|
this.DOMSearchClose().style.display = 'none';
|
||||||
|
this.lastSearchValue = '';
|
||||||
|
this.Activate(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// strip whitespaces
|
||||||
|
var searchValue = this.DOMSearchField().value.replace(/ +/g, "");
|
||||||
|
|
||||||
|
if (searchValue != this.lastSearchValue) // search value has changed
|
||||||
|
{
|
||||||
|
if (searchValue != "") // non-empty search
|
||||||
|
{
|
||||||
|
// set timer for search update
|
||||||
|
this.keyTimeout = setTimeout(this.name + '.Search()',
|
||||||
|
this.keyTimeoutLength);
|
||||||
|
}
|
||||||
|
else // empty search field
|
||||||
|
{
|
||||||
|
this.DOMPopupSearchResultsWindow().style.display = 'none';
|
||||||
|
this.DOMSearchClose().style.display = 'none';
|
||||||
|
this.lastSearchValue = '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.SelectItemCount = function(id)
|
||||||
|
{
|
||||||
|
var count=0;
|
||||||
|
var win=this.DOMSearchSelectWindow();
|
||||||
|
for (i=0;i<win.childNodes.length;i++)
|
||||||
|
{
|
||||||
|
var child = win.childNodes[i]; // get span within a
|
||||||
|
if (child.className=='SelectItem')
|
||||||
|
{
|
||||||
|
count++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.SelectItemSet = function(id)
|
||||||
|
{
|
||||||
|
var i,j=0;
|
||||||
|
var win=this.DOMSearchSelectWindow();
|
||||||
|
for (i=0;i<win.childNodes.length;i++)
|
||||||
|
{
|
||||||
|
var child = win.childNodes[i]; // get span within a
|
||||||
|
if (child.className=='SelectItem')
|
||||||
|
{
|
||||||
|
var node = child.firstChild;
|
||||||
|
if (j==id)
|
||||||
|
{
|
||||||
|
node.innerHTML='•';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
node.innerHTML=' ';
|
||||||
|
}
|
||||||
|
j++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Called when an search filter selection is made.
|
||||||
|
// set item with index id as the active item
|
||||||
|
this.OnSelectItem = function(id)
|
||||||
|
{
|
||||||
|
this.searchIndex = id;
|
||||||
|
this.SelectItemSet(id);
|
||||||
|
var searchValue = this.DOMSearchField().value.replace(/ +/g, "");
|
||||||
|
if (searchValue!="" && this.searchActive) // something was found -> do a search
|
||||||
|
{
|
||||||
|
this.Search();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.OnSearchSelectKey = function(evt)
|
||||||
|
{
|
||||||
|
var e = (evt) ? evt : window.event; // for IE
|
||||||
|
if (e.keyCode==40 && this.searchIndex<this.SelectItemCount()) // Down
|
||||||
|
{
|
||||||
|
this.searchIndex++;
|
||||||
|
this.OnSelectItem(this.searchIndex);
|
||||||
|
}
|
||||||
|
else if (e.keyCode==38 && this.searchIndex>0) // Up
|
||||||
|
{
|
||||||
|
this.searchIndex--;
|
||||||
|
this.OnSelectItem(this.searchIndex);
|
||||||
|
}
|
||||||
|
else if (e.keyCode==13 || e.keyCode==27)
|
||||||
|
{
|
||||||
|
this.OnSelectItem(this.searchIndex);
|
||||||
|
this.CloseSelectionWindow();
|
||||||
|
this.DOMSearchField().focus();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// --------- Actions
|
||||||
|
|
||||||
|
// Closes the results window.
|
||||||
|
this.CloseResultsWindow = function()
|
||||||
|
{
|
||||||
|
this.DOMPopupSearchResultsWindow().style.display = 'none';
|
||||||
|
this.DOMSearchClose().style.display = 'none';
|
||||||
|
this.Activate(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CloseSelectionWindow = function()
|
||||||
|
{
|
||||||
|
this.DOMSearchSelectWindow().style.display = 'none';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Performs a search.
|
||||||
|
this.Search = function()
|
||||||
|
{
|
||||||
|
this.keyTimeout = 0;
|
||||||
|
|
||||||
|
// strip leading whitespace
|
||||||
|
var searchValue = this.DOMSearchField().value.replace(/^ +/, "");
|
||||||
|
|
||||||
|
var code = searchValue.toLowerCase().charCodeAt(0);
|
||||||
|
var hexCode;
|
||||||
|
if (code<16)
|
||||||
|
{
|
||||||
|
hexCode="0"+code.toString(16);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
hexCode=code.toString(16);
|
||||||
|
}
|
||||||
|
|
||||||
|
var resultsPage;
|
||||||
|
var resultsPageWithSearch;
|
||||||
|
var hasResultsPage;
|
||||||
|
|
||||||
|
if (indexSectionsWithContent[this.searchIndex].charAt(code) == '1')
|
||||||
|
{
|
||||||
|
resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html';
|
||||||
|
resultsPageWithSearch = resultsPage+'?'+escape(searchValue);
|
||||||
|
hasResultsPage = true;
|
||||||
|
}
|
||||||
|
else // nothing available for this search term
|
||||||
|
{
|
||||||
|
resultsPage = this.resultsPath + '/nomatches.html';
|
||||||
|
resultsPageWithSearch = resultsPage;
|
||||||
|
hasResultsPage = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
window.frames.MSearchResults.location.href = resultsPageWithSearch;
|
||||||
|
var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow();
|
||||||
|
|
||||||
|
if (domPopupSearchResultsWindow.style.display!='block')
|
||||||
|
{
|
||||||
|
var domSearchBox = this.DOMSearchBox();
|
||||||
|
this.DOMSearchClose().style.display = 'inline';
|
||||||
|
if (this.insideFrame)
|
||||||
|
{
|
||||||
|
var domPopupSearchResults = this.DOMPopupSearchResults();
|
||||||
|
domPopupSearchResultsWindow.style.position = 'relative';
|
||||||
|
domPopupSearchResultsWindow.style.display = 'block';
|
||||||
|
var width = document.body.clientWidth - 8; // the -8 is for IE :-(
|
||||||
|
domPopupSearchResultsWindow.style.width = width + 'px';
|
||||||
|
domPopupSearchResults.style.width = width + 'px';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var domPopupSearchResults = this.DOMPopupSearchResults();
|
||||||
|
var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth;
|
||||||
|
var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1;
|
||||||
|
domPopupSearchResultsWindow.style.display = 'block';
|
||||||
|
left -= domPopupSearchResults.offsetWidth;
|
||||||
|
domPopupSearchResultsWindow.style.top = top + 'px';
|
||||||
|
domPopupSearchResultsWindow.style.left = left + 'px';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.lastSearchValue = searchValue;
|
||||||
|
this.lastResultsPage = resultsPage;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------- Activation Functions
|
||||||
|
|
||||||
|
// Activates or deactivates the search panel, resetting things to
|
||||||
|
// their default values if necessary.
|
||||||
|
this.Activate = function(isActive)
|
||||||
|
{
|
||||||
|
if (isActive || // open it
|
||||||
|
this.DOMPopupSearchResultsWindow().style.display == 'block'
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this.DOMSearchBox().className = 'MSearchBoxActive';
|
||||||
|
|
||||||
|
var searchField = this.DOMSearchField();
|
||||||
|
|
||||||
|
if (searchField.value == this.searchLabel) // clear "Search" term upon entry
|
||||||
|
{
|
||||||
|
searchField.value = '';
|
||||||
|
this.searchActive = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (!isActive) // directly remove the panel
|
||||||
|
{
|
||||||
|
this.DOMSearchBox().className = 'MSearchBoxInactive';
|
||||||
|
this.DOMSearchField().value = this.searchLabel;
|
||||||
|
this.searchActive = false;
|
||||||
|
this.lastSearchValue = ''
|
||||||
|
this.lastResultsPage = '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// -----------------------------------------------------------------------
|
||||||
|
|
||||||
|
// The class that handles everything on the search results page.
|
||||||
|
function SearchResults(name)
|
||||||
|
{
|
||||||
|
// The number of matches from the last run of <Search()>.
|
||||||
|
this.lastMatchCount = 0;
|
||||||
|
this.lastKey = 0;
|
||||||
|
this.repeatOn = false;
|
||||||
|
|
||||||
|
// Toggles the visibility of the passed element ID.
|
||||||
|
this.FindChildElement = function(id)
|
||||||
|
{
|
||||||
|
var parentElement = document.getElementById(id);
|
||||||
|
var element = parentElement.firstChild;
|
||||||
|
|
||||||
|
while (element && element!=parentElement)
|
||||||
|
{
|
||||||
|
if (element.nodeName == 'DIV' && element.className == 'SRChildren')
|
||||||
|
{
|
||||||
|
return element;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (element.nodeName == 'DIV' && element.hasChildNodes())
|
||||||
|
{
|
||||||
|
element = element.firstChild;
|
||||||
|
}
|
||||||
|
else if (element.nextSibling)
|
||||||
|
{
|
||||||
|
element = element.nextSibling;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
do
|
||||||
|
{
|
||||||
|
element = element.parentNode;
|
||||||
|
}
|
||||||
|
while (element && element!=parentElement && !element.nextSibling);
|
||||||
|
|
||||||
|
if (element && element!=parentElement)
|
||||||
|
{
|
||||||
|
element = element.nextSibling;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.Toggle = function(id)
|
||||||
|
{
|
||||||
|
var element = this.FindChildElement(id);
|
||||||
|
if (element)
|
||||||
|
{
|
||||||
|
if (element.style.display == 'block')
|
||||||
|
{
|
||||||
|
element.style.display = 'none';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
element.style.display = 'block';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Searches for the passed string. If there is no parameter,
|
||||||
|
// it takes it from the URL query.
|
||||||
|
//
|
||||||
|
// Always returns true, since other documents may try to call it
|
||||||
|
// and that may or may not be possible.
|
||||||
|
this.Search = function(search)
|
||||||
|
{
|
||||||
|
if (!search) // get search word from URL
|
||||||
|
{
|
||||||
|
search = window.location.search;
|
||||||
|
search = search.substring(1); // Remove the leading '?'
|
||||||
|
search = unescape(search);
|
||||||
|
}
|
||||||
|
|
||||||
|
search = search.replace(/^ +/, ""); // strip leading spaces
|
||||||
|
search = search.replace(/ +$/, ""); // strip trailing spaces
|
||||||
|
search = search.toLowerCase();
|
||||||
|
search = convertToId(search);
|
||||||
|
|
||||||
|
var resultRows = document.getElementsByTagName("div");
|
||||||
|
var matches = 0;
|
||||||
|
|
||||||
|
var i = 0;
|
||||||
|
while (i < resultRows.length)
|
||||||
|
{
|
||||||
|
var row = resultRows.item(i);
|
||||||
|
if (row.className == "SRResult")
|
||||||
|
{
|
||||||
|
var rowMatchName = row.id.toLowerCase();
|
||||||
|
rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_'
|
||||||
|
|
||||||
|
if (search.length<=rowMatchName.length &&
|
||||||
|
rowMatchName.substr(0, search.length)==search)
|
||||||
|
{
|
||||||
|
row.style.display = 'block';
|
||||||
|
matches++;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
row.style.display = 'none';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
document.getElementById("Searching").style.display='none';
|
||||||
|
if (matches == 0) // no results
|
||||||
|
{
|
||||||
|
document.getElementById("NoMatches").style.display='block';
|
||||||
|
}
|
||||||
|
else // at least one result
|
||||||
|
{
|
||||||
|
document.getElementById("NoMatches").style.display='none';
|
||||||
|
}
|
||||||
|
this.lastMatchCount = matches;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// return the first item with index index or higher that is visible
|
||||||
|
this.NavNext = function(index)
|
||||||
|
{
|
||||||
|
var focusItem;
|
||||||
|
while (1)
|
||||||
|
{
|
||||||
|
var focusName = 'Item'+index;
|
||||||
|
focusItem = document.getElementById(focusName);
|
||||||
|
if (focusItem && focusItem.parentNode.parentNode.style.display=='block')
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else if (!focusItem) // last element
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
focusItem=null;
|
||||||
|
index++;
|
||||||
|
}
|
||||||
|
return focusItem;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.NavPrev = function(index)
|
||||||
|
{
|
||||||
|
var focusItem;
|
||||||
|
while (1)
|
||||||
|
{
|
||||||
|
var focusName = 'Item'+index;
|
||||||
|
focusItem = document.getElementById(focusName);
|
||||||
|
if (focusItem && focusItem.parentNode.parentNode.style.display=='block')
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else if (!focusItem) // last element
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
focusItem=null;
|
||||||
|
index--;
|
||||||
|
}
|
||||||
|
return focusItem;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.ProcessKeys = function(e)
|
||||||
|
{
|
||||||
|
if (e.type == "keydown")
|
||||||
|
{
|
||||||
|
this.repeatOn = false;
|
||||||
|
this.lastKey = e.keyCode;
|
||||||
|
}
|
||||||
|
else if (e.type == "keypress")
|
||||||
|
{
|
||||||
|
if (!this.repeatOn)
|
||||||
|
{
|
||||||
|
if (this.lastKey) this.repeatOn = true;
|
||||||
|
return false; // ignore first keypress after keydown
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (e.type == "keyup")
|
||||||
|
{
|
||||||
|
this.lastKey = 0;
|
||||||
|
this.repeatOn = false;
|
||||||
|
}
|
||||||
|
return this.lastKey!=0;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.Nav = function(evt,itemIndex)
|
||||||
|
{
|
||||||
|
var e = (evt) ? evt : window.event; // for IE
|
||||||
|
if (e.keyCode==13) return true;
|
||||||
|
if (!this.ProcessKeys(e)) return false;
|
||||||
|
|
||||||
|
if (this.lastKey==38) // Up
|
||||||
|
{
|
||||||
|
var newIndex = itemIndex-1;
|
||||||
|
var focusItem = this.NavPrev(newIndex);
|
||||||
|
if (focusItem)
|
||||||
|
{
|
||||||
|
var child = this.FindChildElement(focusItem.parentNode.parentNode.id);
|
||||||
|
if (child && child.style.display == 'block') // children visible
|
||||||
|
{
|
||||||
|
var n=0;
|
||||||
|
var tmpElem;
|
||||||
|
while (1) // search for last child
|
||||||
|
{
|
||||||
|
tmpElem = document.getElementById('Item'+newIndex+'_c'+n);
|
||||||
|
if (tmpElem)
|
||||||
|
{
|
||||||
|
focusItem = tmpElem;
|
||||||
|
}
|
||||||
|
else // found it!
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
n++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (focusItem)
|
||||||
|
{
|
||||||
|
focusItem.focus();
|
||||||
|
}
|
||||||
|
else // return focus to search field
|
||||||
|
{
|
||||||
|
parent.document.getElementById("MSearchField").focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (this.lastKey==40) // Down
|
||||||
|
{
|
||||||
|
var newIndex = itemIndex+1;
|
||||||
|
var focusItem;
|
||||||
|
var item = document.getElementById('Item'+itemIndex);
|
||||||
|
var elem = this.FindChildElement(item.parentNode.parentNode.id);
|
||||||
|
if (elem && elem.style.display == 'block') // children visible
|
||||||
|
{
|
||||||
|
focusItem = document.getElementById('Item'+itemIndex+'_c0');
|
||||||
|
}
|
||||||
|
if (!focusItem) focusItem = this.NavNext(newIndex);
|
||||||
|
if (focusItem) focusItem.focus();
|
||||||
|
}
|
||||||
|
else if (this.lastKey==39) // Right
|
||||||
|
{
|
||||||
|
var item = document.getElementById('Item'+itemIndex);
|
||||||
|
var elem = this.FindChildElement(item.parentNode.parentNode.id);
|
||||||
|
if (elem) elem.style.display = 'block';
|
||||||
|
}
|
||||||
|
else if (this.lastKey==37) // Left
|
||||||
|
{
|
||||||
|
var item = document.getElementById('Item'+itemIndex);
|
||||||
|
var elem = this.FindChildElement(item.parentNode.parentNode.id);
|
||||||
|
if (elem) elem.style.display = 'none';
|
||||||
|
}
|
||||||
|
else if (this.lastKey==27) // Escape
|
||||||
|
{
|
||||||
|
parent.searchBox.CloseResultsWindow();
|
||||||
|
parent.document.getElementById("MSearchField").focus();
|
||||||
|
}
|
||||||
|
else if (this.lastKey==13) // Enter
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.NavChild = function(evt,itemIndex,childIndex)
|
||||||
|
{
|
||||||
|
var e = (evt) ? evt : window.event; // for IE
|
||||||
|
if (e.keyCode==13) return true;
|
||||||
|
if (!this.ProcessKeys(e)) return false;
|
||||||
|
|
||||||
|
if (this.lastKey==38) // Up
|
||||||
|
{
|
||||||
|
if (childIndex>0)
|
||||||
|
{
|
||||||
|
var newIndex = childIndex-1;
|
||||||
|
document.getElementById('Item'+itemIndex+'_c'+newIndex).focus();
|
||||||
|
}
|
||||||
|
else // already at first child, jump to parent
|
||||||
|
{
|
||||||
|
document.getElementById('Item'+itemIndex).focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (this.lastKey==40) // Down
|
||||||
|
{
|
||||||
|
var newIndex = childIndex+1;
|
||||||
|
var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex);
|
||||||
|
if (!elem) // last child, jump to parent next parent
|
||||||
|
{
|
||||||
|
elem = this.NavNext(itemIndex+1);
|
||||||
|
}
|
||||||
|
if (elem)
|
||||||
|
{
|
||||||
|
elem.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (this.lastKey==27) // Escape
|
||||||
|
{
|
||||||
|
parent.searchBox.CloseResultsWindow();
|
||||||
|
parent.document.getElementById("MSearchField").focus();
|
||||||
|
}
|
||||||
|
else if (this.lastKey==13) // Enter
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
BIN
library/deps/libjpeg-turbo/doc/html/search/search_l.png
Normal file
After Width: | Height: | Size: 604 B |
BIN
library/deps/libjpeg-turbo/doc/html/search/search_m.png
Normal file
After Width: | Height: | Size: 158 B |
BIN
library/deps/libjpeg-turbo/doc/html/search/search_r.png
Normal file
After Width: | Height: | Size: 612 B |
26
library/deps/libjpeg-turbo/doc/html/search/variables_63.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_customfilter">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjtransform.html#a43ee1bcdd2a8d7249a756774f78793c1" target="_parent">customFilter</a>
|
||||||
|
<span class="SRScope">tjtransform</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
32
library/deps/libjpeg-turbo/doc/html/search/variables_64.html
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_data">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjtransform.html#a688fe8f1a8ecc12a538d9e561cf338e3" target="_parent">data</a>
|
||||||
|
<span class="SRScope">tjtransform</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRResult" id="SR_denom">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item1" onkeydown="return searchResults.Nav(event,1)" onkeypress="return searchResults.Nav(event,1)" onkeyup="return searchResults.Nav(event,1)" class="SRSymbol" href="../structtjscalingfactor.html#aefbcdf3e9e62274b2d312c695f133ce3" target="_parent">denom</a>
|
||||||
|
<span class="SRScope">tjscalingfactor</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
library/deps/libjpeg-turbo/doc/html/search/variables_68.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_h">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjregion.html#aecefc45a26f4d8b60dd4d825c1710115" target="_parent">h</a>
|
||||||
|
<span class="SRScope">tjregion</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
library/deps/libjpeg-turbo/doc/html/search/variables_6e.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_num">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjscalingfactor.html#a9b011e57f981ee23083e2c1aa5e640ec" target="_parent">num</a>
|
||||||
|
<span class="SRScope">tjscalingfactor</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
32
library/deps/libjpeg-turbo/doc/html/search/variables_6f.html
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_op">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjtransform.html#a2525aab4ba6978a1c273f74fef50e498" target="_parent">op</a>
|
||||||
|
<span class="SRScope">tjtransform</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRResult" id="SR_options">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item1" onkeydown="return searchResults.Nav(event,1)" onkeypress="return searchResults.Nav(event,1)" onkeyup="return searchResults.Nav(event,1)" class="SRSymbol" href="../structtjtransform.html#ac0e74655baa4402209a21e1ae481c8f6" target="_parent">options</a>
|
||||||
|
<span class="SRScope">tjtransform</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
library/deps/libjpeg-turbo/doc/html/search/variables_72.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_r">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjtransform.html#ac324e5e442abec8a961e5bf219db12cf" target="_parent">r</a>
|
||||||
|
<span class="SRScope">tjtransform</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
library/deps/libjpeg-turbo/doc/html/search/variables_77.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_w">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjregion.html#ab6eb73ceef584fc23c8c8097926dce42" target="_parent">w</a>
|
||||||
|
<span class="SRScope">tjregion</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
library/deps/libjpeg-turbo/doc/html/search/variables_78.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_x">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjregion.html#a4b6a37a93997091b26a75831fa291ad9" target="_parent">x</a>
|
||||||
|
<span class="SRScope">tjregion</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
library/deps/libjpeg-turbo/doc/html/search/variables_79.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html><head><title></title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||||
|
<script type="text/javascript" src="search.js"></script>
|
||||||
|
</head>
|
||||||
|
<body class="SRPage">
|
||||||
|
<div id="SRIndex">
|
||||||
|
<div class="SRStatus" id="Loading">Loading...</div>
|
||||||
|
<div class="SRResult" id="SR_y">
|
||||||
|
<div class="SREntry">
|
||||||
|
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../structtjregion.html#a7b3e0c24cfe87acc80e334cafdcf22c2" target="_parent">y</a>
|
||||||
|
<span class="SRScope">tjregion</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="SRStatus" id="Searching">Searching...</div>
|
||||||
|
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
document.getElementById("Loading").style.display="none";
|
||||||
|
document.getElementById("NoMatches").style.display="none";
|
||||||
|
var searchResults = new SearchResults("searchResults");
|
||||||
|
searchResults.Search();
|
||||||
|
--></script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
172
library/deps/libjpeg-turbo/doc/html/structtjregion.html
Normal file
|
@ -0,0 +1,172 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<title>TurboJPEG: tjregion Struct Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body onload='searchBox.OnSelectItem(0);'>
|
||||||
|
<!-- Generated by Doxygen 1.7.4 -->
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
--></script>
|
||||||
|
<div id="top">
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">TurboJPEG <span id="projectnumber">1.2</span></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div id="navrow1" class="tabs">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||||
|
<li><a href="modules.html"><span>Modules</span></a></li>
|
||||||
|
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li id="searchli">
|
||||||
|
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div id="navrow2" class="tabs2">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
|
||||||
|
<li><a href="functions.html"><span>Data Fields</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#pub-attribs">Data Fields</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">tjregion Struct Reference<div class="ingroups"><a class="el" href="group___turbo_j_p_e_g.html">TurboJPEG</a></div></div> </div>
|
||||||
|
</div>
|
||||||
|
<div class="contents">
|
||||||
|
<!-- doxytag: class="tjregion" -->
|
||||||
|
<p>Cropping region.
|
||||||
|
<a href="structtjregion.html#details">More...</a></p>
|
||||||
|
|
||||||
|
<p><code>#include <turbojpeg.h></code></p>
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr><td colspan="2"><h2><a name="pub-attribs"></a>
|
||||||
|
Data Fields</h2></td></tr>
|
||||||
|
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="structtjregion.html#a4b6a37a93997091b26a75831fa291ad9">x</a></td></tr>
|
||||||
|
<tr><td class="mdescLeft"> </td><td class="mdescRight">The left boundary of the cropping region. <a href="#a4b6a37a93997091b26a75831fa291ad9"></a><br/></td></tr>
|
||||||
|
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="structtjregion.html#a7b3e0c24cfe87acc80e334cafdcf22c2">y</a></td></tr>
|
||||||
|
<tr><td class="mdescLeft"> </td><td class="mdescRight">The upper boundary of the cropping region. <a href="#a7b3e0c24cfe87acc80e334cafdcf22c2"></a><br/></td></tr>
|
||||||
|
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="structtjregion.html#ab6eb73ceef584fc23c8c8097926dce42">w</a></td></tr>
|
||||||
|
<tr><td class="mdescLeft"> </td><td class="mdescRight">The width of the cropping region. <a href="#ab6eb73ceef584fc23c8c8097926dce42"></a><br/></td></tr>
|
||||||
|
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="structtjregion.html#aecefc45a26f4d8b60dd4d825c1710115">h</a></td></tr>
|
||||||
|
<tr><td class="mdescLeft"> </td><td class="mdescRight">The height of the cropping region. <a href="#aecefc45a26f4d8b60dd4d825c1710115"></a><br/></td></tr>
|
||||||
|
</table>
|
||||||
|
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
|
||||||
|
<div class="textblock"><p>Cropping region. </p>
|
||||||
|
</div><hr/><h2>Field Documentation</h2>
|
||||||
|
<a class="anchor" id="aecefc45a26f4d8b60dd4d825c1710115"></a><!-- doxytag: member="tjregion::h" ref="aecefc45a26f4d8b60dd4d825c1710115" args="" -->
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">int <a class="el" href="structtjregion.html#aecefc45a26f4d8b60dd4d825c1710115">tjregion::h</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="memdoc">
|
||||||
|
|
||||||
|
<p>The height of the cropping region. </p>
|
||||||
|
<p>Setting this to 0 is the equivalent of setting it to the height of the source JPEG image - y. </p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a class="anchor" id="ab6eb73ceef584fc23c8c8097926dce42"></a><!-- doxytag: member="tjregion::w" ref="ab6eb73ceef584fc23c8c8097926dce42" args="" -->
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">int <a class="el" href="structtjregion.html#ab6eb73ceef584fc23c8c8097926dce42">tjregion::w</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="memdoc">
|
||||||
|
|
||||||
|
<p>The width of the cropping region. </p>
|
||||||
|
<p>Setting this to 0 is the equivalent of setting it to the width of the source JPEG image - x. </p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a class="anchor" id="a4b6a37a93997091b26a75831fa291ad9"></a><!-- doxytag: member="tjregion::x" ref="a4b6a37a93997091b26a75831fa291ad9" args="" -->
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">int <a class="el" href="structtjregion.html#a4b6a37a93997091b26a75831fa291ad9">tjregion::x</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="memdoc">
|
||||||
|
|
||||||
|
<p>The left boundary of the cropping region. </p>
|
||||||
|
<p>This must be evenly divisible by the MCU block width (see <a class="el" href="group___turbo_j_p_e_g.html#ga9e61e7cd47a15a173283ba94e781308c" title="MCU block width (in pixels) for a given level of chrominance subsampling.">tjMCUWidth</a>.) </p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a class="anchor" id="a7b3e0c24cfe87acc80e334cafdcf22c2"></a><!-- doxytag: member="tjregion::y" ref="a7b3e0c24cfe87acc80e334cafdcf22c2" args="" -->
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">int <a class="el" href="structtjregion.html#a7b3e0c24cfe87acc80e334cafdcf22c2">tjregion::y</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="memdoc">
|
||||||
|
|
||||||
|
<p>The upper boundary of the cropping region. </p>
|
||||||
|
<p>This must be evenly divisible by the MCU block height (see <a class="el" href="group___turbo_j_p_e_g.html#gabd247bb9fecb393eca57366feb8327bf" title="MCU block height (in pixels) for a given level of chrominance subsampling.">tjMCUHeight</a>.) </p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr/>The documentation for this struct was generated from the following file:<ul>
|
||||||
|
<li>turbojpeg.h</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Variables</a></div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="footer"/><address class="footer"><small>Generated on Sun Dec 18 2011 20:09:47 for TurboJPEG by 
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
134
library/deps/libjpeg-turbo/doc/html/structtjscalingfactor.html
Normal file
|
@ -0,0 +1,134 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<title>TurboJPEG: tjscalingfactor Struct Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body onload='searchBox.OnSelectItem(0);'>
|
||||||
|
<!-- Generated by Doxygen 1.7.4 -->
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
--></script>
|
||||||
|
<div id="top">
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">TurboJPEG <span id="projectnumber">1.2</span></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div id="navrow1" class="tabs">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||||
|
<li><a href="modules.html"><span>Modules</span></a></li>
|
||||||
|
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li id="searchli">
|
||||||
|
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div id="navrow2" class="tabs2">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
|
||||||
|
<li><a href="functions.html"><span>Data Fields</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#pub-attribs">Data Fields</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">tjscalingfactor Struct Reference<div class="ingroups"><a class="el" href="group___turbo_j_p_e_g.html">TurboJPEG</a></div></div> </div>
|
||||||
|
</div>
|
||||||
|
<div class="contents">
|
||||||
|
<!-- doxytag: class="tjscalingfactor" -->
|
||||||
|
<p>Scaling factor.
|
||||||
|
<a href="structtjscalingfactor.html#details">More...</a></p>
|
||||||
|
|
||||||
|
<p><code>#include <turbojpeg.h></code></p>
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr><td colspan="2"><h2><a name="pub-attribs"></a>
|
||||||
|
Data Fields</h2></td></tr>
|
||||||
|
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="structtjscalingfactor.html#a9b011e57f981ee23083e2c1aa5e640ec">num</a></td></tr>
|
||||||
|
<tr><td class="mdescLeft"> </td><td class="mdescRight">Numerator. <a href="#a9b011e57f981ee23083e2c1aa5e640ec"></a><br/></td></tr>
|
||||||
|
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="structtjscalingfactor.html#aefbcdf3e9e62274b2d312c695f133ce3">denom</a></td></tr>
|
||||||
|
<tr><td class="mdescLeft"> </td><td class="mdescRight">Denominator. <a href="#aefbcdf3e9e62274b2d312c695f133ce3"></a><br/></td></tr>
|
||||||
|
</table>
|
||||||
|
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
|
||||||
|
<div class="textblock"><p>Scaling factor. </p>
|
||||||
|
</div><hr/><h2>Field Documentation</h2>
|
||||||
|
<a class="anchor" id="aefbcdf3e9e62274b2d312c695f133ce3"></a><!-- doxytag: member="tjscalingfactor::denom" ref="aefbcdf3e9e62274b2d312c695f133ce3" args="" -->
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">int <a class="el" href="structtjscalingfactor.html#aefbcdf3e9e62274b2d312c695f133ce3">tjscalingfactor::denom</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="memdoc">
|
||||||
|
|
||||||
|
<p>Denominator. </p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a class="anchor" id="a9b011e57f981ee23083e2c1aa5e640ec"></a><!-- doxytag: member="tjscalingfactor::num" ref="a9b011e57f981ee23083e2c1aa5e640ec" args="" -->
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">int <a class="el" href="structtjscalingfactor.html#a9b011e57f981ee23083e2c1aa5e640ec">tjscalingfactor::num</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="memdoc">
|
||||||
|
|
||||||
|
<p>Numerator. </p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr/>The documentation for this struct was generated from the following file:<ul>
|
||||||
|
<li>turbojpeg.h</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Variables</a></div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="footer"/><address class="footer"><small>Generated on Sun Dec 18 2011 20:09:47 for TurboJPEG by 
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
198
library/deps/libjpeg-turbo/doc/html/structtjtransform.html
Normal file
|
@ -0,0 +1,198 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<title>TurboJPEG: tjtransform Struct Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body onload='searchBox.OnSelectItem(0);'>
|
||||||
|
<!-- Generated by Doxygen 1.7.4 -->
|
||||||
|
<script type="text/javascript"><!--
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",false,'Search');
|
||||||
|
--></script>
|
||||||
|
<div id="top">
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr style="height: 56px;">
|
||||||
|
<td style="padding-left: 0.5em;">
|
||||||
|
<div id="projectname">TurboJPEG <span id="projectnumber">1.2</span></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div id="navrow1" class="tabs">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="index.html"><span>Main Page</span></a></li>
|
||||||
|
<li><a href="modules.html"><span>Modules</span></a></li>
|
||||||
|
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li id="searchli">
|
||||||
|
<div id="MSearchBox" class="MSearchBoxInactive">
|
||||||
|
<span class="left">
|
||||||
|
<img id="MSearchSelect" src="search/mag_sel.png"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
alt=""/>
|
||||||
|
<input type="text" id="MSearchField" value="Search" accesskey="S"
|
||||||
|
onfocus="searchBox.OnSearchFieldFocus(true)"
|
||||||
|
onblur="searchBox.OnSearchFieldFocus(false)"
|
||||||
|
onkeyup="searchBox.OnSearchFieldChange(event)"/>
|
||||||
|
</span><span class="right">
|
||||||
|
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div id="navrow2" class="tabs2">
|
||||||
|
<ul class="tablist">
|
||||||
|
<li><a href="annotated.html"><span>Data Structures</span></a></li>
|
||||||
|
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
|
||||||
|
<li><a href="functions.html"><span>Data Fields</span></a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#pub-attribs">Data Fields</a> </div>
|
||||||
|
<div class="headertitle">
|
||||||
|
<div class="title">tjtransform Struct Reference<div class="ingroups"><a class="el" href="group___turbo_j_p_e_g.html">TurboJPEG</a></div></div> </div>
|
||||||
|
</div>
|
||||||
|
<div class="contents">
|
||||||
|
<!-- doxytag: class="tjtransform" -->
|
||||||
|
<p>Lossless transform.
|
||||||
|
<a href="structtjtransform.html#details">More...</a></p>
|
||||||
|
|
||||||
|
<p><code>#include <turbojpeg.h></code></p>
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr><td colspan="2"><h2><a name="pub-attribs"></a>
|
||||||
|
Data Fields</h2></td></tr>
|
||||||
|
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="structtjregion.html">tjregion</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="structtjtransform.html#ac324e5e442abec8a961e5bf219db12cf">r</a></td></tr>
|
||||||
|
<tr><td class="mdescLeft"> </td><td class="mdescRight">Cropping region. <a href="#ac324e5e442abec8a961e5bf219db12cf"></a><br/></td></tr>
|
||||||
|
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="structtjtransform.html#a2525aab4ba6978a1c273f74fef50e498">op</a></td></tr>
|
||||||
|
<tr><td class="mdescLeft"> </td><td class="mdescRight">One of the <a class="el" href="group___turbo_j_p_e_g.html#ga2de531af4e7e6c4f124908376b354866">transform operations</a>. <a href="#a2525aab4ba6978a1c273f74fef50e498"></a><br/></td></tr>
|
||||||
|
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="structtjtransform.html#ac0e74655baa4402209a21e1ae481c8f6">options</a></td></tr>
|
||||||
|
<tr><td class="mdescLeft"> </td><td class="mdescRight">The bitwise OR of one of more of the <a class="el" href="group___turbo_j_p_e_g.html#ga9c771a757fc1294add611906b89ab2d2">transform options</a>. <a href="#ac0e74655baa4402209a21e1ae481c8f6"></a><br/></td></tr>
|
||||||
|
<tr><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="el" href="structtjtransform.html#a688fe8f1a8ecc12a538d9e561cf338e3">data</a></td></tr>
|
||||||
|
<tr><td class="mdescLeft"> </td><td class="mdescRight">Arbitrary data that can be accessed within the body of the callback function. <a href="#a688fe8f1a8ecc12a538d9e561cf338e3"></a><br/></td></tr>
|
||||||
|
<tr><td class="memItemLeft" align="right" valign="top">int(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structtjtransform.html#a43ee1bcdd2a8d7249a756774f78793c1">customFilter</a> )(short *coeffs, <a class="el" href="structtjregion.html">tjregion</a> arrayRegion, <a class="el" href="structtjregion.html">tjregion</a> planeRegion, int componentIndex, int transformIndex, struct <a class="el" href="structtjtransform.html">tjtransform</a> *transform)</td></tr>
|
||||||
|
<tr><td class="mdescLeft"> </td><td class="mdescRight">A callback function that can be used to modify the DCT coefficients after they are losslessly transformed but before they are transcoded to a new JPEG file. <a href="#a43ee1bcdd2a8d7249a756774f78793c1"></a><br/></td></tr>
|
||||||
|
</table>
|
||||||
|
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
|
||||||
|
<div class="textblock"><p>Lossless transform. </p>
|
||||||
|
</div><hr/><h2>Field Documentation</h2>
|
||||||
|
<a class="anchor" id="a43ee1bcdd2a8d7249a756774f78793c1"></a><!-- doxytag: member="tjtransform::customFilter" ref="a43ee1bcdd2a8d7249a756774f78793c1" args=")(short *coeffs, tjregion arrayRegion, tjregion planeRegion, int componentIndex, int transformIndex, struct tjtransform *transform)" -->
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">int(* <a class="el" href="structtjtransform.html#a43ee1bcdd2a8d7249a756774f78793c1">tjtransform::customFilter</a>)(short *coeffs, <a class="el" href="structtjregion.html">tjregion</a> arrayRegion, <a class="el" href="structtjregion.html">tjregion</a> planeRegion, int componentIndex, int transformIndex, struct <a class="el" href="structtjtransform.html">tjtransform</a> *transform)</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="memdoc">
|
||||||
|
|
||||||
|
<p>A callback function that can be used to modify the DCT coefficients after they are losslessly transformed but before they are transcoded to a new JPEG file. </p>
|
||||||
|
<p>This allows for custom filters or other transformations to be applied in the frequency domain.</p>
|
||||||
|
<dl><dt><b>Parameters:</b></dt><dd>
|
||||||
|
<table class="params">
|
||||||
|
<tr><td class="paramname">coeffs</td><td>pointer to an array of transformed DCT coefficients. (NOTE: this pointer is not guaranteed to be valid once the callback returns, so applications wishing to hand off the DCT coefficients to another function or library should make a copy of them within the body of the callback.) </td></tr>
|
||||||
|
<tr><td class="paramname">arrayRegion</td><td><a class="el" href="structtjregion.html" title="Cropping region.">tjregion</a> structure containing the width and height of the array pointed to by <code>coeffs</code> as well as its offset relative to the component plane. TurboJPEG implementations may choose to split each component plane into multiple DCT coefficient arrays and call the callback function once for each array. </td></tr>
|
||||||
|
<tr><td class="paramname">planeRegion</td><td><a class="el" href="structtjregion.html" title="Cropping region.">tjregion</a> structure containing the width and height of the component plane to which <code>coeffs</code> belongs </td></tr>
|
||||||
|
<tr><td class="paramname">componentID</td><td>ID number of the component plane to which <code>coeffs</code> belongs (Y, Cb, and Cr have, respectively, ID's of 0, 1, and 2 in typical JPEG images.) </td></tr>
|
||||||
|
<tr><td class="paramname">transformID</td><td>ID number of the transformed image to which <code>coeffs</code> belongs. This is the same as the index of the transform in the transforms array that was passed to <a class="el" href="group___turbo_j_p_e_g.html#gae403193ceb4aafb7e0f56ab587b48616" title="Losslessly transform a JPEG image into another JPEG image.">tjTransform()</a>. </td></tr>
|
||||||
|
<tr><td class="paramname">transform</td><td>a pointer to a <a class="el" href="structtjtransform.html" title="Lossless transform.">tjtransform</a> structure that specifies the parameters and/or cropping region for this transform</td></tr>
|
||||||
|
</table>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<dl class="return"><dt><b>Returns:</b></dt><dd>0 if the callback was successful, or -1 if an error occurred. </dd></dl>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a class="anchor" id="a688fe8f1a8ecc12a538d9e561cf338e3"></a><!-- doxytag: member="tjtransform::data" ref="a688fe8f1a8ecc12a538d9e561cf338e3" args="" -->
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">void* <a class="el" href="structtjtransform.html#a688fe8f1a8ecc12a538d9e561cf338e3">tjtransform::data</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="memdoc">
|
||||||
|
|
||||||
|
<p>Arbitrary data that can be accessed within the body of the callback function. </p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a class="anchor" id="a2525aab4ba6978a1c273f74fef50e498"></a><!-- doxytag: member="tjtransform::op" ref="a2525aab4ba6978a1c273f74fef50e498" args="" -->
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">int <a class="el" href="structtjtransform.html#a2525aab4ba6978a1c273f74fef50e498">tjtransform::op</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="memdoc">
|
||||||
|
|
||||||
|
<p>One of the <a class="el" href="group___turbo_j_p_e_g.html#ga2de531af4e7e6c4f124908376b354866">transform operations</a>. </p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a class="anchor" id="ac0e74655baa4402209a21e1ae481c8f6"></a><!-- doxytag: member="tjtransform::options" ref="ac0e74655baa4402209a21e1ae481c8f6" args="" -->
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname">int <a class="el" href="structtjtransform.html#ac0e74655baa4402209a21e1ae481c8f6">tjtransform::options</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="memdoc">
|
||||||
|
|
||||||
|
<p>The bitwise OR of one of more of the <a class="el" href="group___turbo_j_p_e_g.html#ga9c771a757fc1294add611906b89ab2d2">transform options</a>. </p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<a class="anchor" id="ac324e5e442abec8a961e5bf219db12cf"></a><!-- doxytag: member="tjtransform::r" ref="ac324e5e442abec8a961e5bf219db12cf" args="" -->
|
||||||
|
<div class="memitem">
|
||||||
|
<div class="memproto">
|
||||||
|
<table class="memname">
|
||||||
|
<tr>
|
||||||
|
<td class="memname"><a class="el" href="structtjregion.html">tjregion</a> <a class="el" href="structtjtransform.html#ac324e5e442abec8a961e5bf219db12cf">tjtransform::r</a></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div class="memdoc">
|
||||||
|
|
||||||
|
<p>Cropping region. </p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr/>The documentation for this struct was generated from the following file:<ul>
|
||||||
|
<li>turbojpeg.h</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Variables</a></div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="footer"/><address class="footer"><small>Generated on Sun Dec 18 2011 20:09:47 for TurboJPEG by 
|
||||||
|
<a href="http://www.doxygen.org/index.html">
|
||||||
|
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
library/deps/libjpeg-turbo/doc/html/tab_a.png
Normal file
After Width: | Height: | Size: 140 B |
BIN
library/deps/libjpeg-turbo/doc/html/tab_b.png
Normal file
After Width: | Height: | Size: 178 B |
BIN
library/deps/libjpeg-turbo/doc/html/tab_h.png
Normal file
After Width: | Height: | Size: 192 B |
BIN
library/deps/libjpeg-turbo/doc/html/tab_s.png
Normal file
After Width: | Height: | Size: 189 B |
59
library/deps/libjpeg-turbo/doc/html/tabs.css
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
.tabs, .tabs2, .tabs3 {
|
||||||
|
background-image: url('tab_b.png');
|
||||||
|
width: 100%;
|
||||||
|
z-index: 101;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs2 {
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
.tabs3 {
|
||||||
|
font-size: 9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tablist {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tablist li {
|
||||||
|
float: left;
|
||||||
|
display: table-cell;
|
||||||
|
background-image: url('tab_b.png');
|
||||||
|
line-height: 36px;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tablist a {
|
||||||
|
display: block;
|
||||||
|
padding: 0 20px;
|
||||||
|
font-weight: bold;
|
||||||
|
background-image:url('tab_s.png');
|
||||||
|
background-repeat:no-repeat;
|
||||||
|
background-position:right;
|
||||||
|
color: #283A5D;
|
||||||
|
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
|
||||||
|
text-decoration: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs3 .tablist a {
|
||||||
|
padding: 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tablist a:hover {
|
||||||
|
background-image: url('tab_h.png');
|
||||||
|
background-repeat:repeat-x;
|
||||||
|
color: #fff;
|
||||||
|
text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tablist li.current a {
|
||||||
|
background-image: url('tab_a.png');
|
||||||
|
background-repeat:repeat-x;
|
||||||
|
color: #fff;
|
||||||
|
text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
|
||||||
|
}
|
14
library/deps/libjpeg-turbo/doxygen.config
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
PROJECT_NAME = TurboJPEG
|
||||||
|
PROJECT_NUMBER = 1.2
|
||||||
|
OUTPUT_DIRECTORY = doc/
|
||||||
|
USE_WINDOWS_ENCODING = NO
|
||||||
|
OPTIMIZE_OUTPUT_FOR_C = YES
|
||||||
|
WARN_NO_PARAMDOC = YES
|
||||||
|
GENERATE_LATEX = NO
|
||||||
|
FILE_PATTERNS = turbojpeg.h
|
||||||
|
HIDE_UNDOC_MEMBERS = YES
|
||||||
|
VERBATIM_HEADERS = NO
|
||||||
|
EXTRACT_STATIC = YES
|
||||||
|
JAVADOC_AUTOBRIEF = YES
|
||||||
|
MAX_INITIALIZER_LINES = 0
|
||||||
|
ALWAYS_DETAILED_SEC = YES
|
433
library/deps/libjpeg-turbo/example.c
Normal file
|
@ -0,0 +1,433 @@
|
||||||
|
/*
|
||||||
|
* example.c
|
||||||
|
*
|
||||||
|
* This file illustrates how to use the IJG code as a subroutine library
|
||||||
|
* to read or write JPEG image files. You should look at this code in
|
||||||
|
* conjunction with the documentation file libjpeg.txt.
|
||||||
|
*
|
||||||
|
* This code will not do anything useful as-is, but it may be helpful as a
|
||||||
|
* skeleton for constructing routines that call the JPEG library.
|
||||||
|
*
|
||||||
|
* We present these routines in the same coding style used in the JPEG code
|
||||||
|
* (ANSI function definitions, etc); but you are of course free to code your
|
||||||
|
* routines in a different style if you prefer.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Include file for users of JPEG library.
|
||||||
|
* You will need to have included system headers that define at least
|
||||||
|
* the typedefs FILE and size_t before you can include jpeglib.h.
|
||||||
|
* (stdio.h is sufficient on ANSI-conforming systems.)
|
||||||
|
* You may also wish to include "jerror.h".
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "jpeglib.h"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* <setjmp.h> is used for the optional error recovery mechanism shown in
|
||||||
|
* the second part of the example.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <setjmp.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/******************** JPEG COMPRESSION SAMPLE INTERFACE *******************/
|
||||||
|
|
||||||
|
/* This half of the example shows how to feed data into the JPEG compressor.
|
||||||
|
* We present a minimal version that does not worry about refinements such
|
||||||
|
* as error recovery (the JPEG code will just exit() if it gets an error).
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* IMAGE DATA FORMATS:
|
||||||
|
*
|
||||||
|
* The standard input image format is a rectangular array of pixels, with
|
||||||
|
* each pixel having the same number of "component" values (color channels).
|
||||||
|
* Each pixel row is an array of JSAMPLEs (which typically are unsigned chars).
|
||||||
|
* If you are working with color data, then the color values for each pixel
|
||||||
|
* must be adjacent in the row; for example, R,G,B,R,G,B,R,G,B,... for 24-bit
|
||||||
|
* RGB color.
|
||||||
|
*
|
||||||
|
* For this example, we'll assume that this data structure matches the way
|
||||||
|
* our application has stored the image in memory, so we can just pass a
|
||||||
|
* pointer to our image buffer. In particular, let's say that the image is
|
||||||
|
* RGB color and is described by:
|
||||||
|
*/
|
||||||
|
|
||||||
|
extern JSAMPLE * image_buffer; /* Points to large array of R,G,B-order data */
|
||||||
|
extern int image_height; /* Number of rows in image */
|
||||||
|
extern int image_width; /* Number of columns in image */
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Sample routine for JPEG compression. We assume that the target file name
|
||||||
|
* and a compression quality factor are passed in.
|
||||||
|
*/
|
||||||
|
|
||||||
|
GLOBAL(void)
|
||||||
|
write_JPEG_file (char * filename, int quality)
|
||||||
|
{
|
||||||
|
/* This struct contains the JPEG compression parameters and pointers to
|
||||||
|
* working space (which is allocated as needed by the JPEG library).
|
||||||
|
* It is possible to have several such structures, representing multiple
|
||||||
|
* compression/decompression processes, in existence at once. We refer
|
||||||
|
* to any one struct (and its associated working data) as a "JPEG object".
|
||||||
|
*/
|
||||||
|
struct jpeg_compress_struct cinfo;
|
||||||
|
/* This struct represents a JPEG error handler. It is declared separately
|
||||||
|
* because applications often want to supply a specialized error handler
|
||||||
|
* (see the second half of this file for an example). But here we just
|
||||||
|
* take the easy way out and use the standard error handler, which will
|
||||||
|
* print a message on stderr and call exit() if compression fails.
|
||||||
|
* Note that this struct must live as long as the main JPEG parameter
|
||||||
|
* struct, to avoid dangling-pointer problems.
|
||||||
|
*/
|
||||||
|
struct jpeg_error_mgr jerr;
|
||||||
|
/* More stuff */
|
||||||
|
FILE * outfile; /* target file */
|
||||||
|
JSAMPROW row_pointer[1]; /* pointer to JSAMPLE row[s] */
|
||||||
|
int row_stride; /* physical row width in image buffer */
|
||||||
|
|
||||||
|
/* Step 1: allocate and initialize JPEG compression object */
|
||||||
|
|
||||||
|
/* We have to set up the error handler first, in case the initialization
|
||||||
|
* step fails. (Unlikely, but it could happen if you are out of memory.)
|
||||||
|
* This routine fills in the contents of struct jerr, and returns jerr's
|
||||||
|
* address which we place into the link field in cinfo.
|
||||||
|
*/
|
||||||
|
cinfo.err = jpeg_std_error(&jerr);
|
||||||
|
/* Now we can initialize the JPEG compression object. */
|
||||||
|
jpeg_create_compress(&cinfo);
|
||||||
|
|
||||||
|
/* Step 2: specify data destination (eg, a file) */
|
||||||
|
/* Note: steps 2 and 3 can be done in either order. */
|
||||||
|
|
||||||
|
/* Here we use the library-supplied code to send compressed data to a
|
||||||
|
* stdio stream. You can also write your own code to do something else.
|
||||||
|
* VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
|
||||||
|
* requires it in order to write binary files.
|
||||||
|
*/
|
||||||
|
if ((outfile = fopen(filename, "wb")) == NULL) {
|
||||||
|
fprintf(stderr, "can't open %s\n", filename);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
jpeg_stdio_dest(&cinfo, outfile);
|
||||||
|
|
||||||
|
/* Step 3: set parameters for compression */
|
||||||
|
|
||||||
|
/* First we supply a description of the input image.
|
||||||
|
* Four fields of the cinfo struct must be filled in:
|
||||||
|
*/
|
||||||
|
cinfo.image_width = image_width; /* image width and height, in pixels */
|
||||||
|
cinfo.image_height = image_height;
|
||||||
|
cinfo.input_components = 3; /* # of color components per pixel */
|
||||||
|
cinfo.in_color_space = JCS_RGB; /* colorspace of input image */
|
||||||
|
/* Now use the library's routine to set default compression parameters.
|
||||||
|
* (You must set at least cinfo.in_color_space before calling this,
|
||||||
|
* since the defaults depend on the source color space.)
|
||||||
|
*/
|
||||||
|
jpeg_set_defaults(&cinfo);
|
||||||
|
/* Now you can set any non-default parameters you wish to.
|
||||||
|
* Here we just illustrate the use of quality (quantization table) scaling:
|
||||||
|
*/
|
||||||
|
jpeg_set_quality(&cinfo, quality, TRUE /* limit to baseline-JPEG values */);
|
||||||
|
|
||||||
|
/* Step 4: Start compressor */
|
||||||
|
|
||||||
|
/* TRUE ensures that we will write a complete interchange-JPEG file.
|
||||||
|
* Pass TRUE unless you are very sure of what you're doing.
|
||||||
|
*/
|
||||||
|
jpeg_start_compress(&cinfo, TRUE);
|
||||||
|
|
||||||
|
/* Step 5: while (scan lines remain to be written) */
|
||||||
|
/* jpeg_write_scanlines(...); */
|
||||||
|
|
||||||
|
/* Here we use the library's state variable cinfo.next_scanline as the
|
||||||
|
* loop counter, so that we don't have to keep track ourselves.
|
||||||
|
* To keep things simple, we pass one scanline per call; you can pass
|
||||||
|
* more if you wish, though.
|
||||||
|
*/
|
||||||
|
row_stride = image_width * 3; /* JSAMPLEs per row in image_buffer */
|
||||||
|
|
||||||
|
while (cinfo.next_scanline < cinfo.image_height) {
|
||||||
|
/* jpeg_write_scanlines expects an array of pointers to scanlines.
|
||||||
|
* Here the array is only one element long, but you could pass
|
||||||
|
* more than one scanline at a time if that's more convenient.
|
||||||
|
*/
|
||||||
|
row_pointer[0] = & image_buffer[cinfo.next_scanline * row_stride];
|
||||||
|
(void) jpeg_write_scanlines(&cinfo, row_pointer, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Step 6: Finish compression */
|
||||||
|
|
||||||
|
jpeg_finish_compress(&cinfo);
|
||||||
|
/* After finish_compress, we can close the output file. */
|
||||||
|
fclose(outfile);
|
||||||
|
|
||||||
|
/* Step 7: release JPEG compression object */
|
||||||
|
|
||||||
|
/* This is an important step since it will release a good deal of memory. */
|
||||||
|
jpeg_destroy_compress(&cinfo);
|
||||||
|
|
||||||
|
/* And we're done! */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* SOME FINE POINTS:
|
||||||
|
*
|
||||||
|
* In the above loop, we ignored the return value of jpeg_write_scanlines,
|
||||||
|
* which is the number of scanlines actually written. We could get away
|
||||||
|
* with this because we were only relying on the value of cinfo.next_scanline,
|
||||||
|
* which will be incremented correctly. If you maintain additional loop
|
||||||
|
* variables then you should be careful to increment them properly.
|
||||||
|
* Actually, for output to a stdio stream you needn't worry, because
|
||||||
|
* then jpeg_write_scanlines will write all the lines passed (or else exit
|
||||||
|
* with a fatal error). Partial writes can only occur if you use a data
|
||||||
|
* destination module that can demand suspension of the compressor.
|
||||||
|
* (If you don't know what that's for, you don't need it.)
|
||||||
|
*
|
||||||
|
* If the compressor requires full-image buffers (for entropy-coding
|
||||||
|
* optimization or a multi-scan JPEG file), it will create temporary
|
||||||
|
* files for anything that doesn't fit within the maximum-memory setting.
|
||||||
|
* (Note that temp files are NOT needed if you use the default parameters.)
|
||||||
|
* On some systems you may need to set up a signal handler to ensure that
|
||||||
|
* temporary files are deleted if the program is interrupted. See libjpeg.txt.
|
||||||
|
*
|
||||||
|
* Scanlines MUST be supplied in top-to-bottom order if you want your JPEG
|
||||||
|
* files to be compatible with everyone else's. If you cannot readily read
|
||||||
|
* your data in that order, you'll need an intermediate array to hold the
|
||||||
|
* image. See rdtarga.c or rdbmp.c for examples of handling bottom-to-top
|
||||||
|
* source data using the JPEG code's internal virtual-array mechanisms.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/******************** JPEG DECOMPRESSION SAMPLE INTERFACE *******************/
|
||||||
|
|
||||||
|
/* This half of the example shows how to read data from the JPEG decompressor.
|
||||||
|
* It's a bit more refined than the above, in that we show:
|
||||||
|
* (a) how to modify the JPEG library's standard error-reporting behavior;
|
||||||
|
* (b) how to allocate workspace using the library's memory manager.
|
||||||
|
*
|
||||||
|
* Just to make this example a little different from the first one, we'll
|
||||||
|
* assume that we do not intend to put the whole image into an in-memory
|
||||||
|
* buffer, but to send it line-by-line someplace else. We need a one-
|
||||||
|
* scanline-high JSAMPLE array as a work buffer, and we will let the JPEG
|
||||||
|
* memory manager allocate it for us. This approach is actually quite useful
|
||||||
|
* because we don't need to remember to deallocate the buffer separately: it
|
||||||
|
* will go away automatically when the JPEG object is cleaned up.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ERROR HANDLING:
|
||||||
|
*
|
||||||
|
* The JPEG library's standard error handler (jerror.c) is divided into
|
||||||
|
* several "methods" which you can override individually. This lets you
|
||||||
|
* adjust the behavior without duplicating a lot of code, which you might
|
||||||
|
* have to update with each future release.
|
||||||
|
*
|
||||||
|
* Our example here shows how to override the "error_exit" method so that
|
||||||
|
* control is returned to the library's caller when a fatal error occurs,
|
||||||
|
* rather than calling exit() as the standard error_exit method does.
|
||||||
|
*
|
||||||
|
* We use C's setjmp/longjmp facility to return control. This means that the
|
||||||
|
* routine which calls the JPEG library must first execute a setjmp() call to
|
||||||
|
* establish the return point. We want the replacement error_exit to do a
|
||||||
|
* longjmp(). But we need to make the setjmp buffer accessible to the
|
||||||
|
* error_exit routine. To do this, we make a private extension of the
|
||||||
|
* standard JPEG error handler object. (If we were using C++, we'd say we
|
||||||
|
* were making a subclass of the regular error handler.)
|
||||||
|
*
|
||||||
|
* Here's the extended error handler struct:
|
||||||
|
*/
|
||||||
|
|
||||||
|
struct my_error_mgr {
|
||||||
|
struct jpeg_error_mgr pub; /* "public" fields */
|
||||||
|
|
||||||
|
jmp_buf setjmp_buffer; /* for return to caller */
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef struct my_error_mgr * my_error_ptr;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Here's the routine that will replace the standard error_exit method:
|
||||||
|
*/
|
||||||
|
|
||||||
|
METHODDEF(void)
|
||||||
|
my_error_exit (j_common_ptr cinfo)
|
||||||
|
{
|
||||||
|
/* cinfo->err really points to a my_error_mgr struct, so coerce pointer */
|
||||||
|
my_error_ptr myerr = (my_error_ptr) cinfo->err;
|
||||||
|
|
||||||
|
/* Always display the message. */
|
||||||
|
/* We could postpone this until after returning, if we chose. */
|
||||||
|
(*cinfo->err->output_message) (cinfo);
|
||||||
|
|
||||||
|
/* Return control to the setjmp point */
|
||||||
|
longjmp(myerr->setjmp_buffer, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Sample routine for JPEG decompression. We assume that the source file name
|
||||||
|
* is passed in. We want to return 1 on success, 0 on error.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
GLOBAL(int)
|
||||||
|
read_JPEG_file (char * filename)
|
||||||
|
{
|
||||||
|
/* This struct contains the JPEG decompression parameters and pointers to
|
||||||
|
* working space (which is allocated as needed by the JPEG library).
|
||||||
|
*/
|
||||||
|
struct jpeg_decompress_struct cinfo;
|
||||||
|
/* We use our private extension JPEG error handler.
|
||||||
|
* Note that this struct must live as long as the main JPEG parameter
|
||||||
|
* struct, to avoid dangling-pointer problems.
|
||||||
|
*/
|
||||||
|
struct my_error_mgr jerr;
|
||||||
|
/* More stuff */
|
||||||
|
FILE * infile; /* source file */
|
||||||
|
JSAMPARRAY buffer; /* Output row buffer */
|
||||||
|
int row_stride; /* physical row width in output buffer */
|
||||||
|
|
||||||
|
/* In this example we want to open the input file before doing anything else,
|
||||||
|
* so that the setjmp() error recovery below can assume the file is open.
|
||||||
|
* VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
|
||||||
|
* requires it in order to read binary files.
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ((infile = fopen(filename, "rb")) == NULL) {
|
||||||
|
fprintf(stderr, "can't open %s\n", filename);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Step 1: allocate and initialize JPEG decompression object */
|
||||||
|
|
||||||
|
/* We set up the normal JPEG error routines, then override error_exit. */
|
||||||
|
cinfo.err = jpeg_std_error(&jerr.pub);
|
||||||
|
jerr.pub.error_exit = my_error_exit;
|
||||||
|
/* Establish the setjmp return context for my_error_exit to use. */
|
||||||
|
if (setjmp(jerr.setjmp_buffer)) {
|
||||||
|
/* If we get here, the JPEG code has signaled an error.
|
||||||
|
* We need to clean up the JPEG object, close the input file, and return.
|
||||||
|
*/
|
||||||
|
jpeg_destroy_decompress(&cinfo);
|
||||||
|
fclose(infile);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
/* Now we can initialize the JPEG decompression object. */
|
||||||
|
jpeg_create_decompress(&cinfo);
|
||||||
|
|
||||||
|
/* Step 2: specify data source (eg, a file) */
|
||||||
|
|
||||||
|
jpeg_stdio_src(&cinfo, infile);
|
||||||
|
|
||||||
|
/* Step 3: read file parameters with jpeg_read_header() */
|
||||||
|
|
||||||
|
(void) jpeg_read_header(&cinfo, TRUE);
|
||||||
|
/* We can ignore the return value from jpeg_read_header since
|
||||||
|
* (a) suspension is not possible with the stdio data source, and
|
||||||
|
* (b) we passed TRUE to reject a tables-only JPEG file as an error.
|
||||||
|
* See libjpeg.txt for more info.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Step 4: set parameters for decompression */
|
||||||
|
|
||||||
|
/* In this example, we don't need to change any of the defaults set by
|
||||||
|
* jpeg_read_header(), so we do nothing here.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Step 5: Start decompressor */
|
||||||
|
|
||||||
|
(void) jpeg_start_decompress(&cinfo);
|
||||||
|
/* We can ignore the return value since suspension is not possible
|
||||||
|
* with the stdio data source.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* We may need to do some setup of our own at this point before reading
|
||||||
|
* the data. After jpeg_start_decompress() we have the correct scaled
|
||||||
|
* output image dimensions available, as well as the output colormap
|
||||||
|
* if we asked for color quantization.
|
||||||
|
* In this example, we need to make an output work buffer of the right size.
|
||||||
|
*/
|
||||||
|
/* JSAMPLEs per row in output buffer */
|
||||||
|
row_stride = cinfo.output_width * cinfo.output_components;
|
||||||
|
/* Make a one-row-high sample array that will go away when done with image */
|
||||||
|
buffer = (*cinfo.mem->alloc_sarray)
|
||||||
|
((j_common_ptr) &cinfo, JPOOL_IMAGE, row_stride, 1);
|
||||||
|
|
||||||
|
/* Step 6: while (scan lines remain to be read) */
|
||||||
|
/* jpeg_read_scanlines(...); */
|
||||||
|
|
||||||
|
/* Here we use the library's state variable cinfo.output_scanline as the
|
||||||
|
* loop counter, so that we don't have to keep track ourselves.
|
||||||
|
*/
|
||||||
|
while (cinfo.output_scanline < cinfo.output_height) {
|
||||||
|
/* jpeg_read_scanlines expects an array of pointers to scanlines.
|
||||||
|
* Here the array is only one element long, but you could ask for
|
||||||
|
* more than one scanline at a time if that's more convenient.
|
||||||
|
*/
|
||||||
|
(void) jpeg_read_scanlines(&cinfo, buffer, 1);
|
||||||
|
/* Assume put_scanline_someplace wants a pointer and sample count. */
|
||||||
|
put_scanline_someplace(buffer[0], row_stride);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Step 7: Finish decompression */
|
||||||
|
|
||||||
|
(void) jpeg_finish_decompress(&cinfo);
|
||||||
|
/* We can ignore the return value since suspension is not possible
|
||||||
|
* with the stdio data source.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Step 8: Release JPEG decompression object */
|
||||||
|
|
||||||
|
/* This is an important step since it will release a good deal of memory. */
|
||||||
|
jpeg_destroy_decompress(&cinfo);
|
||||||
|
|
||||||
|
/* After finish_decompress, we can close the input file.
|
||||||
|
* Here we postpone it until after no more JPEG errors are possible,
|
||||||
|
* so as to simplify the setjmp error logic above. (Actually, I don't
|
||||||
|
* think that jpeg_destroy can do an error exit, but why assume anything...)
|
||||||
|
*/
|
||||||
|
fclose(infile);
|
||||||
|
|
||||||
|
/* At this point you may want to check to see whether any corrupt-data
|
||||||
|
* warnings occurred (test whether jerr.pub.num_warnings is nonzero).
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* And we're done! */
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* SOME FINE POINTS:
|
||||||
|
*
|
||||||
|
* In the above code, we ignored the return value of jpeg_read_scanlines,
|
||||||
|
* which is the number of scanlines actually read. We could get away with
|
||||||
|
* this because we asked for only one line at a time and we weren't using
|
||||||
|
* a suspending data source. See libjpeg.txt for more info.
|
||||||
|
*
|
||||||
|
* We cheated a bit by calling alloc_sarray() after jpeg_start_decompress();
|
||||||
|
* we should have done it beforehand to ensure that the space would be
|
||||||
|
* counted against the JPEG max_memory setting. In some systems the above
|
||||||
|
* code would risk an out-of-memory error. However, in general we don't
|
||||||
|
* know the output image dimensions before jpeg_start_decompress(), unless we
|
||||||
|
* call jpeg_calc_output_dimensions(). See libjpeg.txt for more about this.
|
||||||
|
*
|
||||||
|
* Scanlines are returned in the same order as they appear in the JPEG file,
|
||||||
|
* which is standardly top-to-bottom. If you must emit data bottom-to-top,
|
||||||
|
* you can use one of the virtual arrays provided by the JPEG memory manager
|
||||||
|
* to invert the data. See wrbmp.c for an example.
|
||||||
|
*
|
||||||
|
* As with compression, some operating modes may require temporary files.
|
||||||
|
* On some systems you may need to set up a signal handler to ensure that
|
||||||
|
* temporary files are deleted if the program is interrupted. See libjpeg.txt.
|
||||||
|
*/
|
214
library/deps/libjpeg-turbo/filelist.txt
Normal file
|
@ -0,0 +1,214 @@
|
||||||
|
IJG JPEG LIBRARY: FILE LIST
|
||||||
|
|
||||||
|
Copyright (C) 1994-2010, Thomas G. Lane, Guido Vollbeding, D. R. Commander.
|
||||||
|
This file is part of the Independent JPEG Group's software.
|
||||||
|
For conditions of distribution and use, see the accompanying README file.
|
||||||
|
|
||||||
|
|
||||||
|
Here is a road map to the files in the IJG JPEG distribution. The
|
||||||
|
distribution includes the JPEG library proper, plus two application
|
||||||
|
programs ("cjpeg" and "djpeg") which use the library to convert JPEG
|
||||||
|
files to and from some other popular image formats. A third application
|
||||||
|
"jpegtran" uses the library to do lossless conversion between different
|
||||||
|
variants of JPEG. There are also two stand-alone applications,
|
||||||
|
"rdjpgcom" and "wrjpgcom".
|
||||||
|
|
||||||
|
|
||||||
|
THE JPEG LIBRARY
|
||||||
|
================
|
||||||
|
|
||||||
|
Include files:
|
||||||
|
|
||||||
|
jpeglib.h JPEG library's exported data and function declarations.
|
||||||
|
jconfig.h Configuration declarations. Note: this file is not present
|
||||||
|
in the distribution; it is generated during installation.
|
||||||
|
jmorecfg.h Additional configuration declarations; need not be changed
|
||||||
|
for a standard installation.
|
||||||
|
jerror.h Declares JPEG library's error and trace message codes.
|
||||||
|
jinclude.h Central include file used by all IJG .c files to reference
|
||||||
|
system include files.
|
||||||
|
jpegint.h JPEG library's internal data structures.
|
||||||
|
jchuff.h Private declarations for Huffman encoder modules.
|
||||||
|
jdhuff.h Private declarations for Huffman decoder modules.
|
||||||
|
jdct.h Private declarations for forward & reverse DCT subsystems.
|
||||||
|
jmemsys.h Private declarations for memory management subsystem.
|
||||||
|
jversion.h Version information.
|
||||||
|
|
||||||
|
Applications using the library should include jpeglib.h (which in turn
|
||||||
|
includes jconfig.h and jmorecfg.h). Optionally, jerror.h may be included
|
||||||
|
if the application needs to reference individual JPEG error codes. The
|
||||||
|
other include files are intended for internal use and would not normally
|
||||||
|
be included by an application program. (cjpeg/djpeg/etc do use jinclude.h,
|
||||||
|
since its function is to improve portability of the whole IJG distribution.
|
||||||
|
Most other applications will directly include the system include files they
|
||||||
|
want, and hence won't need jinclude.h.)
|
||||||
|
|
||||||
|
|
||||||
|
C source code files:
|
||||||
|
|
||||||
|
These files contain most of the functions intended to be called directly by
|
||||||
|
an application program:
|
||||||
|
|
||||||
|
jcapimin.c Application program interface: core routines for compression.
|
||||||
|
jcapistd.c Application program interface: standard compression.
|
||||||
|
jdapimin.c Application program interface: core routines for decompression.
|
||||||
|
jdapistd.c Application program interface: standard decompression.
|
||||||
|
jcomapi.c Application program interface routines common to compression
|
||||||
|
and decompression.
|
||||||
|
jcparam.c Compression parameter setting helper routines.
|
||||||
|
jctrans.c API and library routines for transcoding compression.
|
||||||
|
jdtrans.c API and library routines for transcoding decompression.
|
||||||
|
|
||||||
|
Compression side of the library:
|
||||||
|
|
||||||
|
jcinit.c Initialization: determines which other modules to use.
|
||||||
|
jcmaster.c Master control: setup and inter-pass sequencing logic.
|
||||||
|
jcmainct.c Main buffer controller (preprocessor => JPEG compressor).
|
||||||
|
jcprepct.c Preprocessor buffer controller.
|
||||||
|
jccoefct.c Buffer controller for DCT coefficient buffer.
|
||||||
|
jccolor.c Color space conversion.
|
||||||
|
jcsample.c Downsampling.
|
||||||
|
jcdctmgr.c DCT manager (DCT implementation selection & control).
|
||||||
|
jfdctint.c Forward DCT using slow-but-accurate integer method.
|
||||||
|
jfdctfst.c Forward DCT using faster, less accurate integer method.
|
||||||
|
jfdctflt.c Forward DCT using floating-point arithmetic.
|
||||||
|
jchuff.c Huffman entropy coding for sequential JPEG.
|
||||||
|
jcphuff.c Huffman entropy coding for progressive JPEG.
|
||||||
|
jcarith.c Arithmetic entropy coding.
|
||||||
|
jcmarker.c JPEG marker writing.
|
||||||
|
jdatadst.c Data destination managers for memory and stdio output.
|
||||||
|
|
||||||
|
Decompression side of the library:
|
||||||
|
|
||||||
|
jdmaster.c Master control: determines which other modules to use.
|
||||||
|
jdinput.c Input controller: controls input processing modules.
|
||||||
|
jdmainct.c Main buffer controller (JPEG decompressor => postprocessor).
|
||||||
|
jdcoefct.c Buffer controller for DCT coefficient buffer.
|
||||||
|
jdpostct.c Postprocessor buffer controller.
|
||||||
|
jdmarker.c JPEG marker reading.
|
||||||
|
jdhuff.c Huffman entropy decoding for sequential JPEG.
|
||||||
|
jdphuff.c Huffman entropy decoding for progressive JPEG.
|
||||||
|
jdarith.c Arithmetic entropy decoding.
|
||||||
|
jddctmgr.c IDCT manager (IDCT implementation selection & control).
|
||||||
|
jidctint.c Inverse DCT using slow-but-accurate integer method.
|
||||||
|
jidctfst.c Inverse DCT using faster, less accurate integer method.
|
||||||
|
jidctflt.c Inverse DCT using floating-point arithmetic.
|
||||||
|
jidctred.c Inverse DCTs with reduced-size outputs.
|
||||||
|
jdsample.c Upsampling.
|
||||||
|
jdcolor.c Color space conversion.
|
||||||
|
jdmerge.c Merged upsampling/color conversion (faster, lower quality).
|
||||||
|
jquant1.c One-pass color quantization using a fixed-spacing colormap.
|
||||||
|
jquant2.c Two-pass color quantization using a custom-generated colormap.
|
||||||
|
Also handles one-pass quantization to an externally given map.
|
||||||
|
jdatasrc.c Data source managers for memory and stdio input.
|
||||||
|
|
||||||
|
Support files for both compression and decompression:
|
||||||
|
|
||||||
|
jaricom.c Tables for common use in arithmetic entropy encoding and
|
||||||
|
decoding routines.
|
||||||
|
jerror.c Standard error handling routines (application replaceable).
|
||||||
|
jmemmgr.c System-independent (more or less) memory management code.
|
||||||
|
jutils.c Miscellaneous utility routines.
|
||||||
|
|
||||||
|
jmemmgr.c relies on a system-dependent memory management module. The IJG
|
||||||
|
distribution includes the following implementations of the system-dependent
|
||||||
|
module:
|
||||||
|
|
||||||
|
jmemnobs.c "No backing store": assumes adequate virtual memory exists.
|
||||||
|
jmemansi.c Makes temporary files with ANSI-standard routine tmpfile().
|
||||||
|
jmemname.c Makes temporary files with program-generated file names.
|
||||||
|
jmemdos.c Custom implementation for MS-DOS (16-bit environment only):
|
||||||
|
can use extended and expanded memory as well as temp files.
|
||||||
|
jmemmac.c Custom implementation for Apple Macintosh.
|
||||||
|
|
||||||
|
Exactly one of the system-dependent modules should be configured into an
|
||||||
|
installed JPEG library (see install.txt for hints about which one to use).
|
||||||
|
On unusual systems you may find it worthwhile to make a special
|
||||||
|
system-dependent memory manager.
|
||||||
|
|
||||||
|
|
||||||
|
Non-C source code files:
|
||||||
|
|
||||||
|
jmemdosa.asm 80x86 assembly code support for jmemdos.c; used only in
|
||||||
|
MS-DOS-specific configurations of the JPEG library.
|
||||||
|
|
||||||
|
|
||||||
|
CJPEG/DJPEG/JPEGTRAN
|
||||||
|
====================
|
||||||
|
|
||||||
|
Include files:
|
||||||
|
|
||||||
|
cdjpeg.h Declarations shared by cjpeg/djpeg/jpegtran modules.
|
||||||
|
cderror.h Additional error and trace message codes for cjpeg et al.
|
||||||
|
transupp.h Declarations for jpegtran support routines in transupp.c.
|
||||||
|
|
||||||
|
C source code files:
|
||||||
|
|
||||||
|
cjpeg.c Main program for cjpeg.
|
||||||
|
djpeg.c Main program for djpeg.
|
||||||
|
jpegtran.c Main program for jpegtran.
|
||||||
|
cdjpeg.c Utility routines used by all three programs.
|
||||||
|
rdcolmap.c Code to read a colormap file for djpeg's "-map" switch.
|
||||||
|
rdswitch.c Code to process some of cjpeg's more complex switches.
|
||||||
|
Also used by jpegtran.
|
||||||
|
transupp.c Support code for jpegtran: lossless image manipulations.
|
||||||
|
|
||||||
|
Image file reader modules for cjpeg:
|
||||||
|
|
||||||
|
rdbmp.c BMP file input.
|
||||||
|
rdgif.c GIF file input (now just a stub).
|
||||||
|
rdppm.c PPM/PGM file input.
|
||||||
|
rdrle.c Utah RLE file input.
|
||||||
|
rdtarga.c Targa file input.
|
||||||
|
|
||||||
|
Image file writer modules for djpeg:
|
||||||
|
|
||||||
|
wrbmp.c BMP file output.
|
||||||
|
wrgif.c GIF file output (a mere shadow of its former self).
|
||||||
|
wrppm.c PPM/PGM file output.
|
||||||
|
wrrle.c Utah RLE file output.
|
||||||
|
wrtarga.c Targa file output.
|
||||||
|
|
||||||
|
|
||||||
|
RDJPGCOM/WRJPGCOM
|
||||||
|
=================
|
||||||
|
|
||||||
|
C source code files:
|
||||||
|
|
||||||
|
rdjpgcom.c Stand-alone rdjpgcom application.
|
||||||
|
wrjpgcom.c Stand-alone wrjpgcom application.
|
||||||
|
|
||||||
|
These programs do not depend on the IJG library. They do use
|
||||||
|
jconfig.h and jinclude.h, only to improve portability.
|
||||||
|
|
||||||
|
|
||||||
|
ADDITIONAL FILES
|
||||||
|
================
|
||||||
|
|
||||||
|
Documentation (see README for a guide to the documentation files):
|
||||||
|
|
||||||
|
README Master documentation file.
|
||||||
|
*.txt Other documentation files.
|
||||||
|
*.1 Documentation in Unix man page format.
|
||||||
|
change.log Version-to-version change highlights.
|
||||||
|
example.c Sample code for calling JPEG library.
|
||||||
|
|
||||||
|
Configuration/installation files and programs (see install.txt for more info):
|
||||||
|
|
||||||
|
configure Unix shell script to perform automatic configuration.
|
||||||
|
configure.ac Source file for use with Autoconf to generate configure.
|
||||||
|
ltmain.sh Support scripts for configure (from GNU libtool).
|
||||||
|
config.guess
|
||||||
|
config.sub
|
||||||
|
depcomp
|
||||||
|
missing
|
||||||
|
install-sh Install shell script for those Unix systems lacking one.
|
||||||
|
Makefile.in Makefile input for configure.
|
||||||
|
Makefile.am Source file for use with Automake to generate Makefile.in.
|
||||||
|
jconfig.txt Template for making jconfig.h by hand.
|
||||||
|
aclocal.m4 M4 macro definitions for use with Autoconf.
|
||||||
|
|
||||||
|
Test files (see install.txt for test procedure):
|
||||||
|
|
||||||
|
test*.* Source and comparison files for confidence test.
|
||||||
|
These are binary image files, NOT text files.
|
322
library/deps/libjpeg-turbo/install-sh
Normal file
|
@ -0,0 +1,322 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# install - install a program, script, or datafile
|
||||||
|
|
||||||
|
scriptversion=2004-09-10.20
|
||||||
|
|
||||||
|
# This originates from X11R5 (mit/util/scripts/install.sh), which was
|
||||||
|
# later released in X11R6 (xc/config/util/install.sh) with the
|
||||||
|
# following copyright and license.
|
||||||
|
#
|
||||||
|
# Copyright (C) 1994 X Consortium
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
# of this software and associated documentation files (the "Software"), to
|
||||||
|
# deal in the Software without restriction, including without limitation the
|
||||||
|
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||||
|
# sell copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in
|
||||||
|
# all copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
||||||
|
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
|
||||||
|
# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
#
|
||||||
|
# Except as contained in this notice, the name of the X Consortium shall not
|
||||||
|
# be used in advertising or otherwise to promote the sale, use or other deal-
|
||||||
|
# ings in this Software without prior written authorization from the X Consor-
|
||||||
|
# tium.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# FSF changes to this file are in the public domain.
|
||||||
|
#
|
||||||
|
# Calling this script install-sh is preferred over install.sh, to prevent
|
||||||
|
# `make' implicit rules from creating a file called install from it
|
||||||
|
# when there is no Makefile.
|
||||||
|
#
|
||||||
|
# This script is compatible with the BSD install script, but was written
|
||||||
|
# from scratch. It can only install one file at a time, a restriction
|
||||||
|
# shared with many OS's install programs.
|
||||||
|
|
||||||
|
# set DOITPROG to echo to test this script
|
||||||
|
|
||||||
|
# Don't use :- since 4.3BSD and earlier shells don't like it.
|
||||||
|
doit="${DOITPROG-}"
|
||||||
|
|
||||||
|
# put in absolute paths if you don't have them in your path; or use env. vars.
|
||||||
|
|
||||||
|
mvprog="${MVPROG-mv}"
|
||||||
|
cpprog="${CPPROG-cp}"
|
||||||
|
chmodprog="${CHMODPROG-chmod}"
|
||||||
|
chownprog="${CHOWNPROG-chown}"
|
||||||
|
chgrpprog="${CHGRPPROG-chgrp}"
|
||||||
|
stripprog="${STRIPPROG-strip}"
|
||||||
|
rmprog="${RMPROG-rm}"
|
||||||
|
mkdirprog="${MKDIRPROG-mkdir}"
|
||||||
|
|
||||||
|
chmodcmd="$chmodprog 0755"
|
||||||
|
chowncmd=
|
||||||
|
chgrpcmd=
|
||||||
|
stripcmd=
|
||||||
|
rmcmd="$rmprog -f"
|
||||||
|
mvcmd="$mvprog"
|
||||||
|
src=
|
||||||
|
dst=
|
||||||
|
dir_arg=
|
||||||
|
dstarg=
|
||||||
|
no_target_directory=
|
||||||
|
|
||||||
|
usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
|
||||||
|
or: $0 [OPTION]... SRCFILES... DIRECTORY
|
||||||
|
or: $0 [OPTION]... -t DIRECTORY SRCFILES...
|
||||||
|
or: $0 [OPTION]... -d DIRECTORIES...
|
||||||
|
|
||||||
|
In the 1st form, copy SRCFILE to DSTFILE.
|
||||||
|
In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
|
||||||
|
In the 4th, create DIRECTORIES.
|
||||||
|
|
||||||
|
Options:
|
||||||
|
-c (ignored)
|
||||||
|
-d create directories instead of installing files.
|
||||||
|
-g GROUP $chgrpprog installed files to GROUP.
|
||||||
|
-m MODE $chmodprog installed files to MODE.
|
||||||
|
-o USER $chownprog installed files to USER.
|
||||||
|
-s $stripprog installed files.
|
||||||
|
-t DIRECTORY install into DIRECTORY.
|
||||||
|
-T report an error if DSTFILE is a directory.
|
||||||
|
--help display this help and exit.
|
||||||
|
--version display version info and exit.
|
||||||
|
|
||||||
|
Environment variables override the default commands:
|
||||||
|
CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG
|
||||||
|
"
|
||||||
|
|
||||||
|
while test -n "$1"; do
|
||||||
|
case $1 in
|
||||||
|
-c) shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-d) dir_arg=true
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-g) chgrpcmd="$chgrpprog $2"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
--help) echo "$usage"; exit 0;;
|
||||||
|
|
||||||
|
-m) chmodcmd="$chmodprog $2"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-o) chowncmd="$chownprog $2"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-s) stripcmd=$stripprog
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-t) dstarg=$2
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-T) no_target_directory=true
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
--version) echo "$0 $scriptversion"; exit 0;;
|
||||||
|
|
||||||
|
*) # When -d is used, all remaining arguments are directories to create.
|
||||||
|
# When -t is used, the destination is already specified.
|
||||||
|
test -n "$dir_arg$dstarg" && break
|
||||||
|
# Otherwise, the last argument is the destination. Remove it from $@.
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
if test -n "$dstarg"; then
|
||||||
|
# $@ is not empty: it contains at least $arg.
|
||||||
|
set fnord "$@" "$dstarg"
|
||||||
|
shift # fnord
|
||||||
|
fi
|
||||||
|
shift # arg
|
||||||
|
dstarg=$arg
|
||||||
|
done
|
||||||
|
break;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
if test -z "$1"; then
|
||||||
|
if test -z "$dir_arg"; then
|
||||||
|
echo "$0: no input file specified." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
# It's OK to call `install-sh -d' without argument.
|
||||||
|
# This can happen when creating conditional directories.
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
for src
|
||||||
|
do
|
||||||
|
# Protect names starting with `-'.
|
||||||
|
case $src in
|
||||||
|
-*) src=./$src ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if test -n "$dir_arg"; then
|
||||||
|
dst=$src
|
||||||
|
src=
|
||||||
|
|
||||||
|
if test -d "$dst"; then
|
||||||
|
mkdircmd=:
|
||||||
|
chmodcmd=
|
||||||
|
else
|
||||||
|
mkdircmd=$mkdirprog
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
# Waiting for this to be detected by the "$cpprog $src $dsttmp" command
|
||||||
|
# might cause directories to be created, which would be especially bad
|
||||||
|
# if $src (and thus $dsttmp) contains '*'.
|
||||||
|
if test ! -f "$src" && test ! -d "$src"; then
|
||||||
|
echo "$0: $src does not exist." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -z "$dstarg"; then
|
||||||
|
echo "$0: no destination specified." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
dst=$dstarg
|
||||||
|
# Protect names starting with `-'.
|
||||||
|
case $dst in
|
||||||
|
-*) dst=./$dst ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# If destination is a directory, append the input filename; won't work
|
||||||
|
# if double slashes aren't ignored.
|
||||||
|
if test -d "$dst"; then
|
||||||
|
if test -n "$no_target_directory"; then
|
||||||
|
echo "$0: $dstarg: Is a directory" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
dst=$dst/`basename "$src"`
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# This sed command emulates the dirname command.
|
||||||
|
dstdir=`echo "$dst" | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
|
||||||
|
|
||||||
|
# Make sure that the destination directory exists.
|
||||||
|
|
||||||
|
# Skip lots of stat calls in the usual case.
|
||||||
|
if test ! -d "$dstdir"; then
|
||||||
|
defaultIFS='
|
||||||
|
'
|
||||||
|
IFS="${IFS-$defaultIFS}"
|
||||||
|
|
||||||
|
oIFS=$IFS
|
||||||
|
# Some sh's can't handle IFS=/ for some reason.
|
||||||
|
IFS='%'
|
||||||
|
set - `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
|
||||||
|
IFS=$oIFS
|
||||||
|
|
||||||
|
pathcomp=
|
||||||
|
|
||||||
|
while test $# -ne 0 ; do
|
||||||
|
pathcomp=$pathcomp$1
|
||||||
|
shift
|
||||||
|
if test ! -d "$pathcomp"; then
|
||||||
|
$mkdirprog "$pathcomp"
|
||||||
|
# mkdir can fail with a `File exist' error in case several
|
||||||
|
# install-sh are creating the directory concurrently. This
|
||||||
|
# is OK.
|
||||||
|
test -d "$pathcomp" || exit
|
||||||
|
fi
|
||||||
|
pathcomp=$pathcomp/
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -n "$dir_arg"; then
|
||||||
|
$doit $mkdircmd "$dst" \
|
||||||
|
&& { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \
|
||||||
|
&& { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \
|
||||||
|
&& { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \
|
||||||
|
&& { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; }
|
||||||
|
|
||||||
|
else
|
||||||
|
dstfile=`basename "$dst"`
|
||||||
|
|
||||||
|
# Make a couple of temp file names in the proper directory.
|
||||||
|
dsttmp=$dstdir/_inst.$$_
|
||||||
|
rmtmp=$dstdir/_rm.$$_
|
||||||
|
|
||||||
|
# Trap to clean up those temp files at exit.
|
||||||
|
trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
|
||||||
|
trap '(exit $?); exit' 1 2 13 15
|
||||||
|
|
||||||
|
# Copy the file name to the temp name.
|
||||||
|
$doit $cpprog "$src" "$dsttmp" &&
|
||||||
|
|
||||||
|
# and set any options; do chmod last to preserve setuid bits.
|
||||||
|
#
|
||||||
|
# If any of these fail, we abort the whole thing. If we want to
|
||||||
|
# ignore errors from any of these, just make sure not to ignore
|
||||||
|
# errors from the above "$doit $cpprog $src $dsttmp" command.
|
||||||
|
#
|
||||||
|
{ test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \
|
||||||
|
&& { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \
|
||||||
|
&& { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \
|
||||||
|
&& { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } &&
|
||||||
|
|
||||||
|
# Now rename the file to the real destination.
|
||||||
|
{ $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \
|
||||||
|
|| {
|
||||||
|
# The rename failed, perhaps because mv can't rename something else
|
||||||
|
# to itself, or perhaps because mv is so ancient that it does not
|
||||||
|
# support -f.
|
||||||
|
|
||||||
|
# Now remove or move aside any old file at destination location.
|
||||||
|
# We try this two ways since rm can't unlink itself on some
|
||||||
|
# systems and the destination file might be busy for other
|
||||||
|
# reasons. In this case, the final cleanup might fail but the new
|
||||||
|
# file should still install successfully.
|
||||||
|
{
|
||||||
|
if test -f "$dstdir/$dstfile"; then
|
||||||
|
$doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \
|
||||||
|
|| $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \
|
||||||
|
|| {
|
||||||
|
echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2
|
||||||
|
(exit 1); exit
|
||||||
|
}
|
||||||
|
else
|
||||||
|
:
|
||||||
|
fi
|
||||||
|
} &&
|
||||||
|
|
||||||
|
# Now rename the file to the real destination.
|
||||||
|
$doit $mvcmd "$dsttmp" "$dstdir/$dstfile"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fi || { (exit 1); exit; }
|
||||||
|
done
|
||||||
|
|
||||||
|
# The final little trick to "correctly" pass the exit status to the exit trap.
|
||||||
|
{
|
||||||
|
(exit 0); exit
|
||||||
|
}
|
||||||
|
|
||||||
|
# Local variables:
|
||||||
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-end: "$"
|
||||||
|
# End:
|
1096
library/deps/libjpeg-turbo/install.txt
Normal file
153
library/deps/libjpeg-turbo/jaricom.c
Normal file
|
@ -0,0 +1,153 @@
|
||||||
|
/*
|
||||||
|
* jaricom.c
|
||||||
|
*
|
||||||
|
* Developed 1997-2009 by Guido Vollbeding.
|
||||||
|
* This file is part of the Independent JPEG Group's software.
|
||||||
|
* For conditions of distribution and use, see the accompanying README file.
|
||||||
|
*
|
||||||
|
* This file contains probability estimation tables for common use in
|
||||||
|
* arithmetic entropy encoding and decoding routines.
|
||||||
|
*
|
||||||
|
* This data represents Table D.2 in the JPEG spec (ISO/IEC IS 10918-1
|
||||||
|
* and CCITT Recommendation ITU-T T.81) and Table 24 in the JBIG spec
|
||||||
|
* (ISO/IEC IS 11544 and CCITT Recommendation ITU-T T.82).
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define JPEG_INTERNALS
|
||||||
|
#include "jinclude.h"
|
||||||
|
#include "jpeglib.h"
|
||||||
|
|
||||||
|
/* The following #define specifies the packing of the four components
|
||||||
|
* into the compact INT32 representation.
|
||||||
|
* Note that this formula must match the actual arithmetic encoder
|
||||||
|
* and decoder implementation. The implementation has to be changed
|
||||||
|
* if this formula is changed.
|
||||||
|
* The current organization is leaned on Markus Kuhn's JBIG
|
||||||
|
* implementation (jbig_tab.c).
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define V(i,a,b,c,d) (((INT32)a << 16) | ((INT32)c << 8) | ((INT32)d << 7) | b)
|
||||||
|
|
||||||
|
const INT32 jpeg_aritab[113+1] = {
|
||||||
|
/*
|
||||||
|
* Index, Qe_Value, Next_Index_LPS, Next_Index_MPS, Switch_MPS
|
||||||
|
*/
|
||||||
|
V( 0, 0x5a1d, 1, 1, 1 ),
|
||||||
|
V( 1, 0x2586, 14, 2, 0 ),
|
||||||
|
V( 2, 0x1114, 16, 3, 0 ),
|
||||||
|
V( 3, 0x080b, 18, 4, 0 ),
|
||||||
|
V( 4, 0x03d8, 20, 5, 0 ),
|
||||||
|
V( 5, 0x01da, 23, 6, 0 ),
|
||||||
|
V( 6, 0x00e5, 25, 7, 0 ),
|
||||||
|
V( 7, 0x006f, 28, 8, 0 ),
|
||||||
|
V( 8, 0x0036, 30, 9, 0 ),
|
||||||
|
V( 9, 0x001a, 33, 10, 0 ),
|
||||||
|
V( 10, 0x000d, 35, 11, 0 ),
|
||||||
|
V( 11, 0x0006, 9, 12, 0 ),
|
||||||
|
V( 12, 0x0003, 10, 13, 0 ),
|
||||||
|
V( 13, 0x0001, 12, 13, 0 ),
|
||||||
|
V( 14, 0x5a7f, 15, 15, 1 ),
|
||||||
|
V( 15, 0x3f25, 36, 16, 0 ),
|
||||||
|
V( 16, 0x2cf2, 38, 17, 0 ),
|
||||||
|
V( 17, 0x207c, 39, 18, 0 ),
|
||||||
|
V( 18, 0x17b9, 40, 19, 0 ),
|
||||||
|
V( 19, 0x1182, 42, 20, 0 ),
|
||||||
|
V( 20, 0x0cef, 43, 21, 0 ),
|
||||||
|
V( 21, 0x09a1, 45, 22, 0 ),
|
||||||
|
V( 22, 0x072f, 46, 23, 0 ),
|
||||||
|
V( 23, 0x055c, 48, 24, 0 ),
|
||||||
|
V( 24, 0x0406, 49, 25, 0 ),
|
||||||
|
V( 25, 0x0303, 51, 26, 0 ),
|
||||||
|
V( 26, 0x0240, 52, 27, 0 ),
|
||||||
|
V( 27, 0x01b1, 54, 28, 0 ),
|
||||||
|
V( 28, 0x0144, 56, 29, 0 ),
|
||||||
|
V( 29, 0x00f5, 57, 30, 0 ),
|
||||||
|
V( 30, 0x00b7, 59, 31, 0 ),
|
||||||
|
V( 31, 0x008a, 60, 32, 0 ),
|
||||||
|
V( 32, 0x0068, 62, 33, 0 ),
|
||||||
|
V( 33, 0x004e, 63, 34, 0 ),
|
||||||
|
V( 34, 0x003b, 32, 35, 0 ),
|
||||||
|
V( 35, 0x002c, 33, 9, 0 ),
|
||||||
|
V( 36, 0x5ae1, 37, 37, 1 ),
|
||||||
|
V( 37, 0x484c, 64, 38, 0 ),
|
||||||
|
V( 38, 0x3a0d, 65, 39, 0 ),
|
||||||
|
V( 39, 0x2ef1, 67, 40, 0 ),
|
||||||
|
V( 40, 0x261f, 68, 41, 0 ),
|
||||||
|
V( 41, 0x1f33, 69, 42, 0 ),
|
||||||
|
V( 42, 0x19a8, 70, 43, 0 ),
|
||||||
|
V( 43, 0x1518, 72, 44, 0 ),
|
||||||
|
V( 44, 0x1177, 73, 45, 0 ),
|
||||||
|
V( 45, 0x0e74, 74, 46, 0 ),
|
||||||
|
V( 46, 0x0bfb, 75, 47, 0 ),
|
||||||
|
V( 47, 0x09f8, 77, 48, 0 ),
|
||||||
|
V( 48, 0x0861, 78, 49, 0 ),
|
||||||
|
V( 49, 0x0706, 79, 50, 0 ),
|
||||||
|
V( 50, 0x05cd, 48, 51, 0 ),
|
||||||
|
V( 51, 0x04de, 50, 52, 0 ),
|
||||||
|
V( 52, 0x040f, 50, 53, 0 ),
|
||||||
|
V( 53, 0x0363, 51, 54, 0 ),
|
||||||
|
V( 54, 0x02d4, 52, 55, 0 ),
|
||||||
|
V( 55, 0x025c, 53, 56, 0 ),
|
||||||
|
V( 56, 0x01f8, 54, 57, 0 ),
|
||||||
|
V( 57, 0x01a4, 55, 58, 0 ),
|
||||||
|
V( 58, 0x0160, 56, 59, 0 ),
|
||||||
|
V( 59, 0x0125, 57, 60, 0 ),
|
||||||
|
V( 60, 0x00f6, 58, 61, 0 ),
|
||||||
|
V( 61, 0x00cb, 59, 62, 0 ),
|
||||||
|
V( 62, 0x00ab, 61, 63, 0 ),
|
||||||
|
V( 63, 0x008f, 61, 32, 0 ),
|
||||||
|
V( 64, 0x5b12, 65, 65, 1 ),
|
||||||
|
V( 65, 0x4d04, 80, 66, 0 ),
|
||||||
|
V( 66, 0x412c, 81, 67, 0 ),
|
||||||
|
V( 67, 0x37d8, 82, 68, 0 ),
|
||||||
|
V( 68, 0x2fe8, 83, 69, 0 ),
|
||||||
|
V( 69, 0x293c, 84, 70, 0 ),
|
||||||
|
V( 70, 0x2379, 86, 71, 0 ),
|
||||||
|
V( 71, 0x1edf, 87, 72, 0 ),
|
||||||
|
V( 72, 0x1aa9, 87, 73, 0 ),
|
||||||
|
V( 73, 0x174e, 72, 74, 0 ),
|
||||||
|
V( 74, 0x1424, 72, 75, 0 ),
|
||||||
|
V( 75, 0x119c, 74, 76, 0 ),
|
||||||
|
V( 76, 0x0f6b, 74, 77, 0 ),
|
||||||
|
V( 77, 0x0d51, 75, 78, 0 ),
|
||||||
|
V( 78, 0x0bb6, 77, 79, 0 ),
|
||||||
|
V( 79, 0x0a40, 77, 48, 0 ),
|
||||||
|
V( 80, 0x5832, 80, 81, 1 ),
|
||||||
|
V( 81, 0x4d1c, 88, 82, 0 ),
|
||||||
|
V( 82, 0x438e, 89, 83, 0 ),
|
||||||
|
V( 83, 0x3bdd, 90, 84, 0 ),
|
||||||
|
V( 84, 0x34ee, 91, 85, 0 ),
|
||||||
|
V( 85, 0x2eae, 92, 86, 0 ),
|
||||||
|
V( 86, 0x299a, 93, 87, 0 ),
|
||||||
|
V( 87, 0x2516, 86, 71, 0 ),
|
||||||
|
V( 88, 0x5570, 88, 89, 1 ),
|
||||||
|
V( 89, 0x4ca9, 95, 90, 0 ),
|
||||||
|
V( 90, 0x44d9, 96, 91, 0 ),
|
||||||
|
V( 91, 0x3e22, 97, 92, 0 ),
|
||||||
|
V( 92, 0x3824, 99, 93, 0 ),
|
||||||
|
V( 93, 0x32b4, 99, 94, 0 ),
|
||||||
|
V( 94, 0x2e17, 93, 86, 0 ),
|
||||||
|
V( 95, 0x56a8, 95, 96, 1 ),
|
||||||
|
V( 96, 0x4f46, 101, 97, 0 ),
|
||||||
|
V( 97, 0x47e5, 102, 98, 0 ),
|
||||||
|
V( 98, 0x41cf, 103, 99, 0 ),
|
||||||
|
V( 99, 0x3c3d, 104, 100, 0 ),
|
||||||
|
V( 100, 0x375e, 99, 93, 0 ),
|
||||||
|
V( 101, 0x5231, 105, 102, 0 ),
|
||||||
|
V( 102, 0x4c0f, 106, 103, 0 ),
|
||||||
|
V( 103, 0x4639, 107, 104, 0 ),
|
||||||
|
V( 104, 0x415e, 103, 99, 0 ),
|
||||||
|
V( 105, 0x5627, 105, 106, 1 ),
|
||||||
|
V( 106, 0x50e7, 108, 107, 0 ),
|
||||||
|
V( 107, 0x4b85, 109, 103, 0 ),
|
||||||
|
V( 108, 0x5597, 110, 109, 0 ),
|
||||||
|
V( 109, 0x504f, 111, 107, 0 ),
|
||||||
|
V( 110, 0x5a10, 110, 111, 1 ),
|
||||||
|
V( 111, 0x5522, 112, 109, 0 ),
|
||||||
|
V( 112, 0x59eb, 112, 111, 1 ),
|
||||||
|
/*
|
||||||
|
* This last entry is used for fixed probability estimate of 0.5
|
||||||
|
* as recommended in Section 10.3 Table 5 of ITU-T Rec. T.851.
|
||||||
|
*/
|
||||||
|
V( 113, 0x5a1d, 113, 113, 0 )
|
||||||
|
};
|
54
library/deps/libjpeg-turbo/java/CMakeLists.txt
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
set(JAR_FILE turbojpeg.jar)
|
||||||
|
set(MANIFEST_FILE ${CMAKE_CURRENT_SOURCE_DIR}/MANIFEST.MF)
|
||||||
|
|
||||||
|
set(JAVA_CLASSNAMES org/libjpegturbo/turbojpeg/TJ
|
||||||
|
org/libjpegturbo/turbojpeg/TJCompressor
|
||||||
|
org/libjpegturbo/turbojpeg/TJCustomFilter
|
||||||
|
org/libjpegturbo/turbojpeg/TJDecompressor
|
||||||
|
org/libjpegturbo/turbojpeg/TJScalingFactor
|
||||||
|
org/libjpegturbo/turbojpeg/TJTransform
|
||||||
|
org/libjpegturbo/turbojpeg/TJTransformer
|
||||||
|
TJUnitTest
|
||||||
|
TJExample)
|
||||||
|
|
||||||
|
if(MSVC_IDE)
|
||||||
|
set(OBJDIR "${CMAKE_CURRENT_BINARY_DIR}/$(OutDir)")
|
||||||
|
else()
|
||||||
|
set(OBJDIR ${CMAKE_CURRENT_BINARY_DIR})
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(TURBOJPEG_DLL_NAME "turbojpeg")
|
||||||
|
if(MINGW)
|
||||||
|
set(TURBOJPEG_DLL_NAME "libturbojpeg")
|
||||||
|
endif()
|
||||||
|
configure_file(org/libjpegturbo/turbojpeg/TJLoader.java.in
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/org/libjpegturbo/turbojpeg/TJLoader.java)
|
||||||
|
|
||||||
|
set(JAVA_SOURCES "")
|
||||||
|
set(JAVA_CLASSES "")
|
||||||
|
set(JAVA_CLASSES_FULL "")
|
||||||
|
foreach(class ${JAVA_CLASSNAMES})
|
||||||
|
set(JAVA_SOURCES ${JAVA_SOURCES} ${CMAKE_CURRENT_SOURCE_DIR}/${class}.java)
|
||||||
|
set(JAVA_CLASSES ${JAVA_CLASSES} ${class}.class)
|
||||||
|
set(JAVA_CLASSES_FULL ${JAVA_CLASSES_FULL} ${OBJDIR}/${class}.class)
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
set(JAVA_SOURCES ${JAVA_SOURCES}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/org/libjpegturbo/turbojpeg/TJLoader.java)
|
||||||
|
set(JAVA_CLASSES ${JAVA_CLASSES}
|
||||||
|
org/libjpegturbo/turbojpeg/TJLoader.class)
|
||||||
|
set(JAVA_CLASSES_FULL ${JAVA_CLASSES_FULL}
|
||||||
|
${OBJDIR}/org/libjpegturbo/turbojpeg/TJLoader.class)
|
||||||
|
|
||||||
|
string(REGEX REPLACE " " ";" JAVACFLAGS "${JAVACFLAGS}")
|
||||||
|
add_custom_command(OUTPUT ${JAVA_CLASSES_FULL} DEPENDS ${JAVA_SOURCES}
|
||||||
|
COMMAND ${JAVA_COMPILE} ARGS ${JAVACFLAGS} -d ${OBJDIR} ${JAVA_SOURCES})
|
||||||
|
|
||||||
|
add_custom_command(OUTPUT ${JAR_FILE} DEPENDS ${JAVA_CLASSES_FULL}
|
||||||
|
${MANIFEST_FILE}
|
||||||
|
COMMAND ${JAVA_ARCHIVE} cfm ${JAR_FILE} ${MANIFEST_FILE} ${JAVA_CLASSES}
|
||||||
|
WORKING_DIRECTORY ${OBJDIR})
|
||||||
|
|
||||||
|
add_custom_target(java ALL DEPENDS ${JAR_FILE})
|
||||||
|
|
||||||
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${JAR_FILE} DESTINATION classes)
|
2
library/deps/libjpeg-turbo/java/MANIFEST.MF
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
Manifest-Version: 1.0
|
||||||
|
Main-Class: TJExample
|
63
library/deps/libjpeg-turbo/java/Makefile.am
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
JAVAROOT = .
|
||||||
|
|
||||||
|
JAVASOURCES = org/libjpegturbo/turbojpeg/TJ.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJCompressor.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJCustomFilter.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJDecompressor.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJLoader.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJScalingFactor.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJTransform.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJTransformer.java \
|
||||||
|
TJExample.java \
|
||||||
|
TJUnitTest.java
|
||||||
|
|
||||||
|
JNIHEADERS = org_libjpegturbo_turbojpeg_TJ.h \
|
||||||
|
org_libjpegturbo_turbojpeg_TJCompressor.h \
|
||||||
|
org_libjpegturbo_turbojpeg_TJDecompressor.h \
|
||||||
|
org_libjpegturbo_turbojpeg_TJTransformer.h
|
||||||
|
|
||||||
|
if WITH_JAVA
|
||||||
|
|
||||||
|
dist_noinst_JAVA = ${JAVASOURCES}
|
||||||
|
|
||||||
|
JAVA_CLASSES = org/libjpegturbo/turbojpeg/TJ.class \
|
||||||
|
org/libjpegturbo/turbojpeg/TJCompressor.class \
|
||||||
|
org/libjpegturbo/turbojpeg/TJCustomFilter.class \
|
||||||
|
org/libjpegturbo/turbojpeg/TJDecompressor.class \
|
||||||
|
org/libjpegturbo/turbojpeg/TJLoader.class \
|
||||||
|
org/libjpegturbo/turbojpeg/TJScalingFactor.class \
|
||||||
|
org/libjpegturbo/turbojpeg/TJTransform.class \
|
||||||
|
org/libjpegturbo/turbojpeg/TJTransformer.class \
|
||||||
|
TJExample.class \
|
||||||
|
TJUnitTest.class
|
||||||
|
|
||||||
|
all: all-am turbojpeg.jar
|
||||||
|
|
||||||
|
turbojpeg.jar: $(JAVA_CLASSES) ${srcdir}/MANIFEST.MF
|
||||||
|
$(JAR) cfm turbojpeg.jar ${srcdir}/MANIFEST.MF $(JAVA_CLASSES)
|
||||||
|
|
||||||
|
clean-local:
|
||||||
|
rm -f turbojpeg.jar
|
||||||
|
|
||||||
|
install-exec-local: turbojpeg.jar
|
||||||
|
mkdir -p $(DESTDIR)/$(prefix)/classes
|
||||||
|
$(INSTALL) -m 644 turbojpeg.jar $(DESTDIR)/$(prefix)/classes/
|
||||||
|
|
||||||
|
uninstall-local:
|
||||||
|
rm -f $(DESTDIR)/$(prefix)/classes/turbojpeg.jar
|
||||||
|
if [ -d $(DESTDIR)/$(prefix)/classes ]; then rmdir $(DESTDIR)/$(prefix)/classes; fi
|
||||||
|
|
||||||
|
headers: all
|
||||||
|
javah -d ${srcdir} org.libjpegturbo.turbojpeg.TJ; \
|
||||||
|
javah -d ${srcdir} org.libjpegturbo.turbojpeg.TJCompressor; \
|
||||||
|
javah -d ${srcdir} org.libjpegturbo.turbojpeg.TJDecompressor; \
|
||||||
|
javah -d ${srcdir} org.libjpegturbo.turbojpeg.TJTransformer
|
||||||
|
|
||||||
|
docs: all
|
||||||
|
mkdir -p ${srcdir}/doc; \
|
||||||
|
javadoc -d ${srcdir}/doc -sourcepath ${srcdir} org.libjpegturbo.turbojpeg
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
EXTRA_DIST = MANIFEST.MF ${JAVASOURCES} ${JNIHEADERS} doc CMakeLists.txt \
|
||||||
|
org/libjpegturbo/turbojpeg/TJLoader.java.in
|
438
library/deps/libjpeg-turbo/java/Makefile.in
Normal file
|
@ -0,0 +1,438 @@
|
||||||
|
# Makefile.in generated by automake 1.9.2 from Makefile.am.
|
||||||
|
# @configure_input@
|
||||||
|
|
||||||
|
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||||
|
# 2003, 2004 Free Software Foundation, Inc.
|
||||||
|
# This Makefile.in is free software; the Free Software Foundation
|
||||||
|
# gives unlimited permission to copy and/or distribute it,
|
||||||
|
# with or without modifications, as long as this notice is preserved.
|
||||||
|
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||||
|
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
# PARTICULAR PURPOSE.
|
||||||
|
|
||||||
|
@SET_MAKE@
|
||||||
|
srcdir = @srcdir@
|
||||||
|
top_srcdir = @top_srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
pkgdatadir = $(datadir)/@PACKAGE@
|
||||||
|
pkglibdir = $(libdir)/@PACKAGE@
|
||||||
|
pkgincludedir = $(includedir)/@PACKAGE@
|
||||||
|
top_builddir = ..
|
||||||
|
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||||
|
INSTALL = @INSTALL@
|
||||||
|
install_sh_DATA = $(install_sh) -c -m 644
|
||||||
|
install_sh_PROGRAM = $(install_sh) -c
|
||||||
|
install_sh_SCRIPT = $(install_sh) -c
|
||||||
|
INSTALL_HEADER = $(INSTALL_DATA)
|
||||||
|
transform = $(program_transform_name)
|
||||||
|
NORMAL_INSTALL = :
|
||||||
|
PRE_INSTALL = :
|
||||||
|
POST_INSTALL = :
|
||||||
|
NORMAL_UNINSTALL = :
|
||||||
|
PRE_UNINSTALL = :
|
||||||
|
POST_UNINSTALL = :
|
||||||
|
build_triplet = @build@
|
||||||
|
host_triplet = @host@
|
||||||
|
subdir = java
|
||||||
|
DIST_COMMON = README $(am__dist_noinst_JAVA_DIST) \
|
||||||
|
$(srcdir)/Makefile.am $(srcdir)/Makefile.in
|
||||||
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||||
|
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
|
||||||
|
$(top_srcdir)/configure.ac
|
||||||
|
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||||
|
$(ACLOCAL_M4)
|
||||||
|
mkinstalldirs = $(install_sh) -d
|
||||||
|
CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/jconfig.h
|
||||||
|
CONFIG_CLEAN_FILES =
|
||||||
|
SOURCES =
|
||||||
|
DIST_SOURCES =
|
||||||
|
am__dist_noinst_JAVA_DIST = org/libjpegturbo/turbojpeg/TJ.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJCompressor.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJCustomFilter.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJDecompressor.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJLoader.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJScalingFactor.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJTransform.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJTransformer.java TJExample.java \
|
||||||
|
TJUnitTest.java
|
||||||
|
CLASSPATH_ENV = CLASSPATH=$(JAVAROOT):$(srcdir)/$(JAVAROOT):$$CLASSPATH
|
||||||
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
ACLOCAL = @ACLOCAL@
|
||||||
|
AMDEP_FALSE = @AMDEP_FALSE@
|
||||||
|
AMDEP_TRUE = @AMDEP_TRUE@
|
||||||
|
AMTAR = @AMTAR@
|
||||||
|
AR = @AR@
|
||||||
|
AUTOCONF = @AUTOCONF@
|
||||||
|
AUTOHEADER = @AUTOHEADER@
|
||||||
|
AUTOMAKE = @AUTOMAKE@
|
||||||
|
AWK = @AWK@
|
||||||
|
BUILD = @BUILD@
|
||||||
|
CC = @CC@
|
||||||
|
CCAS = @CCAS@
|
||||||
|
CCASFLAGS = @CCASFLAGS@
|
||||||
|
CCDEPMODE = @CCDEPMODE@
|
||||||
|
CFLAGS = @CFLAGS@
|
||||||
|
CPP = @CPP@
|
||||||
|
CPPFLAGS = @CPPFLAGS@
|
||||||
|
CXX = @CXX@
|
||||||
|
CXXCPP = @CXXCPP@
|
||||||
|
CXXDEPMODE = @CXXDEPMODE@
|
||||||
|
CXXFLAGS = @CXXFLAGS@
|
||||||
|
CYGPATH_W = @CYGPATH_W@
|
||||||
|
DEBARCH = @DEBARCH@
|
||||||
|
DEFS = @DEFS@
|
||||||
|
DEPDIR = @DEPDIR@
|
||||||
|
ECHO = @ECHO@
|
||||||
|
ECHO_C = @ECHO_C@
|
||||||
|
ECHO_N = @ECHO_N@
|
||||||
|
ECHO_T = @ECHO_T@
|
||||||
|
EGREP = @EGREP@
|
||||||
|
EXEEXT = @EXEEXT@
|
||||||
|
F77 = @F77@
|
||||||
|
FFLAGS = @FFLAGS@
|
||||||
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||||
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||||
|
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||||
|
JAR = @JAR@
|
||||||
|
JAVA = @JAVA@
|
||||||
|
JAVAC = @JAVAC@
|
||||||
|
JAVACFLAGS = @JAVACFLAGS@
|
||||||
|
JAVA_RPM_CONTENTS_1 = @JAVA_RPM_CONTENTS_1@
|
||||||
|
JAVA_RPM_CONTENTS_2 = @JAVA_RPM_CONTENTS_2@
|
||||||
|
JNI_CFLAGS = @JNI_CFLAGS@
|
||||||
|
JPEG_LIB_VERSION = @JPEG_LIB_VERSION@
|
||||||
|
JPEG_LIB_VERSION_DECIMAL = @JPEG_LIB_VERSION_DECIMAL@
|
||||||
|
LDFLAGS = @LDFLAGS@
|
||||||
|
LIBOBJS = @LIBOBJS@
|
||||||
|
LIBS = @LIBS@
|
||||||
|
LIBTOOL = @LIBTOOL@
|
||||||
|
LN_S = @LN_S@
|
||||||
|
LTLIBOBJS = @LTLIBOBJS@
|
||||||
|
MAKEINFO = @MAKEINFO@
|
||||||
|
NAFLAGS = @NAFLAGS@
|
||||||
|
NASM = @NASM@
|
||||||
|
OBJEXT = @OBJEXT@
|
||||||
|
PACKAGE = @PACKAGE@
|
||||||
|
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||||
|
PACKAGE_NAME = @PACKAGE_NAME@
|
||||||
|
PACKAGE_STRING = @PACKAGE_STRING@
|
||||||
|
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||||
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||||
|
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||||
|
RANLIB = @RANLIB@
|
||||||
|
RPMARCH = @RPMARCH@
|
||||||
|
RPM_CONFIG_ARGS = @RPM_CONFIG_ARGS@
|
||||||
|
SET_MAKE = @SET_MAKE@
|
||||||
|
SHELL = @SHELL@
|
||||||
|
SIMD_ARM_FALSE = @SIMD_ARM_FALSE@
|
||||||
|
SIMD_ARM_TRUE = @SIMD_ARM_TRUE@
|
||||||
|
SIMD_I386_FALSE = @SIMD_I386_FALSE@
|
||||||
|
SIMD_I386_TRUE = @SIMD_I386_TRUE@
|
||||||
|
SIMD_X86_64_FALSE = @SIMD_X86_64_FALSE@
|
||||||
|
SIMD_X86_64_TRUE = @SIMD_X86_64_TRUE@
|
||||||
|
SO_MAJOR_VERSION = @SO_MAJOR_VERSION@
|
||||||
|
SO_MINOR_VERSION = @SO_MINOR_VERSION@
|
||||||
|
STRIP = @STRIP@
|
||||||
|
VERSION = @VERSION@
|
||||||
|
VERSION_SCRIPT_FALSE = @VERSION_SCRIPT_FALSE@
|
||||||
|
VERSION_SCRIPT_FLAG = @VERSION_SCRIPT_FLAG@
|
||||||
|
VERSION_SCRIPT_TRUE = @VERSION_SCRIPT_TRUE@
|
||||||
|
WITH_ARITH_DEC_FALSE = @WITH_ARITH_DEC_FALSE@
|
||||||
|
WITH_ARITH_DEC_TRUE = @WITH_ARITH_DEC_TRUE@
|
||||||
|
WITH_ARITH_ENC_FALSE = @WITH_ARITH_ENC_FALSE@
|
||||||
|
WITH_ARITH_ENC_TRUE = @WITH_ARITH_ENC_TRUE@
|
||||||
|
WITH_ARITH_FALSE = @WITH_ARITH_FALSE@
|
||||||
|
WITH_ARITH_TRUE = @WITH_ARITH_TRUE@
|
||||||
|
WITH_JAVA = @WITH_JAVA@
|
||||||
|
WITH_JAVA_FALSE = @WITH_JAVA_FALSE@
|
||||||
|
WITH_JAVA_TRUE = @WITH_JAVA_TRUE@
|
||||||
|
WITH_SIMD_FALSE = @WITH_SIMD_FALSE@
|
||||||
|
WITH_SIMD_TRUE = @WITH_SIMD_TRUE@
|
||||||
|
WITH_SSE_FLOAT_DCT_FALSE = @WITH_SSE_FLOAT_DCT_FALSE@
|
||||||
|
WITH_SSE_FLOAT_DCT_TRUE = @WITH_SSE_FLOAT_DCT_TRUE@
|
||||||
|
X86_64_FALSE = @X86_64_FALSE@
|
||||||
|
X86_64_TRUE = @X86_64_TRUE@
|
||||||
|
ac_ct_AR = @ac_ct_AR@
|
||||||
|
ac_ct_CC = @ac_ct_CC@
|
||||||
|
ac_ct_CXX = @ac_ct_CXX@
|
||||||
|
ac_ct_F77 = @ac_ct_F77@
|
||||||
|
ac_ct_RANLIB = @ac_ct_RANLIB@
|
||||||
|
ac_ct_STRIP = @ac_ct_STRIP@
|
||||||
|
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||||
|
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||||
|
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
|
||||||
|
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
|
||||||
|
am__include = @am__include@
|
||||||
|
am__leading_dot = @am__leading_dot@
|
||||||
|
am__quote = @am__quote@
|
||||||
|
am__tar = @am__tar@
|
||||||
|
am__untar = @am__untar@
|
||||||
|
bindir = @bindir@
|
||||||
|
build = @build@
|
||||||
|
build_alias = @build_alias@
|
||||||
|
build_cpu = @build_cpu@
|
||||||
|
build_os = @build_os@
|
||||||
|
build_vendor = @build_vendor@
|
||||||
|
datadir = @datadir@
|
||||||
|
exec_prefix = @exec_prefix@
|
||||||
|
host = @host@
|
||||||
|
host_alias = @host_alias@
|
||||||
|
host_cpu = @host_cpu@
|
||||||
|
host_os = @host_os@
|
||||||
|
host_vendor = @host_vendor@
|
||||||
|
includedir = @includedir@
|
||||||
|
infodir = @infodir@
|
||||||
|
install_sh = @install_sh@
|
||||||
|
libdir = @libdir@
|
||||||
|
libexecdir = @libexecdir@
|
||||||
|
localstatedir = @localstatedir@
|
||||||
|
mandir = @mandir@
|
||||||
|
mkdir_p = @mkdir_p@
|
||||||
|
oldincludedir = @oldincludedir@
|
||||||
|
prefix = @prefix@
|
||||||
|
program_transform_name = @program_transform_name@
|
||||||
|
sbindir = @sbindir@
|
||||||
|
sharedstatedir = @sharedstatedir@
|
||||||
|
sysconfdir = @sysconfdir@
|
||||||
|
target_alias = @target_alias@
|
||||||
|
JAVAROOT = .
|
||||||
|
JAVASOURCES = org/libjpegturbo/turbojpeg/TJ.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJCompressor.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJCustomFilter.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJDecompressor.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJLoader.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJScalingFactor.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJTransform.java \
|
||||||
|
org/libjpegturbo/turbojpeg/TJTransformer.java \
|
||||||
|
TJExample.java \
|
||||||
|
TJUnitTest.java
|
||||||
|
|
||||||
|
JNIHEADERS = org_libjpegturbo_turbojpeg_TJ.h \
|
||||||
|
org_libjpegturbo_turbojpeg_TJCompressor.h \
|
||||||
|
org_libjpegturbo_turbojpeg_TJDecompressor.h \
|
||||||
|
org_libjpegturbo_turbojpeg_TJTransformer.h
|
||||||
|
|
||||||
|
@WITH_JAVA_TRUE@dist_noinst_JAVA = ${JAVASOURCES}
|
||||||
|
@WITH_JAVA_TRUE@JAVA_CLASSES = org/libjpegturbo/turbojpeg/TJ.class \
|
||||||
|
@WITH_JAVA_TRUE@ org/libjpegturbo/turbojpeg/TJCompressor.class \
|
||||||
|
@WITH_JAVA_TRUE@ org/libjpegturbo/turbojpeg/TJCustomFilter.class \
|
||||||
|
@WITH_JAVA_TRUE@ org/libjpegturbo/turbojpeg/TJDecompressor.class \
|
||||||
|
@WITH_JAVA_TRUE@ org/libjpegturbo/turbojpeg/TJLoader.class \
|
||||||
|
@WITH_JAVA_TRUE@ org/libjpegturbo/turbojpeg/TJScalingFactor.class \
|
||||||
|
@WITH_JAVA_TRUE@ org/libjpegturbo/turbojpeg/TJTransform.class \
|
||||||
|
@WITH_JAVA_TRUE@ org/libjpegturbo/turbojpeg/TJTransformer.class \
|
||||||
|
@WITH_JAVA_TRUE@ TJExample.class \
|
||||||
|
@WITH_JAVA_TRUE@ TJUnitTest.class
|
||||||
|
|
||||||
|
EXTRA_DIST = MANIFEST.MF ${JAVASOURCES} ${JNIHEADERS} doc CMakeLists.txt \
|
||||||
|
org/libjpegturbo/turbojpeg/TJLoader.java.in
|
||||||
|
|
||||||
|
all: all-am
|
||||||
|
|
||||||
|
.SUFFIXES:
|
||||||
|
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||||
|
@for dep in $?; do \
|
||||||
|
case '$(am__configure_deps)' in \
|
||||||
|
*$$dep*) \
|
||||||
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
|
||||||
|
&& exit 0; \
|
||||||
|
exit 1;; \
|
||||||
|
esac; \
|
||||||
|
done; \
|
||||||
|
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign java/Makefile'; \
|
||||||
|
cd $(top_srcdir) && \
|
||||||
|
$(AUTOMAKE) --foreign java/Makefile
|
||||||
|
.PRECIOUS: Makefile
|
||||||
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||||
|
@case '$?' in \
|
||||||
|
*config.status*) \
|
||||||
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
||||||
|
*) \
|
||||||
|
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
||||||
|
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
||||||
|
esac;
|
||||||
|
|
||||||
|
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||||
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||||
|
|
||||||
|
$(top_srcdir)/configure: $(am__configure_deps)
|
||||||
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||||
|
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
||||||
|
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
||||||
|
|
||||||
|
mostlyclean-libtool:
|
||||||
|
-rm -f *.lo
|
||||||
|
|
||||||
|
clean-libtool:
|
||||||
|
-rm -rf .libs _libs
|
||||||
|
|
||||||
|
distclean-libtool:
|
||||||
|
-rm -f libtool
|
||||||
|
uninstall-info-am:
|
||||||
|
|
||||||
|
classdist_noinst.stamp: $(dist_noinst_JAVA)
|
||||||
|
@if test -n "$?"; then \
|
||||||
|
echo '$(CLASSPATH_ENV) $(JAVAC) -d $(JAVAROOT) $(AM_JAVACFLAGS) $(JAVACFLAGS) $?' ; \
|
||||||
|
$(CLASSPATH_ENV) $(JAVAC) -d $(JAVAROOT) \
|
||||||
|
$(AM_JAVACFLAGS) $(JAVACFLAGS) $?; \
|
||||||
|
else :; fi
|
||||||
|
echo timestamp > classdist_noinst.stamp
|
||||||
|
|
||||||
|
clean-dist_noinstJAVA:
|
||||||
|
-rm -f *.class classdist_noinst.stamp
|
||||||
|
tags: TAGS
|
||||||
|
TAGS:
|
||||||
|
|
||||||
|
ctags: CTAGS
|
||||||
|
CTAGS:
|
||||||
|
|
||||||
|
|
||||||
|
distdir: $(DISTFILES)
|
||||||
|
$(mkdir_p) $(distdir)/org/libjpegturbo/turbojpeg
|
||||||
|
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||||
|
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||||
|
list='$(DISTFILES)'; for file in $$list; do \
|
||||||
|
case $$file in \
|
||||||
|
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||||
|
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||||
|
esac; \
|
||||||
|
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||||
|
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||||
|
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||||
|
dir="/$$dir"; \
|
||||||
|
$(mkdir_p) "$(distdir)$$dir"; \
|
||||||
|
else \
|
||||||
|
dir=''; \
|
||||||
|
fi; \
|
||||||
|
if test -d $$d/$$file; then \
|
||||||
|
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||||
|
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||||
|
fi; \
|
||||||
|
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||||
|
else \
|
||||||
|
test -f $(distdir)/$$file \
|
||||||
|
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||||
|
|| exit 1; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
check-am: all-am
|
||||||
|
check: check-am
|
||||||
|
all-am: Makefile classdist_noinst.stamp
|
||||||
|
installdirs:
|
||||||
|
install: install-am
|
||||||
|
install-exec: install-exec-am
|
||||||
|
install-data: install-data-am
|
||||||
|
uninstall: uninstall-am
|
||||||
|
|
||||||
|
install-am: all-am
|
||||||
|
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||||
|
|
||||||
|
installcheck: installcheck-am
|
||||||
|
install-strip:
|
||||||
|
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||||
|
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||||
|
`test -z '$(STRIP)' || \
|
||||||
|
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||||
|
mostlyclean-generic:
|
||||||
|
|
||||||
|
clean-generic:
|
||||||
|
|
||||||
|
distclean-generic:
|
||||||
|
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||||
|
|
||||||
|
maintainer-clean-generic:
|
||||||
|
@echo "This command is intended for maintainers to use"
|
||||||
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
|
@WITH_JAVA_FALSE@uninstall-local:
|
||||||
|
@WITH_JAVA_FALSE@install-exec-local:
|
||||||
|
@WITH_JAVA_FALSE@clean-local:
|
||||||
|
clean: clean-am
|
||||||
|
|
||||||
|
clean-am: clean-dist_noinstJAVA clean-generic clean-libtool \
|
||||||
|
clean-local mostlyclean-am
|
||||||
|
|
||||||
|
distclean: distclean-am
|
||||||
|
-rm -f Makefile
|
||||||
|
distclean-am: clean-am distclean-generic distclean-libtool
|
||||||
|
|
||||||
|
dvi: dvi-am
|
||||||
|
|
||||||
|
dvi-am:
|
||||||
|
|
||||||
|
html: html-am
|
||||||
|
|
||||||
|
info: info-am
|
||||||
|
|
||||||
|
info-am:
|
||||||
|
|
||||||
|
install-data-am:
|
||||||
|
|
||||||
|
install-exec-am: install-exec-local
|
||||||
|
|
||||||
|
install-info: install-info-am
|
||||||
|
|
||||||
|
install-man:
|
||||||
|
|
||||||
|
installcheck-am:
|
||||||
|
|
||||||
|
maintainer-clean: maintainer-clean-am
|
||||||
|
-rm -f Makefile
|
||||||
|
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||||
|
|
||||||
|
mostlyclean: mostlyclean-am
|
||||||
|
|
||||||
|
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
|
||||||
|
|
||||||
|
pdf: pdf-am
|
||||||
|
|
||||||
|
pdf-am:
|
||||||
|
|
||||||
|
ps: ps-am
|
||||||
|
|
||||||
|
ps-am:
|
||||||
|
|
||||||
|
uninstall-am: uninstall-info-am uninstall-local
|
||||||
|
|
||||||
|
.PHONY: all all-am check check-am clean clean-dist_noinstJAVA \
|
||||||
|
clean-generic clean-libtool clean-local distclean \
|
||||||
|
distclean-generic distclean-libtool distdir dvi dvi-am html \
|
||||||
|
html-am info info-am install install-am install-data \
|
||||||
|
install-data-am install-exec install-exec-am \
|
||||||
|
install-exec-local install-info install-info-am install-man \
|
||||||
|
install-strip installcheck installcheck-am installdirs \
|
||||||
|
maintainer-clean maintainer-clean-generic mostlyclean \
|
||||||
|
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
||||||
|
uninstall uninstall-am uninstall-info-am uninstall-local
|
||||||
|
|
||||||
|
|
||||||
|
@WITH_JAVA_TRUE@all: all-am turbojpeg.jar
|
||||||
|
|
||||||
|
@WITH_JAVA_TRUE@turbojpeg.jar: $(JAVA_CLASSES) ${srcdir}/MANIFEST.MF
|
||||||
|
@WITH_JAVA_TRUE@ $(JAR) cfm turbojpeg.jar ${srcdir}/MANIFEST.MF $(JAVA_CLASSES)
|
||||||
|
|
||||||
|
@WITH_JAVA_TRUE@clean-local:
|
||||||
|
@WITH_JAVA_TRUE@ rm -f turbojpeg.jar
|
||||||
|
|
||||||
|
@WITH_JAVA_TRUE@install-exec-local: turbojpeg.jar
|
||||||
|
@WITH_JAVA_TRUE@ mkdir -p $(DESTDIR)/$(prefix)/classes
|
||||||
|
@WITH_JAVA_TRUE@ $(INSTALL) -m 644 turbojpeg.jar $(DESTDIR)/$(prefix)/classes/
|
||||||
|
|
||||||
|
@WITH_JAVA_TRUE@uninstall-local:
|
||||||
|
@WITH_JAVA_TRUE@ rm -f $(DESTDIR)/$(prefix)/classes/turbojpeg.jar
|
||||||
|
@WITH_JAVA_TRUE@ if [ -d $(DESTDIR)/$(prefix)/classes ]; then rmdir $(DESTDIR)/$(prefix)/classes; fi
|
||||||
|
|
||||||
|
@WITH_JAVA_TRUE@headers: all
|
||||||
|
@WITH_JAVA_TRUE@ javah -d ${srcdir} org.libjpegturbo.turbojpeg.TJ; \
|
||||||
|
@WITH_JAVA_TRUE@ javah -d ${srcdir} org.libjpegturbo.turbojpeg.TJCompressor; \
|
||||||
|
@WITH_JAVA_TRUE@ javah -d ${srcdir} org.libjpegturbo.turbojpeg.TJDecompressor; \
|
||||||
|
@WITH_JAVA_TRUE@ javah -d ${srcdir} org.libjpegturbo.turbojpeg.TJTransformer
|
||||||
|
|
||||||
|
@WITH_JAVA_TRUE@docs: all
|
||||||
|
@WITH_JAVA_TRUE@ mkdir -p ${srcdir}/doc; \
|
||||||
|
@WITH_JAVA_TRUE@ javadoc -d ${srcdir}/doc -sourcepath ${srcdir} org.libjpegturbo.turbojpeg
|
||||||
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
|
.NOEXPORT:
|
55
library/deps/libjpeg-turbo/java/README
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
TurboJPEG/OSS Java Wrapper
|
||||||
|
==========================
|
||||||
|
|
||||||
|
TurboJPEG/OSS can optionally be built with a Java Native Interface wrapper,
|
||||||
|
which allows the TurboJPEG/OSS dynamic library to be loaded and used directly
|
||||||
|
from Java applications. The Java front end for this is defined in several
|
||||||
|
classes located under org/libjpegturbo/turbojpeg. The source code for these
|
||||||
|
Java classes is licensed under a BSD-style license, so the files can be
|
||||||
|
incorporated directly into both open source and proprietary projects without
|
||||||
|
restriction. A Java archive (JAR) file containing these classes is also
|
||||||
|
shipped with the "official" distribution packages of libjpeg-turbo.
|
||||||
|
|
||||||
|
TJExample.java, which should also be located in the same directory as this
|
||||||
|
README file, demonstrates how to use the TurboJPEG/OSS Java front end to
|
||||||
|
compress and decompress JPEG images in memory.
|
||||||
|
|
||||||
|
|
||||||
|
Performance Pitfalls
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
The TurboJPEG Java front end defines several convenience methods that can
|
||||||
|
allocate image buffers or instantiate classes to hold the result of compress,
|
||||||
|
decompress, or transform operations. However, if you use these methods, then
|
||||||
|
be mindful of the amount of new data you are creating on the heap. It may be
|
||||||
|
necessary to manually invoke the garbage collector to prevent heap exhaustion
|
||||||
|
or to prevent performance degradation. Background garbage collection can kill
|
||||||
|
performance, particularly in a multi-threaded environment (Java pauses all
|
||||||
|
threads when the GC runs.)
|
||||||
|
|
||||||
|
The Java front end always gives you the option of pre-allocating your own
|
||||||
|
source and destination buffers, which allows you to re-use these buffers for
|
||||||
|
compressing/decompressing multiple images. If the image sequence you are
|
||||||
|
compressing or decompressing consists of images of the same size, then
|
||||||
|
pre-allocating the buffers is recommended.
|
||||||
|
|
||||||
|
|
||||||
|
Note for OS X users
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
/usr/lib, the directory under which libturbojpeg.dylib is installed on Mac
|
||||||
|
systems, is not part of the normal Java library path. Thus, when running a
|
||||||
|
Java application that uses TurboJPEG/OSS on Mac systems, you will need to pass
|
||||||
|
an argument of -Djava.library.path=/usr/lib to java.
|
||||||
|
|
||||||
|
|
||||||
|
Note for Solaris users
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
/opt/libjpeg-turbo/lib, the directory under which libturbojpeg.so is installed
|
||||||
|
on Solaris systems, is not part of the normal Java library path. Thus, when
|
||||||
|
running a Java application that uses TurboJPEG/OSS on Solaris systems, you will
|
||||||
|
need to pass an argument of -Djava.library.path=/opt/libjpeg-turbo/lib to java.
|
||||||
|
If using a 64-bit data model, then instead pass an argument of
|
||||||
|
-Djava.library.path=/opt/libjpeg-turbo/lib/amd64 to use the 64-bit version of
|
||||||
|
libturbojpeg.so.
|
320
library/deps/libjpeg-turbo/java/TJExample.java
Normal file
|
@ -0,0 +1,320 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C)2011 D. R. Commander. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* - Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
* - 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.
|
||||||
|
* - Neither the name of the libjpeg-turbo Project nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from this
|
||||||
|
* software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* 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 HOLDERS 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This program demonstrates how to compress and decompress JPEG files using
|
||||||
|
* the TurboJPEG JNI wrapper
|
||||||
|
*/
|
||||||
|
|
||||||
|
import java.io.*;
|
||||||
|
import java.awt.*;
|
||||||
|
import java.awt.image.*;
|
||||||
|
import java.nio.*;
|
||||||
|
import javax.imageio.*;
|
||||||
|
import javax.swing.*;
|
||||||
|
import org.libjpegturbo.turbojpeg.*;
|
||||||
|
|
||||||
|
public class TJExample implements TJCustomFilter {
|
||||||
|
|
||||||
|
public static final String classname = new TJExample().getClass().getName();
|
||||||
|
|
||||||
|
private static void usage() throws Exception {
|
||||||
|
System.out.println("\nUSAGE: java " + classname + " <Input file> <Output file> [options]\n");
|
||||||
|
System.out.println("Input and output files can be any image format that the Java Image I/O");
|
||||||
|
System.out.println("extensions understand. If either filename ends in a .jpg extension, then");
|
||||||
|
System.out.println("TurboJPEG will be used to compress or decompress the file.\n");
|
||||||
|
System.out.println("Options:\n");
|
||||||
|
System.out.println("-scale M/N = if the input image is a JPEG file, scale the width/height of the");
|
||||||
|
System.out.print(" output image by a factor of M/N (M/N = ");
|
||||||
|
for(int i = 0; i < sf.length; i++) {
|
||||||
|
System.out.print(sf[i].getNum() + "/" + sf[i].getDenom());
|
||||||
|
if(sf.length == 2 && i != sf.length - 1) System.out.print(" or ");
|
||||||
|
else if(sf.length > 2) {
|
||||||
|
if(i != sf.length - 1) System.out.print(", ");
|
||||||
|
if(i == sf.length - 2) System.out.print("or ");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.println(")\n");
|
||||||
|
System.out.println("-samp <444|422|420|gray> = If the output image is a JPEG file, this specifies");
|
||||||
|
System.out.println(" the level of chrominance subsampling to use when");
|
||||||
|
System.out.println(" recompressing it. Default is to use the same level");
|
||||||
|
System.out.println(" of subsampling as the input, if the input is a JPEG");
|
||||||
|
System.out.println(" file, or 4:4:4 otherwise.\n");
|
||||||
|
System.out.println("-q <1-100> = If the output image is a JPEG file, this specifies the JPEG");
|
||||||
|
System.out.println(" quality to use when recompressing it (default = 95).\n");
|
||||||
|
System.out.println("-hflip, -vflip, -transpose, -transverse, -rot90, -rot180, -rot270 =");
|
||||||
|
System.out.println(" If the input image is a JPEG file, perform the corresponding lossless");
|
||||||
|
System.out.println(" transform prior to decompression (these options are mutually exclusive)\n");
|
||||||
|
System.out.println("-grayscale = If the input image is a JPEG file, perform lossless grayscale");
|
||||||
|
System.out.println(" conversion prior to decompression (can be combined with the other");
|
||||||
|
System.out.println(" transforms above)\n");
|
||||||
|
System.out.println("-crop X,Y,WxH = If the input image is a JPEG file, perform lossless cropping");
|
||||||
|
System.out.println(" prior to decompression. X,Y specifies the upper left corner of the");
|
||||||
|
System.out.println(" cropping region, and WxH specifies its width and height. X,Y must be");
|
||||||
|
System.out.println(" evenly divible by the MCU block size (8x8 if the source image was");
|
||||||
|
System.out.println(" compressed using no subsampling or grayscale, or 16x8 for 4:2:2 or 16x16");
|
||||||
|
System.out.println(" for 4:2:0.)\n");
|
||||||
|
System.out.println("-display = Display output image (Output file need not be specified in this");
|
||||||
|
System.out.println(" case.)\n");
|
||||||
|
System.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
private final static String sampName[] = {
|
||||||
|
"4:4:4", "4:2:2", "4:2:0", "Grayscale", "4:4:0"
|
||||||
|
};
|
||||||
|
|
||||||
|
public static void main(String argv[]) {
|
||||||
|
|
||||||
|
BufferedImage img = null; byte[] bmpBuf = null;
|
||||||
|
TJTransform xform = new TJTransform();
|
||||||
|
|
||||||
|
try {
|
||||||
|
|
||||||
|
sf = TJ.getScalingFactors();
|
||||||
|
|
||||||
|
if(argv.length < 2) {
|
||||||
|
usage();
|
||||||
|
}
|
||||||
|
|
||||||
|
TJScalingFactor scaleFactor = new TJScalingFactor(1, 1);
|
||||||
|
String inFormat = "jpg", outFormat = "jpg";
|
||||||
|
int outSubsamp = -1, outQual = 95;
|
||||||
|
boolean display = false;
|
||||||
|
|
||||||
|
if(argv.length > 1) {
|
||||||
|
for(int i = 1; i < argv.length; i++) {
|
||||||
|
if(argv[i].length() < 2) continue;
|
||||||
|
if(argv[i].length() > 2
|
||||||
|
&& argv[i].substring(0, 3).equalsIgnoreCase("-sc")) {
|
||||||
|
int match = 0;
|
||||||
|
if(i < argv.length - 1) {
|
||||||
|
String[] scaleArg = argv[++i].split("/");
|
||||||
|
if(scaleArg.length == 2) {
|
||||||
|
TJScalingFactor tempsf =
|
||||||
|
new TJScalingFactor(Integer.parseInt(scaleArg[0]),
|
||||||
|
Integer.parseInt(scaleArg[1]));
|
||||||
|
for(int j = 0; j < sf.length; j++) {
|
||||||
|
if(tempsf.equals(sf[j])) {
|
||||||
|
scaleFactor = sf[j];
|
||||||
|
match = 1; break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(match != 1) usage();
|
||||||
|
}
|
||||||
|
if(argv[i].equalsIgnoreCase("-h") || argv[i].equalsIgnoreCase("-?"))
|
||||||
|
usage();
|
||||||
|
if(argv[i].length() > 2
|
||||||
|
&& argv[i].substring(0, 3).equalsIgnoreCase("-sa")) {
|
||||||
|
if(i < argv.length - 1) {
|
||||||
|
i++;
|
||||||
|
if(argv[i].substring(0, 1).equalsIgnoreCase("g"))
|
||||||
|
outSubsamp = TJ.SAMP_GRAY;
|
||||||
|
else if(argv[i].equals("444")) outSubsamp = TJ.SAMP_444;
|
||||||
|
else if(argv[i].equals("422")) outSubsamp = TJ.SAMP_422;
|
||||||
|
else if(argv[i].equals("420")) outSubsamp = TJ.SAMP_420;
|
||||||
|
else usage();
|
||||||
|
}
|
||||||
|
else usage();
|
||||||
|
}
|
||||||
|
if(argv[i].substring(0, 2).equalsIgnoreCase("-q")) {
|
||||||
|
if(i < argv.length - 1) {
|
||||||
|
int qual = Integer.parseInt(argv[++i]);
|
||||||
|
if(qual >= 1 && qual <= 100) outQual = qual;
|
||||||
|
else usage();
|
||||||
|
}
|
||||||
|
else usage();
|
||||||
|
}
|
||||||
|
if(argv[i].substring(0, 2).equalsIgnoreCase("-g"))
|
||||||
|
xform.options |= TJTransform.OPT_GRAY;
|
||||||
|
if(argv[i].equalsIgnoreCase("-hflip"))
|
||||||
|
xform.op = TJTransform.OP_HFLIP;
|
||||||
|
if(argv[i].equalsIgnoreCase("-vflip"))
|
||||||
|
xform.op = TJTransform.OP_VFLIP;
|
||||||
|
if(argv[i].equalsIgnoreCase("-transpose"))
|
||||||
|
xform.op = TJTransform.OP_TRANSPOSE;
|
||||||
|
if(argv[i].equalsIgnoreCase("-transverse"))
|
||||||
|
xform.op = TJTransform.OP_TRANSVERSE;
|
||||||
|
if(argv[i].equalsIgnoreCase("-rot90"))
|
||||||
|
xform.op = TJTransform.OP_ROT90;
|
||||||
|
if(argv[i].equalsIgnoreCase("-rot180"))
|
||||||
|
xform.op = TJTransform.OP_ROT180;
|
||||||
|
if(argv[i].equalsIgnoreCase("-rot270"))
|
||||||
|
xform.op = TJTransform.OP_ROT270;
|
||||||
|
if(argv[i].equalsIgnoreCase("-custom"))
|
||||||
|
xform.cf = new TJExample();
|
||||||
|
else if(argv[i].length() > 2
|
||||||
|
&& argv[i].substring(0, 2).equalsIgnoreCase("-c")) {
|
||||||
|
if(i >= argv.length - 1) usage();
|
||||||
|
String[] cropArg = argv[++i].split(",");
|
||||||
|
if(cropArg.length != 3) usage();
|
||||||
|
String[] dimArg = cropArg[2].split("[xX]");
|
||||||
|
if(dimArg.length != 2) usage();
|
||||||
|
int tempx = Integer.parseInt(cropArg[0]);
|
||||||
|
int tempy = Integer.parseInt(cropArg[1]);
|
||||||
|
int tempw = Integer.parseInt(dimArg[0]);
|
||||||
|
int temph = Integer.parseInt(dimArg[1]);
|
||||||
|
if(tempx < 0 || tempy < 0 || tempw < 0 || temph < 0) usage();
|
||||||
|
xform.x = tempx; xform.y = tempy;
|
||||||
|
xform.width = tempw; xform.height = temph;
|
||||||
|
xform.options |= TJTransform.OPT_CROP;
|
||||||
|
}
|
||||||
|
if(argv[i].substring(0, 2).equalsIgnoreCase("-d"))
|
||||||
|
display = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
String[] inFileTokens = argv[0].split("\\.");
|
||||||
|
if(inFileTokens.length > 1)
|
||||||
|
inFormat = inFileTokens[inFileTokens.length - 1];
|
||||||
|
String[] outFileTokens;
|
||||||
|
if(display) outFormat = "bmp";
|
||||||
|
else {
|
||||||
|
outFileTokens = argv[1].split("\\.");
|
||||||
|
if(outFileTokens.length > 1)
|
||||||
|
outFormat = outFileTokens[outFileTokens.length - 1];
|
||||||
|
}
|
||||||
|
|
||||||
|
File file = new File(argv[0]);
|
||||||
|
int width, height;
|
||||||
|
|
||||||
|
if(inFormat.equalsIgnoreCase("jpg")) {
|
||||||
|
FileInputStream fis = new FileInputStream(file);
|
||||||
|
int inputSize = fis.available();
|
||||||
|
if(inputSize < 1) {
|
||||||
|
System.out.println("Input file contains no data");
|
||||||
|
System.exit(1);
|
||||||
|
}
|
||||||
|
byte[] inputBuf = new byte[inputSize];
|
||||||
|
fis.read(inputBuf);
|
||||||
|
fis.close();
|
||||||
|
|
||||||
|
TJDecompressor tjd;
|
||||||
|
if(xform.op != TJTransform.OP_NONE || xform.options != 0
|
||||||
|
|| xform.cf != null) {
|
||||||
|
TJTransformer tjt = new TJTransformer(inputBuf);
|
||||||
|
TJTransform t[] = new TJTransform[1];
|
||||||
|
t[0] = xform;
|
||||||
|
t[0].options |= TJTransform.OPT_TRIM;
|
||||||
|
TJDecompressor[] tjdx = tjt.transform(t, 0);
|
||||||
|
tjd = tjdx[0];
|
||||||
|
}
|
||||||
|
else tjd = new TJDecompressor(inputBuf);
|
||||||
|
|
||||||
|
width = tjd.getWidth();
|
||||||
|
height = tjd.getHeight();
|
||||||
|
int inSubsamp = tjd.getSubsamp();
|
||||||
|
System.out.println("Source Image: " + width + " x " + height
|
||||||
|
+ " pixels, " + sampName[inSubsamp] + " subsampling");
|
||||||
|
if(outSubsamp < 0) outSubsamp = inSubsamp;
|
||||||
|
|
||||||
|
if(outFormat.equalsIgnoreCase("jpg")
|
||||||
|
&& (xform.op != TJTransform.OP_NONE || xform.options != 0)
|
||||||
|
&& scaleFactor.isOne()) {
|
||||||
|
file = new File(argv[1]);
|
||||||
|
FileOutputStream fos = new FileOutputStream(file);
|
||||||
|
fos.write(tjd.getJPEGBuf(), 0, tjd.getJPEGSize());
|
||||||
|
fos.close();
|
||||||
|
System.exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
width = scaleFactor.getScaled(width);
|
||||||
|
height = scaleFactor.getScaled(height);
|
||||||
|
|
||||||
|
if(!outFormat.equalsIgnoreCase("jpg"))
|
||||||
|
img = tjd.decompress(width, height, BufferedImage.TYPE_INT_RGB, 0);
|
||||||
|
else bmpBuf = tjd.decompress(width, 0, height, TJ.PF_BGRX, 0);
|
||||||
|
tjd.close();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
img = ImageIO.read(file);
|
||||||
|
width = img.getWidth();
|
||||||
|
height = img.getHeight();
|
||||||
|
if(outSubsamp < 0) {
|
||||||
|
if(img.getType() == BufferedImage.TYPE_BYTE_GRAY)
|
||||||
|
outSubsamp = TJ.SAMP_GRAY;
|
||||||
|
else outSubsamp = TJ.SAMP_444;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.gc();
|
||||||
|
if(!display)
|
||||||
|
System.out.print("Dest. Image (" + outFormat + "): " + width + " x "
|
||||||
|
+ height + " pixels");
|
||||||
|
|
||||||
|
if(display) {
|
||||||
|
ImageIcon icon = new ImageIcon(img);
|
||||||
|
JLabel label = new JLabel(icon, JLabel.CENTER);
|
||||||
|
JOptionPane.showMessageDialog(null, label, "Output Image",
|
||||||
|
JOptionPane.PLAIN_MESSAGE);
|
||||||
|
}
|
||||||
|
else if(outFormat.equalsIgnoreCase("jpg")) {
|
||||||
|
System.out.println(", " + sampName[outSubsamp]
|
||||||
|
+ " subsampling, quality = " + outQual);
|
||||||
|
TJCompressor tjc = new TJCompressor();
|
||||||
|
int jpegSize;
|
||||||
|
byte[] jpegBuf;
|
||||||
|
|
||||||
|
tjc.setSubsamp(outSubsamp);
|
||||||
|
tjc.setJPEGQuality(outQual);
|
||||||
|
if(img != null)
|
||||||
|
jpegBuf = tjc.compress(img, 0);
|
||||||
|
else {
|
||||||
|
tjc.setSourceImage(bmpBuf, width, 0, height, TJ.PF_BGRX);
|
||||||
|
jpegBuf = tjc.compress(0);
|
||||||
|
}
|
||||||
|
jpegSize = tjc.getCompressedSize();
|
||||||
|
tjc.close();
|
||||||
|
|
||||||
|
file = new File(argv[1]);
|
||||||
|
FileOutputStream fos = new FileOutputStream(file);
|
||||||
|
fos.write(jpegBuf, 0, jpegSize);
|
||||||
|
fos.close();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
System.out.print("\n");
|
||||||
|
file = new File(argv[1]);
|
||||||
|
ImageIO.write(img, outFormat, file);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
catch(Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
System.exit(-1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void customFilter(ShortBuffer coeffBuffer, Rectangle bufferRegion,
|
||||||
|
Rectangle planeRegion, int componentIndex, int transformIndex,
|
||||||
|
TJTransform transform) throws Exception {
|
||||||
|
for(int i=0; i<bufferRegion.width*bufferRegion.height; i++) {
|
||||||
|
coeffBuffer.put(i, (short)(-coeffBuffer.get(i)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static TJScalingFactor sf [] = null;
|
||||||
|
};
|
895
library/deps/libjpeg-turbo/java/TJUnitTest.java
Normal file
|
@ -0,0 +1,895 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C)2011 D. R. Commander. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* - Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
* - 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.
|
||||||
|
* - Neither the name of the libjpeg-turbo Project nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived from this
|
||||||
|
* software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* 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 HOLDERS 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This program tests the various code paths in the TurboJPEG JNI Wrapper
|
||||||
|
*/
|
||||||
|
|
||||||
|
import java.io.*;
|
||||||
|
import java.util.*;
|
||||||
|
import java.awt.image.*;
|
||||||
|
import javax.imageio.*;
|
||||||
|
import java.nio.*;
|
||||||
|
import org.libjpegturbo.turbojpeg.*;
|
||||||
|
|
||||||
|
public class TJUnitTest {
|
||||||
|
|
||||||
|
private static final String classname =
|
||||||
|
new TJUnitTest().getClass().getName();
|
||||||
|
|
||||||
|
private static void usage() {
|
||||||
|
System.out.println("\nUSAGE: java " + classname + " [options]\n");
|
||||||
|
System.out.println("Options:\n");
|
||||||
|
System.out.println("-yuv = test YUV encoding/decoding support\n");
|
||||||
|
System.out.println("-bi = test BufferedImage support\n");
|
||||||
|
System.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
private final static String subNameLong[] = {
|
||||||
|
"4:4:4", "4:2:2", "4:2:0", "GRAY", "4:4:0"
|
||||||
|
};
|
||||||
|
private final static String subName[] = {
|
||||||
|
"444", "422", "420", "GRAY", "440"
|
||||||
|
};
|
||||||
|
|
||||||
|
private final static String pixFormatStr[] = {
|
||||||
|
"RGB", "BGR", "RGBX", "BGRX", "XBGR", "XRGB", "Grayscale",
|
||||||
|
"RGBA", "BGRA", "ABGR", "ARGB"
|
||||||
|
};
|
||||||
|
|
||||||
|
private final static int alphaOffset[] = {
|
||||||
|
-1, -1, -1, -1, -1, -1, -1, 3, 3, 0, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
private final static int _3byteFormats[] = {
|
||||||
|
TJ.PF_RGB, TJ.PF_BGR
|
||||||
|
};
|
||||||
|
private final static int _3byteFormatsBI[] = {
|
||||||
|
BufferedImage.TYPE_3BYTE_BGR
|
||||||
|
};
|
||||||
|
private final static int _4byteFormats[] = {
|
||||||
|
TJ.PF_RGBX, TJ.PF_BGRX, TJ.PF_XBGR, TJ.PF_XRGB
|
||||||
|
};
|
||||||
|
private final static int _4byteFormatsBI[] = {
|
||||||
|
BufferedImage.TYPE_INT_BGR, BufferedImage.TYPE_INT_RGB,
|
||||||
|
BufferedImage.TYPE_4BYTE_ABGR, BufferedImage.TYPE_4BYTE_ABGR_PRE,
|
||||||
|
BufferedImage.TYPE_INT_ARGB, BufferedImage.TYPE_INT_ARGB_PRE
|
||||||
|
};
|
||||||
|
private final static int onlyGray[] = {
|
||||||
|
TJ.PF_GRAY
|
||||||
|
};
|
||||||
|
private final static int onlyGrayBI[] = {
|
||||||
|
BufferedImage.TYPE_BYTE_GRAY
|
||||||
|
};
|
||||||
|
private final static int onlyRGB[] = {
|
||||||
|
TJ.PF_RGB
|
||||||
|
};
|
||||||
|
|
||||||
|
private final static int YUVENCODE = 1;
|
||||||
|
private final static int YUVDECODE = 2;
|
||||||
|
private static int yuv = 0;
|
||||||
|
private static boolean bi = false;
|
||||||
|
|
||||||
|
private static int exitStatus = 0;
|
||||||
|
|
||||||
|
private static int biTypePF(int biType) {
|
||||||
|
ByteOrder byteOrder = ByteOrder.nativeOrder();
|
||||||
|
switch(biType) {
|
||||||
|
case BufferedImage.TYPE_3BYTE_BGR:
|
||||||
|
return TJ.PF_BGR;
|
||||||
|
case BufferedImage.TYPE_4BYTE_ABGR:
|
||||||
|
case BufferedImage.TYPE_4BYTE_ABGR_PRE:
|
||||||
|
return TJ.PF_XBGR;
|
||||||
|
case BufferedImage.TYPE_BYTE_GRAY:
|
||||||
|
return TJ.PF_GRAY;
|
||||||
|
case BufferedImage.TYPE_INT_BGR:
|
||||||
|
if(byteOrder == ByteOrder.BIG_ENDIAN)
|
||||||
|
return TJ.PF_XBGR;
|
||||||
|
else
|
||||||
|
return TJ.PF_RGBX;
|
||||||
|
case BufferedImage.TYPE_INT_RGB:
|
||||||
|
if(byteOrder == ByteOrder.BIG_ENDIAN)
|
||||||
|
return TJ.PF_XRGB;
|
||||||
|
else
|
||||||
|
return TJ.PF_BGRX;
|
||||||
|
case BufferedImage.TYPE_INT_ARGB:
|
||||||
|
case BufferedImage.TYPE_INT_ARGB_PRE:
|
||||||
|
if(byteOrder == ByteOrder.BIG_ENDIAN)
|
||||||
|
return TJ.PF_ARGB;
|
||||||
|
else
|
||||||
|
return TJ.PF_BGRA;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static String biTypeStr(int biType) {
|
||||||
|
switch(biType) {
|
||||||
|
case BufferedImage.TYPE_3BYTE_BGR:
|
||||||
|
return "3BYTE_BGR";
|
||||||
|
case BufferedImage.TYPE_4BYTE_ABGR:
|
||||||
|
return "4BYTE_ABGR";
|
||||||
|
case BufferedImage.TYPE_4BYTE_ABGR_PRE:
|
||||||
|
return "4BYTE_ABGR_PRE";
|
||||||
|
case BufferedImage.TYPE_BYTE_GRAY:
|
||||||
|
return "BYTE_GRAY";
|
||||||
|
case BufferedImage.TYPE_INT_BGR:
|
||||||
|
return "INT_BGR";
|
||||||
|
case BufferedImage.TYPE_INT_RGB:
|
||||||
|
return "INT_RGB";
|
||||||
|
case BufferedImage.TYPE_INT_ARGB:
|
||||||
|
return "INT_ARGB";
|
||||||
|
case BufferedImage.TYPE_INT_ARGB_PRE:
|
||||||
|
return "INT_ARGB_PRE";
|
||||||
|
}
|
||||||
|
return "Unknown";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private static double getTime() {
|
||||||
|
return (double)System.nanoTime() / 1.0e9;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void initBuf(byte[] buf, int w, int pitch, int h, int pf,
|
||||||
|
int flags) throws Exception {
|
||||||
|
int roffset = TJ.getRedOffset(pf);
|
||||||
|
int goffset = TJ.getGreenOffset(pf);
|
||||||
|
int boffset = TJ.getBlueOffset(pf);
|
||||||
|
int aoffset = alphaOffset[pf];
|
||||||
|
int ps = TJ.getPixelSize(pf);
|
||||||
|
int index, row, col, halfway = 16;
|
||||||
|
|
||||||
|
Arrays.fill(buf, (byte)0);
|
||||||
|
if(pf == TJ.PF_GRAY) {
|
||||||
|
for(row = 0; row < h; row++) {
|
||||||
|
for(col = 0; col < w; col++) {
|
||||||
|
if((flags & TJ.FLAG_BOTTOMUP) != 0)
|
||||||
|
index = pitch * (h - row - 1) + col;
|
||||||
|
else index = pitch * row + col;
|
||||||
|
if(((row / 8) + (col / 8)) % 2 == 0)
|
||||||
|
buf[index] = (row < halfway) ? (byte)255 : 0;
|
||||||
|
else buf[index] = (row < halfway) ? 76 : (byte)226;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
for(row = 0; row < h; row++) {
|
||||||
|
for(col = 0; col < w; col++) {
|
||||||
|
if((flags & TJ.FLAG_BOTTOMUP) != 0)
|
||||||
|
index = pitch * (h - row - 1) + col * ps;
|
||||||
|
else index = pitch * row + col * ps;
|
||||||
|
if(((row / 8) + (col / 8)) % 2 == 0) {
|
||||||
|
if(row < halfway) {
|
||||||
|
buf[index + roffset] = (byte)255;
|
||||||
|
buf[index + goffset] = (byte)255;
|
||||||
|
buf[index + boffset] = (byte)255;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
buf[index + roffset] = (byte)255;
|
||||||
|
if(row >= halfway) buf[index + goffset] = (byte)255;
|
||||||
|
}
|
||||||
|
if (aoffset >= 0) buf[index + aoffset] = (byte)255;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void initIntBuf(int[] buf, int w, int pitch, int h, int pf,
|
||||||
|
int flags) throws Exception {
|
||||||
|
int rshift = TJ.getRedOffset(pf) * 8;
|
||||||
|
int gshift = TJ.getGreenOffset(pf) * 8;
|
||||||
|
int bshift = TJ.getBlueOffset(pf) * 8;
|
||||||
|
int ashift = alphaOffset[pf] * 8;
|
||||||
|
int index, row, col, halfway = 16;
|
||||||
|
|
||||||
|
Arrays.fill(buf, 0);
|
||||||
|
for(row = 0; row < h; row++) {
|
||||||
|
for(col = 0; col < w; col++) {
|
||||||
|
if((flags & TJ.FLAG_BOTTOMUP) != 0)
|
||||||
|
index = pitch * (h - row - 1) + col;
|
||||||
|
else index = pitch * row + col;
|
||||||
|
if(((row / 8) + (col / 8)) % 2 == 0) {
|
||||||
|
if(row < halfway) {
|
||||||
|
buf[index] |= (255 << rshift);
|
||||||
|
buf[index] |= (255 << gshift);
|
||||||
|
buf[index] |= (255 << bshift);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
buf[index] |= (255 << rshift);
|
||||||
|
if(row >= halfway) buf[index] |= (255 << gshift);
|
||||||
|
}
|
||||||
|
if (ashift >= 0) buf[index] |= (255 << ashift);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void initImg(BufferedImage img, int pf, int flags)
|
||||||
|
throws Exception {
|
||||||
|
WritableRaster wr = img.getRaster();
|
||||||
|
int imgType = img.getType();
|
||||||
|
if(imgType == BufferedImage.TYPE_INT_RGB
|
||||||
|
|| imgType == BufferedImage.TYPE_INT_BGR
|
||||||
|
|| imgType == BufferedImage.TYPE_INT_ARGB
|
||||||
|
|| imgType == BufferedImage.TYPE_INT_ARGB_PRE) {
|
||||||
|
SinglePixelPackedSampleModel sm =
|
||||||
|
(SinglePixelPackedSampleModel)img.getSampleModel();
|
||||||
|
int pitch = sm.getScanlineStride();
|
||||||
|
DataBufferInt db = (DataBufferInt)wr.getDataBuffer();
|
||||||
|
int[] buf = db.getData();
|
||||||
|
initIntBuf(buf, img.getWidth(), pitch, img.getHeight(), pf, flags);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
ComponentSampleModel sm = (ComponentSampleModel)img.getSampleModel();
|
||||||
|
int pitch = sm.getScanlineStride();
|
||||||
|
DataBufferByte db = (DataBufferByte)wr.getDataBuffer();
|
||||||
|
byte[] buf = db.getData();
|
||||||
|
initBuf(buf, img.getWidth(), pitch, img.getHeight(), pf, flags);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void checkVal(int row, int col, int v, String vname, int cv)
|
||||||
|
throws Exception {
|
||||||
|
v = (v < 0) ? v + 256 : v;
|
||||||
|
if(v < cv - 1 || v > cv + 1) {
|
||||||
|
throw new Exception("\nComp. " + vname + " at " + row + "," + col
|
||||||
|
+ " should be " + cv + ", not " + v + "\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void checkVal0(int row, int col, int v, String vname)
|
||||||
|
throws Exception {
|
||||||
|
v = (v < 0) ? v + 256 : v;
|
||||||
|
if(v > 1) {
|
||||||
|
throw new Exception("\nComp. " + vname + " at " + row + "," + col
|
||||||
|
+ " should be 0, not " + v + "\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void checkVal255(int row, int col, int v, String vname)
|
||||||
|
throws Exception {
|
||||||
|
v = (v < 0) ? v + 256 : v;
|
||||||
|
if(v < 254) {
|
||||||
|
throw new Exception("\nComp. " + vname + " at " + row + "," + col
|
||||||
|
+ " should be 255, not " + v + "\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int checkBuf(byte[] buf, int w, int pitch, int h, int pf,
|
||||||
|
int subsamp, TJScalingFactor sf, int flags) throws Exception {
|
||||||
|
int roffset = TJ.getRedOffset(pf);
|
||||||
|
int goffset = TJ.getGreenOffset(pf);
|
||||||
|
int boffset = TJ.getBlueOffset(pf);
|
||||||
|
int aoffset = alphaOffset[pf];
|
||||||
|
int ps = TJ.getPixelSize(pf);
|
||||||
|
int index, row, col, retval = 1;
|
||||||
|
int halfway = 16 * sf.getNum() / sf.getDenom();
|
||||||
|
int blockSize = 8 * sf.getNum() / sf.getDenom();
|
||||||
|
|
||||||
|
try {
|
||||||
|
for(row = 0; row < halfway; row++) {
|
||||||
|
for(col = 0; col < w; col++) {
|
||||||
|
if((flags & TJ.FLAG_BOTTOMUP) != 0)
|
||||||
|
index = pitch * (h - row - 1) + col * ps;
|
||||||
|
else index = pitch * row + col * ps;
|
||||||
|
byte r = buf[index + roffset];
|
||||||
|
byte g = buf[index + goffset];
|
||||||
|
byte b = buf[index + boffset];
|
||||||
|
byte a = aoffset >= 0 ? buf[index + aoffset] : (byte)255;
|
||||||
|
if(((row / blockSize) + (col / blockSize)) % 2 == 0) {
|
||||||
|
if(row < halfway) {
|
||||||
|
checkVal255(row, col, r, "R");
|
||||||
|
checkVal255(row, col, g, "G");
|
||||||
|
checkVal255(row, col, b, "B");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
checkVal0(row, col, r, "R");
|
||||||
|
checkVal0(row, col, g, "G");
|
||||||
|
checkVal0(row, col, b, "B");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if(subsamp == TJ.SAMP_GRAY) {
|
||||||
|
if(row < halfway) {
|
||||||
|
checkVal(row, col, r, "R", 76);
|
||||||
|
checkVal(row, col, g, "G", 76);
|
||||||
|
checkVal(row, col, b, "B", 76);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
checkVal(row, col, r, "R", 226);
|
||||||
|
checkVal(row, col, g, "G", 226);
|
||||||
|
checkVal(row, col, b, "B", 226);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
checkVal255(row, col, r, "R");
|
||||||
|
if(row < halfway) {
|
||||||
|
checkVal0(row, col, g, "G");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
checkVal255(row, col, g, "G");
|
||||||
|
}
|
||||||
|
checkVal0(row, col, b, "B");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
checkVal255(row, col, a, "A");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(Exception e) {
|
||||||
|
System.out.println(e);
|
||||||
|
retval = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(retval == 0) {
|
||||||
|
System.out.print("\n");
|
||||||
|
for(row = 0; row < h; row++) {
|
||||||
|
for(col = 0; col < w; col++) {
|
||||||
|
int r = buf[pitch * row + col * ps + roffset];
|
||||||
|
int g = buf[pitch * row + col * ps + goffset];
|
||||||
|
int b = buf[pitch * row + col * ps + boffset];
|
||||||
|
if(r < 0) r += 256; if(g < 0) g += 256; if(b < 0) b += 256;
|
||||||
|
System.out.format("%3d/%3d/%3d ", r, g, b);
|
||||||
|
}
|
||||||
|
System.out.print("\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return retval;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int checkIntBuf(int[] buf, int w, int pitch, int h, int pf,
|
||||||
|
int subsamp, TJScalingFactor sf, int flags) throws Exception {
|
||||||
|
int rshift = TJ.getRedOffset(pf) * 8;
|
||||||
|
int gshift = TJ.getGreenOffset(pf) * 8;
|
||||||
|
int bshift = TJ.getBlueOffset(pf) * 8;
|
||||||
|
int ashift = alphaOffset[pf] * 8;
|
||||||
|
int index, row, col, retval = 1;
|
||||||
|
int halfway = 16 * sf.getNum() / sf.getDenom();
|
||||||
|
int blockSize = 8 * sf.getNum() / sf.getDenom();
|
||||||
|
|
||||||
|
try {
|
||||||
|
for(row = 0; row < halfway; row++) {
|
||||||
|
for(col = 0; col < w; col++) {
|
||||||
|
if((flags & TJ.FLAG_BOTTOMUP) != 0)
|
||||||
|
index = pitch * (h - row - 1) + col;
|
||||||
|
else index = pitch * row + col;
|
||||||
|
int r = (buf[index] >> rshift) & 0xFF;
|
||||||
|
int g = (buf[index] >> gshift) & 0xFF;
|
||||||
|
int b = (buf[index] >> bshift) & 0xFF;
|
||||||
|
int a = ashift >= 0 ? (buf[index] >> ashift) & 0xFF : 255;
|
||||||
|
if(((row / blockSize) + (col / blockSize)) % 2 == 0) {
|
||||||
|
if(row < halfway) {
|
||||||
|
checkVal255(row, col, r, "R");
|
||||||
|
checkVal255(row, col, g, "G");
|
||||||
|
checkVal255(row, col, b, "B");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
checkVal0(row, col, r, "R");
|
||||||
|
checkVal0(row, col, g, "G");
|
||||||
|
checkVal0(row, col, b, "B");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if(subsamp == TJ.SAMP_GRAY) {
|
||||||
|
if(row < halfway) {
|
||||||
|
checkVal(row, col, r, "R", 76);
|
||||||
|
checkVal(row, col, g, "G", 76);
|
||||||
|
checkVal(row, col, b, "B", 76);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
checkVal(row, col, r, "R", 226);
|
||||||
|
checkVal(row, col, g, "G", 226);
|
||||||
|
checkVal(row, col, b, "B", 226);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
checkVal255(row, col, r, "R");
|
||||||
|
if(row < halfway) {
|
||||||
|
checkVal0(row, col, g, "G");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
checkVal255(row, col, g, "G");
|
||||||
|
}
|
||||||
|
checkVal0(row, col, b, "B");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
checkVal255(row, col, a, "A");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(Exception e) {
|
||||||
|
System.out.println(e);
|
||||||
|
retval = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(retval == 0) {
|
||||||
|
System.out.print("\n");
|
||||||
|
for(row = 0; row < h; row++) {
|
||||||
|
for(col = 0; col < w; col++) {
|
||||||
|
int r = (buf[pitch * row + col] >> rshift) & 0xFF;
|
||||||
|
int g = (buf[pitch * row + col] >> gshift) & 0xFF;
|
||||||
|
int b = (buf[pitch * row + col] >> bshift) & 0xFF;
|
||||||
|
if(r < 0) r += 256; if(g < 0) g += 256; if(b < 0) b += 256;
|
||||||
|
System.out.format("%3d/%3d/%3d ", r, g, b);
|
||||||
|
}
|
||||||
|
System.out.print("\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return retval;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int checkImg(BufferedImage img, int pf,
|
||||||
|
int subsamp, TJScalingFactor sf, int flags) throws Exception {
|
||||||
|
WritableRaster wr = img.getRaster();
|
||||||
|
int imgType = img.getType();
|
||||||
|
if(imgType == BufferedImage.TYPE_INT_RGB
|
||||||
|
|| imgType == BufferedImage.TYPE_INT_BGR
|
||||||
|
|| imgType == BufferedImage.TYPE_INT_ARGB
|
||||||
|
|| imgType == BufferedImage.TYPE_INT_ARGB_PRE) {
|
||||||
|
SinglePixelPackedSampleModel sm =
|
||||||
|
(SinglePixelPackedSampleModel)img.getSampleModel();
|
||||||
|
int pitch = sm.getScanlineStride();
|
||||||
|
DataBufferInt db = (DataBufferInt)wr.getDataBuffer();
|
||||||
|
int[] buf = db.getData();
|
||||||
|
return checkIntBuf(buf, img.getWidth(), pitch, img.getHeight(), pf,
|
||||||
|
subsamp, sf, flags);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
ComponentSampleModel sm = (ComponentSampleModel)img.getSampleModel();
|
||||||
|
int pitch = sm.getScanlineStride();
|
||||||
|
DataBufferByte db = (DataBufferByte)wr.getDataBuffer();
|
||||||
|
byte[] buf = db.getData();
|
||||||
|
return checkBuf(buf, img.getWidth(), pitch, img.getHeight(), pf, subsamp,
|
||||||
|
sf, flags);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int PAD(int v, int p) {
|
||||||
|
return ((v + (p) - 1) & (~((p) - 1)));
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int checkBufYUV(byte[] buf, int size, int w, int h,
|
||||||
|
int subsamp) throws Exception {
|
||||||
|
int row, col;
|
||||||
|
int hsf = TJ.getMCUWidth(subsamp)/8, vsf = TJ.getMCUHeight(subsamp)/8;
|
||||||
|
int pw = PAD(w, hsf), ph = PAD(h, vsf);
|
||||||
|
int cw = pw / hsf, ch = ph / vsf;
|
||||||
|
int ypitch = PAD(pw, 4), uvpitch = PAD(cw, 4);
|
||||||
|
int retval = 1;
|
||||||
|
int correctsize = ypitch * ph
|
||||||
|
+ (subsamp == TJ.SAMP_GRAY ? 0 : uvpitch * ch * 2);
|
||||||
|
int halfway = 16;
|
||||||
|
|
||||||
|
try {
|
||||||
|
if(size != correctsize)
|
||||||
|
throw new Exception("\nIncorrect size " + size + ". Should be "
|
||||||
|
+ correctsize);
|
||||||
|
|
||||||
|
for(row = 0; row < ph; row++) {
|
||||||
|
for(col = 0; col < pw; col++) {
|
||||||
|
byte y = buf[ypitch * row + col];
|
||||||
|
if(((row / 8) + (col / 8)) % 2 == 0) {
|
||||||
|
if(row < halfway) checkVal255(row, col, y, "Y");
|
||||||
|
else checkVal0(row, col, y, "Y");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if(row < halfway) checkVal(row, col, y, "Y", 76);
|
||||||
|
else checkVal(row, col, y, "Y", 226);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(subsamp != TJ.SAMP_GRAY) {
|
||||||
|
halfway = 16 / vsf;
|
||||||
|
for(row = 0; row < ch; row++) {
|
||||||
|
for(col = 0; col < cw; col++) {
|
||||||
|
byte u = buf[ypitch * ph + (uvpitch * row + col)],
|
||||||
|
v = buf[ypitch * ph + uvpitch * ch + (uvpitch * row + col)];
|
||||||
|
if(((row * vsf / 8) + (col * hsf / 8)) % 2 == 0) {
|
||||||
|
checkVal(row, col, u, "U", 128);
|
||||||
|
checkVal(row, col, v, "V", 128);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if(row < halfway) {
|
||||||
|
checkVal(row, col, u, "U", 85);
|
||||||
|
checkVal255(row, col, v, "V");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
checkVal0(row, col, u, "U");
|
||||||
|
checkVal(row, col, v, "V", 149);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(Exception e) {
|
||||||
|
System.out.println(e);
|
||||||
|
retval = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(retval == 0) {
|
||||||
|
for(row = 0; row < ph; row++) {
|
||||||
|
for(col = 0; col < pw; col++) {
|
||||||
|
int y = buf[ypitch * row + col];
|
||||||
|
if(y < 0) y += 256;
|
||||||
|
System.out.format("%3d ", y);
|
||||||
|
}
|
||||||
|
System.out.print("\n");
|
||||||
|
}
|
||||||
|
System.out.print("\n");
|
||||||
|
for(row = 0; row < ch; row++) {
|
||||||
|
for(col = 0; col < cw; col++) {
|
||||||
|
int u = buf[ypitch * ph + (uvpitch * row + col)];
|
||||||
|
if(u < 0) u += 256;
|
||||||
|
System.out.format("%3d ", u);
|
||||||
|
}
|
||||||
|
System.out.print("\n");
|
||||||
|
}
|
||||||
|
System.out.print("\n");
|
||||||
|
for(row = 0; row < ch; row++) {
|
||||||
|
for(col = 0; col < cw; col++) {
|
||||||
|
int v = buf[ypitch * ph + uvpitch * ch + (uvpitch * row + col)];
|
||||||
|
if(v < 0) v += 256;
|
||||||
|
System.out.format("%3d ", v);
|
||||||
|
}
|
||||||
|
System.out.print("\n");
|
||||||
|
}
|
||||||
|
System.out.print("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
return retval;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void writeJPEG(byte[] jpegBuf, int jpegBufSize,
|
||||||
|
String filename) throws Exception {
|
||||||
|
File file = new File(filename);
|
||||||
|
FileOutputStream fos = new FileOutputStream(file);
|
||||||
|
fos.write(jpegBuf, 0, jpegBufSize);
|
||||||
|
fos.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int compTest(TJCompressor tjc, byte[] dstBuf, int w,
|
||||||
|
int h, int pf, String baseName, int subsamp, int jpegQual,
|
||||||
|
int flags) throws Exception {
|
||||||
|
String tempstr;
|
||||||
|
byte[] srcBuf = null;
|
||||||
|
BufferedImage img = null;
|
||||||
|
String pfStr;
|
||||||
|
double t;
|
||||||
|
int size = 0, ps, imgType = pf;
|
||||||
|
|
||||||
|
if (bi) {
|
||||||
|
pf = biTypePF(imgType);
|
||||||
|
pfStr = biTypeStr(imgType);
|
||||||
|
}
|
||||||
|
else pfStr = pixFormatStr[pf];
|
||||||
|
ps = TJ.getPixelSize(pf);
|
||||||
|
|
||||||
|
System.out.print(pfStr + " ");
|
||||||
|
if(bi) System.out.print("(" + pixFormatStr[pf] + ") ");
|
||||||
|
if((flags & TJ.FLAG_BOTTOMUP) != 0) System.out.print("Bottom-Up");
|
||||||
|
else System.out.print("Top-Down ");
|
||||||
|
System.out.print(" -> " + subNameLong[subsamp] + " ");
|
||||||
|
if(yuv == YUVENCODE) System.out.print("YUV ... ");
|
||||||
|
else System.out.print("Q" + jpegQual + " ... ");
|
||||||
|
|
||||||
|
if(bi) {
|
||||||
|
img = new BufferedImage(w, h, imgType);
|
||||||
|
initImg(img, pf, flags);
|
||||||
|
tempstr = baseName + "_enc_" + pfStr + "_"
|
||||||
|
+ (((flags & TJ.FLAG_BOTTOMUP) != 0) ? "BU" : "TD") + "_"
|
||||||
|
+ subName[subsamp] + "_Q" + jpegQual + ".png";
|
||||||
|
File file = new File(tempstr);
|
||||||
|
ImageIO.write(img, "png", file);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
srcBuf = new byte[w * h * ps + 1];
|
||||||
|
initBuf(srcBuf, w, w * ps, h, pf, flags);
|
||||||
|
}
|
||||||
|
Arrays.fill(dstBuf, (byte)0);
|
||||||
|
|
||||||
|
t = getTime();
|
||||||
|
tjc.setSubsamp(subsamp);
|
||||||
|
tjc.setJPEGQuality(jpegQual);
|
||||||
|
if(bi) {
|
||||||
|
if(yuv == YUVENCODE) tjc.encodeYUV(img, dstBuf, flags);
|
||||||
|
else tjc.compress(img, dstBuf, flags);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
tjc.setSourceImage(srcBuf, w, 0, h, pf);
|
||||||
|
if(yuv == YUVENCODE) tjc.encodeYUV(dstBuf, flags);
|
||||||
|
else tjc.compress(dstBuf, flags);
|
||||||
|
}
|
||||||
|
size = tjc.getCompressedSize();
|
||||||
|
t = getTime() - t;
|
||||||
|
|
||||||
|
if(yuv == YUVENCODE)
|
||||||
|
tempstr = baseName + "_enc_" + pfStr + "_"
|
||||||
|
+ (((flags & TJ.FLAG_BOTTOMUP) != 0) ? "BU" : "TD") + "_"
|
||||||
|
+ subName[subsamp] + ".yuv";
|
||||||
|
else
|
||||||
|
tempstr = baseName + "_enc_" + pfStr + "_"
|
||||||
|
+ (((flags & TJ.FLAG_BOTTOMUP) != 0) ? "BU" : "TD") + "_"
|
||||||
|
+ subName[subsamp] + "_Q" + jpegQual + ".jpg";
|
||||||
|
writeJPEG(dstBuf, size, tempstr);
|
||||||
|
|
||||||
|
if(yuv == YUVENCODE) {
|
||||||
|
if(checkBufYUV(dstBuf, size, w, h, subsamp) == 1)
|
||||||
|
System.out.print("Passed.");
|
||||||
|
else {
|
||||||
|
System.out.print("FAILED!"); exitStatus = -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else System.out.print("Done.");
|
||||||
|
System.out.format(" %.6f ms\n", t * 1000.);
|
||||||
|
System.out.println(" Result in " + tempstr);
|
||||||
|
|
||||||
|
return size;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void decompTest(TJDecompressor tjd, byte[] jpegBuf,
|
||||||
|
int jpegSize, int w, int h, int pf, String baseName, int subsamp,
|
||||||
|
int flags, TJScalingFactor sf) throws Exception {
|
||||||
|
String pfStr, tempstr;
|
||||||
|
double t;
|
||||||
|
int scaledWidth = sf.getScaled(w);
|
||||||
|
int scaledHeight = sf.getScaled(h);
|
||||||
|
int temp1, temp2, imgType = pf;
|
||||||
|
BufferedImage img = null;
|
||||||
|
byte[] dstBuf = null;
|
||||||
|
|
||||||
|
if(yuv == YUVENCODE) return;
|
||||||
|
|
||||||
|
if (bi) {
|
||||||
|
pf = biTypePF(imgType);
|
||||||
|
pfStr = biTypeStr(imgType);
|
||||||
|
}
|
||||||
|
else pfStr = pixFormatStr[pf];
|
||||||
|
|
||||||
|
System.out.print("JPEG -> ");
|
||||||
|
if(yuv == YUVDECODE)
|
||||||
|
System.out.print("YUV " + subName[subsamp] + " ... ");
|
||||||
|
else {
|
||||||
|
System.out.print(pfStr + " ");
|
||||||
|
if(bi) System.out.print("(" + pixFormatStr[pf] + ") ");
|
||||||
|
if((flags & TJ.FLAG_BOTTOMUP) != 0) System.out.print("Bottom-Up ");
|
||||||
|
else System.out.print("Top-Down ");
|
||||||
|
if(!sf.isOne())
|
||||||
|
System.out.print(sf.getNum() + "/" + sf.getDenom() + " ... ");
|
||||||
|
else System.out.print("... ");
|
||||||
|
}
|
||||||
|
|
||||||
|
t = getTime();
|
||||||
|
tjd.setJPEGImage(jpegBuf, jpegSize);
|
||||||
|
if(tjd.getWidth() != w || tjd.getHeight() != h
|
||||||
|
|| tjd.getSubsamp() != subsamp)
|
||||||
|
throw new Exception("Incorrect JPEG header");
|
||||||
|
|
||||||
|
temp1 = scaledWidth;
|
||||||
|
temp2 = scaledHeight;
|
||||||
|
temp1 = tjd.getScaledWidth(temp1, temp2);
|
||||||
|
temp2 = tjd.getScaledHeight(temp1, temp2);
|
||||||
|
if(temp1 != scaledWidth || temp2 != scaledHeight)
|
||||||
|
throw new Exception("Scaled size mismatch");
|
||||||
|
|
||||||
|
if(yuv == YUVDECODE) dstBuf = tjd.decompressToYUV(flags);
|
||||||
|
else {
|
||||||
|
if(bi)
|
||||||
|
img = tjd.decompress(scaledWidth, scaledHeight, imgType, flags);
|
||||||
|
else dstBuf = tjd.decompress(scaledWidth, 0, scaledHeight, pf, flags);
|
||||||
|
}
|
||||||
|
t = getTime() - t;
|
||||||
|
|
||||||
|
if(bi) {
|
||||||
|
tempstr = baseName + "_dec_" + pfStr + "_"
|
||||||
|
+ (((flags & TJ.FLAG_BOTTOMUP) != 0) ? "BU" : "TD") + "_"
|
||||||
|
+ subName[subsamp] + "_" + (double)sf.getNum() / (double)sf.getDenom()
|
||||||
|
+ "x" + ".png";
|
||||||
|
File file = new File(tempstr);
|
||||||
|
ImageIO.write(img, "png", file);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(yuv == YUVDECODE) {
|
||||||
|
if(checkBufYUV(dstBuf, dstBuf.length, w, h, subsamp) == 1)
|
||||||
|
System.out.print("Passed.");
|
||||||
|
else {
|
||||||
|
System.out.print("FAILED!"); exitStatus = -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if((bi && checkImg(img, pf, subsamp, sf, flags) == 1)
|
||||||
|
|| (!bi && checkBuf(dstBuf, scaledWidth, scaledWidth
|
||||||
|
* TJ.getPixelSize(pf), scaledHeight, pf, subsamp, sf, flags) == 1))
|
||||||
|
System.out.print("Passed.");
|
||||||
|
else {
|
||||||
|
System.out.print("FAILED!"); exitStatus = -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.format(" %.6f ms\n", t * 1000.);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void decompTest(TJDecompressor tjd, byte[] jpegBuf,
|
||||||
|
int jpegSize, int w, int h, int pf, String baseName, int subsamp,
|
||||||
|
int flags) throws Exception {
|
||||||
|
int i;
|
||||||
|
if((subsamp == TJ.SAMP_444 || subsamp == TJ.SAMP_GRAY) && yuv == 0) {
|
||||||
|
TJScalingFactor sf[] = TJ.getScalingFactors();
|
||||||
|
for(i = 0; i < sf.length; i++)
|
||||||
|
decompTest(tjd, jpegBuf, jpegSize, w, h, pf, baseName, subsamp,
|
||||||
|
flags, sf[i]);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
decompTest(tjd, jpegBuf, jpegSize, w, h, pf, baseName, subsamp,
|
||||||
|
flags, new TJScalingFactor(1, 1));
|
||||||
|
System.out.print("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void doTest(int w, int h, int[] formats, int subsamp,
|
||||||
|
String baseName) throws Exception {
|
||||||
|
TJCompressor tjc = null;
|
||||||
|
TJDecompressor tjd = null;
|
||||||
|
int size;
|
||||||
|
byte[] dstBuf;
|
||||||
|
|
||||||
|
if(yuv == YUVENCODE) dstBuf = new byte[TJ.bufSizeYUV(w, h, subsamp)];
|
||||||
|
else dstBuf = new byte[TJ.bufSize(w, h, subsamp)];
|
||||||
|
|
||||||
|
try {
|
||||||
|
tjc = new TJCompressor();
|
||||||
|
tjd = new TJDecompressor();
|
||||||
|
|
||||||
|
for(int pf : formats) {
|
||||||
|
for(int i = 0; i < 2; i++) {
|
||||||
|
int flags = 0;
|
||||||
|
if(i == 1) {
|
||||||
|
if(yuv == YUVDECODE) {
|
||||||
|
tjc.close(); tjd.close(); return;
|
||||||
|
}
|
||||||
|
else flags |= TJ.FLAG_BOTTOMUP;
|
||||||
|
}
|
||||||
|
size = compTest(tjc, dstBuf, w, h, pf, baseName, subsamp, 100,
|
||||||
|
flags);
|
||||||
|
decompTest(tjd, dstBuf, size, w, h, pf, baseName, subsamp, flags);
|
||||||
|
if(pf >= TJ.PF_RGBX && pf <= TJ.PF_XRGB && !bi)
|
||||||
|
decompTest(tjd, dstBuf, size, w, h, pf + (TJ.PF_RGBA - TJ.PF_RGBX),
|
||||||
|
baseName, subsamp, flags);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(Exception e) {
|
||||||
|
if(tjc != null) tjc.close();
|
||||||
|
if(tjd != null) tjd.close();
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
if(tjc != null) tjc.close();
|
||||||
|
if(tjd != null) tjd.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void bufSizeTest() throws Exception {
|
||||||
|
int w, h, i, subsamp;
|
||||||
|
byte[] srcBuf, jpegBuf;
|
||||||
|
TJCompressor tjc = null;
|
||||||
|
Random r = new Random();
|
||||||
|
|
||||||
|
try {
|
||||||
|
tjc = new TJCompressor();
|
||||||
|
System.out.println("Buffer size regression test");
|
||||||
|
for(subsamp = 0; subsamp < TJ.NUMSAMP; subsamp++) {
|
||||||
|
for(w = 1; w < 48; w++) {
|
||||||
|
int maxh = (w == 1) ? 2048 : 48;
|
||||||
|
for(h = 1; h < maxh; h++) {
|
||||||
|
if(h % 100 == 0)
|
||||||
|
System.out.format("%04d x %04d\b\b\b\b\b\b\b\b\b\b\b", w, h);
|
||||||
|
srcBuf = new byte[w * h * 4];
|
||||||
|
jpegBuf = new byte[TJ.bufSize(w, h, subsamp)];
|
||||||
|
for(i = 0; i < w * h * 4; i++) {
|
||||||
|
srcBuf[i] = (byte)(r.nextInt(2) * 255);
|
||||||
|
}
|
||||||
|
tjc.setSourceImage(srcBuf, w, 0, h, TJ.PF_BGRX);
|
||||||
|
tjc.setSubsamp(subsamp);
|
||||||
|
tjc.setJPEGQuality(100);
|
||||||
|
tjc.compress(jpegBuf, 0);
|
||||||
|
|
||||||
|
srcBuf = new byte[h * w * 4];
|
||||||
|
jpegBuf = new byte[TJ.bufSize(h, w, subsamp)];
|
||||||
|
for(i = 0; i < h * w * 4; i++) {
|
||||||
|
srcBuf[i] = (byte)(r.nextInt(2) * 255);
|
||||||
|
}
|
||||||
|
tjc.setSourceImage(srcBuf, h, 0, w, TJ.PF_BGRX);
|
||||||
|
tjc.compress(jpegBuf, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.println("Done. ");
|
||||||
|
}
|
||||||
|
catch(Exception e) {
|
||||||
|
if(tjc != null) tjc.close();
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
if(tjc != null) tjc.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String argv[]) {
|
||||||
|
try {
|
||||||
|
String testName = "javatest";
|
||||||
|
boolean doyuv = false;
|
||||||
|
for(int i = 0; i < argv.length; i++) {
|
||||||
|
if(argv[i].equalsIgnoreCase("-yuv")) doyuv = true;
|
||||||
|
if(argv[i].substring(0, 1).equalsIgnoreCase("-h")
|
||||||
|
|| argv[i].equalsIgnoreCase("-?"))
|
||||||
|
usage();
|
||||||
|
if(argv[i].equalsIgnoreCase("-bi")) {
|
||||||
|
bi = true;
|
||||||
|
testName = "javabitest";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(doyuv) yuv = YUVENCODE;
|
||||||
|
doTest(35, 39, bi ? _3byteFormatsBI : _3byteFormats, TJ.SAMP_444, testName);
|
||||||
|
doTest(39, 41, bi ? _4byteFormatsBI : _4byteFormats, TJ.SAMP_444, testName);
|
||||||
|
if(doyuv) {
|
||||||
|
doTest(41, 35, bi ? _3byteFormatsBI : _3byteFormats, TJ.SAMP_422,
|
||||||
|
testName);
|
||||||
|
doTest(35, 39, bi ? _4byteFormatsBI : _4byteFormats, TJ.SAMP_422,
|
||||||
|
testName);
|
||||||
|
doTest(39, 41, bi ? _3byteFormatsBI : _3byteFormats, TJ.SAMP_420,
|
||||||
|
testName);
|
||||||
|
doTest(41, 35, bi ? _4byteFormatsBI : _4byteFormats, TJ.SAMP_420,
|
||||||
|
testName);
|
||||||
|
doTest(35, 39, bi ? _3byteFormatsBI : _3byteFormats, TJ.SAMP_440,
|
||||||
|
testName);
|
||||||
|
doTest(39, 41, bi ? _4byteFormatsBI : _4byteFormats, TJ.SAMP_440,
|
||||||
|
testName);
|
||||||
|
}
|
||||||
|
doTest(35, 39, bi ? onlyGrayBI : onlyGray, TJ.SAMP_GRAY, testName);
|
||||||
|
doTest(39, 41, bi ? _3byteFormatsBI : _3byteFormats, TJ.SAMP_GRAY,
|
||||||
|
testName);
|
||||||
|
doTest(41, 35, bi ? _4byteFormatsBI : _4byteFormats, TJ.SAMP_GRAY,
|
||||||
|
testName);
|
||||||
|
if(!doyuv && !bi) bufSizeTest();
|
||||||
|
if(doyuv && !bi) {
|
||||||
|
yuv = YUVDECODE;
|
||||||
|
doTest(48, 48, onlyRGB, TJ.SAMP_444, "javatest_yuv0");
|
||||||
|
doTest(35, 39, onlyRGB, TJ.SAMP_444, "javatest_yuv1");
|
||||||
|
doTest(48, 48, onlyRGB, TJ.SAMP_422, "javatest_yuv0");
|
||||||
|
doTest(39, 41, onlyRGB, TJ.SAMP_422, "javatest_yuv1");
|
||||||
|
doTest(48, 48, onlyRGB, TJ.SAMP_420, "javatest_yuv0");
|
||||||
|
doTest(41, 35, onlyRGB, TJ.SAMP_420, "javatest_yuv1");
|
||||||
|
doTest(48, 48, onlyRGB, TJ.SAMP_440, "javatest_yuv0");
|
||||||
|
doTest(35, 39, onlyRGB, TJ.SAMP_440, "javatest_yuv1");
|
||||||
|
doTest(48, 48, onlyRGB, TJ.SAMP_GRAY, "javatest_yuv0");
|
||||||
|
doTest(35, 39, onlyRGB, TJ.SAMP_GRAY, "javatest_yuv1");
|
||||||
|
doTest(48, 48, onlyGray, TJ.SAMP_GRAY, "javatest_yuv0");
|
||||||
|
doTest(39, 41, onlyGray, TJ.SAMP_GRAY, "javatest_yuv1");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch(Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
exitStatus = -1;
|
||||||
|
}
|
||||||
|
System.exit(exitStatus);
|
||||||
|
}
|
||||||
|
}
|
43
library/deps/libjpeg-turbo/java/doc/allclasses-frame.html
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!--NewPage-->
|
||||||
|
<HTML>
|
||||||
|
<HEAD>
|
||||||
|
<!-- Generated by javadoc (build 1.6.0_29) on Sun Dec 18 20:09:44 CST 2011 -->
|
||||||
|
<TITLE>
|
||||||
|
All Classes
|
||||||
|
</TITLE>
|
||||||
|
|
||||||
|
<META NAME="date" CONTENT="2011-12-18">
|
||||||
|
|
||||||
|
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||||
|
|
||||||
|
|
||||||
|
</HEAD>
|
||||||
|
|
||||||
|
<BODY BGCOLOR="white">
|
||||||
|
<FONT size="+1" CLASS="FrameHeadingFont">
|
||||||
|
<B>All Classes</B></FONT>
|
||||||
|
<BR>
|
||||||
|
|
||||||
|
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||||
|
<TR>
|
||||||
|
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="org/libjpegturbo/turbojpeg/TJ.html" title="class in org.libjpegturbo.turbojpeg" target="classFrame">TJ</A>
|
||||||
|
<BR>
|
||||||
|
<A HREF="org/libjpegturbo/turbojpeg/TJCompressor.html" title="class in org.libjpegturbo.turbojpeg" target="classFrame">TJCompressor</A>
|
||||||
|
<BR>
|
||||||
|
<A HREF="org/libjpegturbo/turbojpeg/TJCustomFilter.html" title="interface in org.libjpegturbo.turbojpeg" target="classFrame"><I>TJCustomFilter</I></A>
|
||||||
|
<BR>
|
||||||
|
<A HREF="org/libjpegturbo/turbojpeg/TJDecompressor.html" title="class in org.libjpegturbo.turbojpeg" target="classFrame">TJDecompressor</A>
|
||||||
|
<BR>
|
||||||
|
<A HREF="org/libjpegturbo/turbojpeg/TJScalingFactor.html" title="class in org.libjpegturbo.turbojpeg" target="classFrame">TJScalingFactor</A>
|
||||||
|
<BR>
|
||||||
|
<A HREF="org/libjpegturbo/turbojpeg/TJTransform.html" title="class in org.libjpegturbo.turbojpeg" target="classFrame">TJTransform</A>
|
||||||
|
<BR>
|
||||||
|
<A HREF="org/libjpegturbo/turbojpeg/TJTransformer.html" title="class in org.libjpegturbo.turbojpeg" target="classFrame">TJTransformer</A>
|
||||||
|
<BR>
|
||||||
|
</FONT></TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
|
||||||
|
</BODY>
|
||||||
|
</HTML>
|
43
library/deps/libjpeg-turbo/java/doc/allclasses-noframe.html
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!--NewPage-->
|
||||||
|
<HTML>
|
||||||
|
<HEAD>
|
||||||
|
<!-- Generated by javadoc (build 1.6.0_29) on Sun Dec 18 20:09:44 CST 2011 -->
|
||||||
|
<TITLE>
|
||||||
|
All Classes
|
||||||
|
</TITLE>
|
||||||
|
|
||||||
|
<META NAME="date" CONTENT="2011-12-18">
|
||||||
|
|
||||||
|
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||||
|
|
||||||
|
|
||||||
|
</HEAD>
|
||||||
|
|
||||||
|
<BODY BGCOLOR="white">
|
||||||
|
<FONT size="+1" CLASS="FrameHeadingFont">
|
||||||
|
<B>All Classes</B></FONT>
|
||||||
|
<BR>
|
||||||
|
|
||||||
|
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
|
||||||
|
<TR>
|
||||||
|
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="org/libjpegturbo/turbojpeg/TJ.html" title="class in org.libjpegturbo.turbojpeg">TJ</A>
|
||||||
|
<BR>
|
||||||
|
<A HREF="org/libjpegturbo/turbojpeg/TJCompressor.html" title="class in org.libjpegturbo.turbojpeg">TJCompressor</A>
|
||||||
|
<BR>
|
||||||
|
<A HREF="org/libjpegturbo/turbojpeg/TJCustomFilter.html" title="interface in org.libjpegturbo.turbojpeg"><I>TJCustomFilter</I></A>
|
||||||
|
<BR>
|
||||||
|
<A HREF="org/libjpegturbo/turbojpeg/TJDecompressor.html" title="class in org.libjpegturbo.turbojpeg">TJDecompressor</A>
|
||||||
|
<BR>
|
||||||
|
<A HREF="org/libjpegturbo/turbojpeg/TJScalingFactor.html" title="class in org.libjpegturbo.turbojpeg">TJScalingFactor</A>
|
||||||
|
<BR>
|
||||||
|
<A HREF="org/libjpegturbo/turbojpeg/TJTransform.html" title="class in org.libjpegturbo.turbojpeg">TJTransform</A>
|
||||||
|
<BR>
|
||||||
|
<A HREF="org/libjpegturbo/turbojpeg/TJTransformer.html" title="class in org.libjpegturbo.turbojpeg">TJTransformer</A>
|
||||||
|
<BR>
|
||||||
|
</FONT></TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
|
||||||
|
</BODY>
|
||||||
|
</HTML>
|
404
library/deps/libjpeg-turbo/java/doc/constant-values.html
Normal file
|
@ -0,0 +1,404 @@
|
||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!--NewPage-->
|
||||||
|
<HTML>
|
||||||
|
<HEAD>
|
||||||
|
<!-- Generated by javadoc (build 1.6.0_29) on Sun Dec 18 20:09:44 CST 2011 -->
|
||||||
|
<TITLE>
|
||||||
|
Constant Field Values
|
||||||
|
</TITLE>
|
||||||
|
|
||||||
|
<META NAME="date" CONTENT="2011-12-18">
|
||||||
|
|
||||||
|
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||||
|
|
||||||
|
<SCRIPT type="text/javascript">
|
||||||
|
function windowTitle()
|
||||||
|
{
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Constant Field Values";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</SCRIPT>
|
||||||
|
<NOSCRIPT>
|
||||||
|
</NOSCRIPT>
|
||||||
|
|
||||||
|
</HEAD>
|
||||||
|
|
||||||
|
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||||
|
<HR>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<A NAME="navbar_top"><!-- --></A>
|
||||||
|
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||||
|
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||||
|
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||||
|
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||||
|
<TR ALIGN="center" VALIGN="top">
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="org/libjpegturbo/turbojpeg/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="org/libjpegturbo/turbojpeg/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
</TD>
|
||||||
|
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||||
|
</EM>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
|
||||||
|
<TR>
|
||||||
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||||
|
PREV
|
||||||
|
NEXT</FONT></TD>
|
||||||
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||||
|
<A HREF="index.html?constant-values.html" target="_top"><B>FRAMES</B></A>
|
||||||
|
<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A>
|
||||||
|
<SCRIPT type="text/javascript">
|
||||||
|
<!--
|
||||||
|
if(window==top) {
|
||||||
|
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</SCRIPT>
|
||||||
|
<NOSCRIPT>
|
||||||
|
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||||
|
</NOSCRIPT>
|
||||||
|
|
||||||
|
|
||||||
|
</FONT></TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
<A NAME="skip-navbar_top"></A>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
|
||||||
|
<HR>
|
||||||
|
<CENTER>
|
||||||
|
<H1>
|
||||||
|
Constant Field Values</H1>
|
||||||
|
</CENTER>
|
||||||
|
<HR SIZE="4" NOSHADE>
|
||||||
|
<B>Contents</B><UL>
|
||||||
|
<LI><A HREF="#org.libjpegturbo">org.libjpegturbo.*</A>
|
||||||
|
</UL>
|
||||||
|
|
||||||
|
<A NAME="org.libjpegturbo"><!-- --></A>
|
||||||
|
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||||
|
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||||
|
<TH ALIGN="left"><FONT SIZE="+2">
|
||||||
|
org.libjpegturbo.*</FONT></TH>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
|
||||||
|
<P>
|
||||||
|
|
||||||
|
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||||
|
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||||
|
<TH ALIGN="left" COLSPAN="3">org.libjpegturbo.turbojpeg.<A HREF="org/libjpegturbo/turbojpeg/TJ.html" title="class in org.libjpegturbo.turbojpeg">TJ</A></TH>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.FLAG_BOTTOMUP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#FLAG_BOTTOMUP">FLAG_BOTTOMUP</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>2</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.FLAG_FASTUPSAMPLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#FLAG_FASTUPSAMPLE">FLAG_FASTUPSAMPLE</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>256</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.FLAG_FORCEMMX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#FLAG_FORCEMMX">FLAG_FORCEMMX</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>8</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.FLAG_FORCESSE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#FLAG_FORCESSE">FLAG_FORCESSE</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>16</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.FLAG_FORCESSE2"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#FLAG_FORCESSE2">FLAG_FORCESSE2</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>32</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.FLAG_FORCESSE3"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#FLAG_FORCESSE3">FLAG_FORCESSE3</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>128</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.NUMPF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#NUMPF">NUMPF</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>11</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.NUMSAMP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#NUMSAMP">NUMSAMP</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>5</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.PF_ABGR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#PF_ABGR">PF_ABGR</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>9</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.PF_ARGB"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#PF_ARGB">PF_ARGB</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>10</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.PF_BGR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#PF_BGR">PF_BGR</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>1</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.PF_BGRA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#PF_BGRA">PF_BGRA</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>8</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.PF_BGRX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#PF_BGRX">PF_BGRX</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>3</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.PF_GRAY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#PF_GRAY">PF_GRAY</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>6</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.PF_RGB"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#PF_RGB">PF_RGB</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>0</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.PF_RGBA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#PF_RGBA">PF_RGBA</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>7</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.PF_RGBX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#PF_RGBX">PF_RGBX</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>2</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.PF_XBGR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#PF_XBGR">PF_XBGR</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>4</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.PF_XRGB"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#PF_XRGB">PF_XRGB</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>5</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.SAMP_420"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#SAMP_420">SAMP_420</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>2</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.SAMP_422"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#SAMP_422">SAMP_422</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>1</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.SAMP_440"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#SAMP_440">SAMP_440</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>4</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.SAMP_444"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#SAMP_444">SAMP_444</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>0</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJ.SAMP_GRAY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJ.html#SAMP_GRAY">SAMP_GRAY</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>3</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
</FONT></TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
|
||||||
|
<P>
|
||||||
|
|
||||||
|
<P>
|
||||||
|
|
||||||
|
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||||
|
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
|
||||||
|
<TH ALIGN="left" COLSPAN="3">org.libjpegturbo.turbojpeg.<A HREF="org/libjpegturbo/turbojpeg/TJTransform.html" title="class in org.libjpegturbo.turbojpeg">TJTransform</A></TH>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.NUMOP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#NUMOP">NUMOP</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>8</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.OP_HFLIP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#OP_HFLIP">OP_HFLIP</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>1</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.OP_NONE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#OP_NONE">OP_NONE</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>0</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.OP_ROT180"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#OP_ROT180">OP_ROT180</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>6</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.OP_ROT270"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#OP_ROT270">OP_ROT270</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>7</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.OP_ROT90"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#OP_ROT90">OP_ROT90</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>5</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.OP_TRANSPOSE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#OP_TRANSPOSE">OP_TRANSPOSE</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>3</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.OP_TRANSVERSE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#OP_TRANSVERSE">OP_TRANSVERSE</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>4</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.OP_VFLIP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#OP_VFLIP">OP_VFLIP</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>2</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.OPT_CROP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#OPT_CROP">OPT_CROP</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>4</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.OPT_GRAY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#OPT_GRAY">OPT_GRAY</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>8</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.OPT_NOOUTPUT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#OPT_NOOUTPUT">OPT_NOOUTPUT</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>16</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.OPT_PERFECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#OPT_PERFECT">OPT_PERFECT</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>1</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||||
|
<A NAME="org.libjpegturbo.turbojpeg.TJTransform.OPT_TRIM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||||
|
<CODE>public static final int</CODE></FONT></TD>
|
||||||
|
<TD ALIGN="left"><CODE><A HREF="org/libjpegturbo/turbojpeg/TJTransform.html#OPT_TRIM">OPT_TRIM</A></CODE></TD>
|
||||||
|
<TD ALIGN="right"><CODE>2</CODE></TD>
|
||||||
|
</TR>
|
||||||
|
</FONT></TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
|
||||||
|
<P>
|
||||||
|
|
||||||
|
<P>
|
||||||
|
<HR>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<A NAME="navbar_bottom"><!-- --></A>
|
||||||
|
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||||
|
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||||
|
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||||
|
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||||
|
<TR ALIGN="center" VALIGN="top">
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="org/libjpegturbo/turbojpeg/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="org/libjpegturbo/turbojpeg/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
</TD>
|
||||||
|
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||||
|
</EM>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
|
||||||
|
<TR>
|
||||||
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||||
|
PREV
|
||||||
|
NEXT</FONT></TD>
|
||||||
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||||
|
<A HREF="index.html?constant-values.html" target="_top"><B>FRAMES</B></A>
|
||||||
|
<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A>
|
||||||
|
<SCRIPT type="text/javascript">
|
||||||
|
<!--
|
||||||
|
if(window==top) {
|
||||||
|
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</SCRIPT>
|
||||||
|
<NOSCRIPT>
|
||||||
|
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||||
|
</NOSCRIPT>
|
||||||
|
|
||||||
|
|
||||||
|
</FONT></TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
<A NAME="skip-navbar_bottom"></A>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
|
||||||
|
<HR>
|
||||||
|
|
||||||
|
</BODY>
|
||||||
|
</HTML>
|
142
library/deps/libjpeg-turbo/java/doc/deprecated-list.html
Normal file
|
@ -0,0 +1,142 @@
|
||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!--NewPage-->
|
||||||
|
<HTML>
|
||||||
|
<HEAD>
|
||||||
|
<!-- Generated by javadoc (build 1.6.0_29) on Sun Dec 18 20:09:44 CST 2011 -->
|
||||||
|
<TITLE>
|
||||||
|
Deprecated List
|
||||||
|
</TITLE>
|
||||||
|
|
||||||
|
<META NAME="date" CONTENT="2011-12-18">
|
||||||
|
|
||||||
|
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||||
|
|
||||||
|
<SCRIPT type="text/javascript">
|
||||||
|
function windowTitle()
|
||||||
|
{
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="Deprecated List";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</SCRIPT>
|
||||||
|
<NOSCRIPT>
|
||||||
|
</NOSCRIPT>
|
||||||
|
|
||||||
|
</HEAD>
|
||||||
|
|
||||||
|
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||||
|
<HR>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<A NAME="navbar_top"><!-- --></A>
|
||||||
|
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||||
|
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||||
|
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||||
|
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||||
|
<TR ALIGN="center" VALIGN="top">
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="org/libjpegturbo/turbojpeg/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="org/libjpegturbo/turbojpeg/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
</TD>
|
||||||
|
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||||
|
</EM>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
|
||||||
|
<TR>
|
||||||
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||||
|
PREV
|
||||||
|
NEXT</FONT></TD>
|
||||||
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||||
|
<A HREF="index.html?deprecated-list.html" target="_top"><B>FRAMES</B></A>
|
||||||
|
<A HREF="deprecated-list.html" target="_top"><B>NO FRAMES</B></A>
|
||||||
|
<SCRIPT type="text/javascript">
|
||||||
|
<!--
|
||||||
|
if(window==top) {
|
||||||
|
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</SCRIPT>
|
||||||
|
<NOSCRIPT>
|
||||||
|
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||||
|
</NOSCRIPT>
|
||||||
|
|
||||||
|
|
||||||
|
</FONT></TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
<A NAME="skip-navbar_top"></A>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
|
||||||
|
<HR>
|
||||||
|
<CENTER>
|
||||||
|
<H2>
|
||||||
|
<B>Deprecated API</B></H2>
|
||||||
|
</CENTER>
|
||||||
|
<HR SIZE="4" NOSHADE>
|
||||||
|
<B>Contents</B><UL>
|
||||||
|
</UL>
|
||||||
|
|
||||||
|
<HR>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<A NAME="navbar_bottom"><!-- --></A>
|
||||||
|
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||||
|
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||||
|
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||||
|
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||||
|
<TR ALIGN="center" VALIGN="top">
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="org/libjpegturbo/turbojpeg/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="org/libjpegturbo/turbojpeg/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
</TD>
|
||||||
|
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||||
|
</EM>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
|
||||||
|
<TR>
|
||||||
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||||
|
PREV
|
||||||
|
NEXT</FONT></TD>
|
||||||
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||||
|
<A HREF="index.html?deprecated-list.html" target="_top"><B>FRAMES</B></A>
|
||||||
|
<A HREF="deprecated-list.html" target="_top"><B>NO FRAMES</B></A>
|
||||||
|
<SCRIPT type="text/javascript">
|
||||||
|
<!--
|
||||||
|
if(window==top) {
|
||||||
|
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</SCRIPT>
|
||||||
|
<NOSCRIPT>
|
||||||
|
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||||
|
</NOSCRIPT>
|
||||||
|
|
||||||
|
|
||||||
|
</FONT></TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
<A NAME="skip-navbar_bottom"></A>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
|
||||||
|
<HR>
|
||||||
|
|
||||||
|
</BODY>
|
||||||
|
</HTML>
|
209
library/deps/libjpeg-turbo/java/doc/help-doc.html
Normal file
|
@ -0,0 +1,209 @@
|
||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||||
|
<!--NewPage-->
|
||||||
|
<HTML>
|
||||||
|
<HEAD>
|
||||||
|
<!-- Generated by javadoc (build 1.6.0_29) on Sun Dec 18 20:09:44 CST 2011 -->
|
||||||
|
<TITLE>
|
||||||
|
API Help
|
||||||
|
</TITLE>
|
||||||
|
|
||||||
|
<META NAME="date" CONTENT="2011-12-18">
|
||||||
|
|
||||||
|
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
|
||||||
|
|
||||||
|
<SCRIPT type="text/javascript">
|
||||||
|
function windowTitle()
|
||||||
|
{
|
||||||
|
if (location.href.indexOf('is-external=true') == -1) {
|
||||||
|
parent.document.title="API Help";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</SCRIPT>
|
||||||
|
<NOSCRIPT>
|
||||||
|
</NOSCRIPT>
|
||||||
|
|
||||||
|
</HEAD>
|
||||||
|
|
||||||
|
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||||
|
<HR>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||||
|
<A NAME="navbar_top"><!-- --></A>
|
||||||
|
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
|
||||||
|
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||||
|
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||||
|
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||||
|
<TR ALIGN="center" VALIGN="top">
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="org/libjpegturbo/turbojpeg/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="org/libjpegturbo/turbojpeg/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT> </TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
</TD>
|
||||||
|
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||||
|
</EM>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
|
||||||
|
<TR>
|
||||||
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||||
|
PREV
|
||||||
|
NEXT</FONT></TD>
|
||||||
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||||
|
<A HREF="index.html?help-doc.html" target="_top"><B>FRAMES</B></A>
|
||||||
|
<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A>
|
||||||
|
<SCRIPT type="text/javascript">
|
||||||
|
<!--
|
||||||
|
if(window==top) {
|
||||||
|
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</SCRIPT>
|
||||||
|
<NOSCRIPT>
|
||||||
|
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||||
|
</NOSCRIPT>
|
||||||
|
|
||||||
|
|
||||||
|
</FONT></TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
<A NAME="skip-navbar_top"></A>
|
||||||
|
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||||
|
|
||||||
|
<HR>
|
||||||
|
<CENTER>
|
||||||
|
<H1>
|
||||||
|
How This API Document Is Organized</H1>
|
||||||
|
</CENTER>
|
||||||
|
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.<H3>
|
||||||
|
Package</H3>
|
||||||
|
<BLOCKQUOTE>
|
||||||
|
|
||||||
|
<P>
|
||||||
|
Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:<UL>
|
||||||
|
<LI>Interfaces (italic)<LI>Classes<LI>Enums<LI>Exceptions<LI>Errors<LI>Annotation Types</UL>
|
||||||
|
</BLOCKQUOTE>
|
||||||
|
<H3>
|
||||||
|
Class/Interface</H3>
|
||||||
|
<BLOCKQUOTE>
|
||||||
|
|
||||||
|
<P>
|
||||||
|
Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:<UL>
|
||||||
|
<LI>Class inheritance diagram<LI>Direct Subclasses<LI>All Known Subinterfaces<LI>All Known Implementing Classes<LI>Class/interface declaration<LI>Class/interface description
|
||||||
|
<P>
|
||||||
|
<LI>Nested Class Summary<LI>Field Summary<LI>Constructor Summary<LI>Method Summary
|
||||||
|
<P>
|
||||||
|
<LI>Field Detail<LI>Constructor Detail<LI>Method Detail</UL>
|
||||||
|
Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</BLOCKQUOTE>
|
||||||
|
</BLOCKQUOTE>
|
||||||
|
<H3>
|
||||||
|
Annotation Type</H3>
|
||||||
|
<BLOCKQUOTE>
|
||||||
|
|
||||||
|
<P>
|
||||||
|
Each annotation type has its own separate page with the following sections:<UL>
|
||||||
|
<LI>Annotation Type declaration<LI>Annotation Type description<LI>Required Element Summary<LI>Optional Element Summary<LI>Element Detail</UL>
|
||||||
|
</BLOCKQUOTE>
|
||||||
|
</BLOCKQUOTE>
|
||||||
|
<H3>
|
||||||
|
Enum</H3>
|
||||||
|
<BLOCKQUOTE>
|
||||||
|
|
||||||
|
<P>
|
||||||
|
Each enum has its own separate page with the following sections:<UL>
|
||||||
|
<LI>Enum declaration<LI>Enum description<LI>Enum Constant Summary<LI>Enum Constant Detail</UL>
|
||||||
|
</BLOCKQUOTE>
|
||||||
|
<H3>
|
||||||
|
Tree (Class Hierarchy)</H3>
|
||||||
|
<BLOCKQUOTE>
|
||||||
|
There is a <A HREF="overview-tree.html">Class Hierarchy</A> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.<UL>
|
||||||
|
<LI>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.<LI>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</UL>
|
||||||
|
</BLOCKQUOTE>
|
||||||
|
<H3>
|
||||||
|
Deprecated API</H3>
|
||||||
|
<BLOCKQUOTE>
|
||||||
|
The <A HREF="deprecated-list.html">Deprecated API</A> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</BLOCKQUOTE>
|
||||||
|
<H3>
|
||||||
|
Index</H3>
|
||||||
|
<BLOCKQUOTE>
|
||||||
|
The <A HREF="index-all.html">Index</A> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</BLOCKQUOTE>
|
||||||
|
<H3>
|
||||||
|
Prev/Next</H3>
|
||||||
|
These links take you to the next or previous class, interface, package, or related page.<H3>
|
||||||
|
Frames/No Frames</H3>
|
||||||
|
These links show and hide the HTML frames. All pages are available with or without frames.
|
||||||
|
<P>
|
||||||
|
<H3>
|
||||||
|
Serialized Form</H3>
|
||||||
|
Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
|
||||||
|
<P>
|
||||||
|
<H3>
|
||||||
|
Constant Field Values</H3>
|
||||||
|
The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values.
|
||||||
|
<P>
|
||||||
|
<FONT SIZE="-1">
|
||||||
|
<EM>
|
||||||
|
This help file applies to API documentation generated using the standard doclet.</EM>
|
||||||
|
</FONT>
|
||||||
|
<BR>
|
||||||
|
<HR>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||||
|
<A NAME="navbar_bottom"><!-- --></A>
|
||||||
|
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||||
|
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||||
|
<TR>
|
||||||
|
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||||
|
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||||
|
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||||
|
<TR ALIGN="center" VALIGN="top">
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="org/libjpegturbo/turbojpeg/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="org/libjpegturbo/turbojpeg/package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||||
|
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT> </TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
</TD>
|
||||||
|
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||||
|
</EM>
|
||||||
|
</TD>
|
||||||
|
</TR>
|
||||||
|
|
||||||
|
<TR>
|
||||||
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||||
|
PREV
|
||||||
|
NEXT</FONT></TD>
|
||||||
|
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||||
|
<A HREF="index.html?help-doc.html" target="_top"><B>FRAMES</B></A>
|
||||||
|
<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A>
|
||||||
|
<SCRIPT type="text/javascript">
|
||||||
|
<!--
|
||||||
|
if(window==top) {
|
||||||
|
document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>');
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</SCRIPT>
|
||||||
|
<NOSCRIPT>
|
||||||
|
<A HREF="allclasses-noframe.html"><B>All Classes</B></A>
|
||||||
|
</NOSCRIPT>
|
||||||
|
|
||||||
|
|
||||||
|
</FONT></TD>
|
||||||
|
</TR>
|
||||||
|
</TABLE>
|
||||||
|
<A NAME="skip-navbar_bottom"></A>
|
||||||
|
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||||
|
|
||||||
|
<HR>
|
||||||
|
|
||||||
|
</BODY>
|
||||||
|
</HTML>
|