aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/filelist.txt
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 18:54:10 +1000
committerDavid Walter Seikel2013-01-13 18:54:10 +1000
commit959831f4ef5a3e797f576c3de08cd65032c997ad (patch)
treee7351908be5995f0b325b2ebeaa02d5a34b82583 /libraries/irrlicht-1.8/source/Irrlicht/jpeglib/filelist.txt
parentAdd info about changes to Irrlicht. (diff)
downloadSledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.zip
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.gz
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.bz2
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.xz
Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard.
Diffstat (limited to 'libraries/irrlicht-1.8/source/Irrlicht/jpeglib/filelist.txt')
-rw-r--r--libraries/irrlicht-1.8/source/Irrlicht/jpeglib/filelist.txt430
1 files changed, 215 insertions, 215 deletions
diff --git a/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/filelist.txt b/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/filelist.txt
index 040abff..7e05386 100644
--- a/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/filelist.txt
+++ b/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/filelist.txt
@@ -1,215 +1,215 @@
1IJG JPEG LIBRARY: FILE LIST 1IJG JPEG LIBRARY: FILE LIST
2 2
3Copyright (C) 1994-2009, Thomas G. Lane, Guido Vollbeding. 3Copyright (C) 1994-2009, Thomas G. Lane, Guido Vollbeding.
4This file is part of the Independent JPEG Group's software. 4This file is part of the Independent JPEG Group's software.
5For conditions of distribution and use, see the accompanying README file. 5For conditions of distribution and use, see the accompanying README file.
6 6
7 7
8Here is a road map to the files in the IJG JPEG distribution. The 8Here is a road map to the files in the IJG JPEG distribution. The
9distribution includes the JPEG library proper, plus two application 9distribution includes the JPEG library proper, plus two application
10programs ("cjpeg" and "djpeg") which use the library to convert JPEG 10programs ("cjpeg" and "djpeg") which use the library to convert JPEG
11files to and from some other popular image formats. A third application 11files to and from some other popular image formats. A third application
12"jpegtran" uses the library to do lossless conversion between different 12"jpegtran" uses the library to do lossless conversion between different
13variants of JPEG. There are also two stand-alone applications, 13variants of JPEG. There are also two stand-alone applications,
14"rdjpgcom" and "wrjpgcom". 14"rdjpgcom" and "wrjpgcom".
15 15
16 16
17THE JPEG LIBRARY 17THE JPEG LIBRARY
18================ 18================
19 19
20Include files: 20Include files:
21 21
22jpeglib.h JPEG library's exported data and function declarations. 22jpeglib.h JPEG library's exported data and function declarations.
23jconfig.h Configuration declarations. Note: this file is not present 23jconfig.h Configuration declarations. Note: this file is not present
24 in the distribution; it is generated during installation. 24 in the distribution; it is generated during installation.
25jmorecfg.h Additional configuration declarations; need not be changed 25jmorecfg.h Additional configuration declarations; need not be changed
26 for a standard installation. 26 for a standard installation.
27jerror.h Declares JPEG library's error and trace message codes. 27jerror.h Declares JPEG library's error and trace message codes.
28jinclude.h Central include file used by all IJG .c files to reference 28jinclude.h Central include file used by all IJG .c files to reference
29 system include files. 29 system include files.
30jpegint.h JPEG library's internal data structures. 30jpegint.h JPEG library's internal data structures.
31jdct.h Private declarations for forward & reverse DCT subsystems. 31jdct.h Private declarations for forward & reverse DCT subsystems.
32jmemsys.h Private declarations for memory management subsystem. 32jmemsys.h Private declarations for memory management subsystem.
33jversion.h Version information. 33jversion.h Version information.
34 34
35Applications using the library should include jpeglib.h (which in turn 35Applications using the library should include jpeglib.h (which in turn
36includes jconfig.h and jmorecfg.h). Optionally, jerror.h may be included 36includes jconfig.h and jmorecfg.h). Optionally, jerror.h may be included
37if the application needs to reference individual JPEG error codes. The 37if the application needs to reference individual JPEG error codes. The
38other include files are intended for internal use and would not normally 38other include files are intended for internal use and would not normally
39be included by an application program. (cjpeg/djpeg/etc do use jinclude.h, 39be included by an application program. (cjpeg/djpeg/etc do use jinclude.h,
40since its function is to improve portability of the whole IJG distribution. 40since its function is to improve portability of the whole IJG distribution.
41Most other applications will directly include the system include files they 41Most other applications will directly include the system include files they
42want, and hence won't need jinclude.h.) 42want, and hence won't need jinclude.h.)
43 43
44 44
45C source code files: 45C source code files:
46 46
47These files contain most of the functions intended to be called directly by 47These files contain most of the functions intended to be called directly by
48an application program: 48an application program:
49 49
50jcapimin.c Application program interface: core routines for compression. 50jcapimin.c Application program interface: core routines for compression.
51jcapistd.c Application program interface: standard compression. 51jcapistd.c Application program interface: standard compression.
52jdapimin.c Application program interface: core routines for decompression. 52jdapimin.c Application program interface: core routines for decompression.
53jdapistd.c Application program interface: standard decompression. 53jdapistd.c Application program interface: standard decompression.
54jcomapi.c Application program interface routines common to compression 54jcomapi.c Application program interface routines common to compression
55 and decompression. 55 and decompression.
56jcparam.c Compression parameter setting helper routines. 56jcparam.c Compression parameter setting helper routines.
57jctrans.c API and library routines for transcoding compression. 57jctrans.c API and library routines for transcoding compression.
58jdtrans.c API and library routines for transcoding decompression. 58jdtrans.c API and library routines for transcoding decompression.
59 59
60Compression side of the library: 60Compression side of the library:
61 61
62jcinit.c Initialization: determines which other modules to use. 62jcinit.c Initialization: determines which other modules to use.
63jcmaster.c Master control: setup and inter-pass sequencing logic. 63jcmaster.c Master control: setup and inter-pass sequencing logic.
64jcmainct.c Main buffer controller (preprocessor => JPEG compressor). 64jcmainct.c Main buffer controller (preprocessor => JPEG compressor).
65jcprepct.c Preprocessor buffer controller. 65jcprepct.c Preprocessor buffer controller.
66jccoefct.c Buffer controller for DCT coefficient buffer. 66jccoefct.c Buffer controller for DCT coefficient buffer.
67jccolor.c Color space conversion. 67jccolor.c Color space conversion.
68jcsample.c Downsampling. 68jcsample.c Downsampling.
69jcdctmgr.c DCT manager (DCT implementation selection & control). 69jcdctmgr.c DCT manager (DCT implementation selection & control).
70jfdctint.c Forward DCT using slow-but-accurate integer method. 70jfdctint.c Forward DCT using slow-but-accurate integer method.
71jfdctfst.c Forward DCT using faster, less accurate integer method. 71jfdctfst.c Forward DCT using faster, less accurate integer method.
72jfdctflt.c Forward DCT using floating-point arithmetic. 72jfdctflt.c Forward DCT using floating-point arithmetic.
73jchuff.c Huffman entropy coding. 73jchuff.c Huffman entropy coding.
74jcarith.c Arithmetic entropy coding. 74jcarith.c Arithmetic entropy coding.
75jcmarker.c JPEG marker writing. 75jcmarker.c JPEG marker writing.
76jdatadst.c Data destination managers for memory and stdio output. 76jdatadst.c Data destination managers for memory and stdio output.
77 77
78Decompression side of the library: 78Decompression side of the library:
79 79
80jdmaster.c Master control: determines which other modules to use. 80jdmaster.c Master control: determines which other modules to use.
81jdinput.c Input controller: controls input processing modules. 81jdinput.c Input controller: controls input processing modules.
82jdmainct.c Main buffer controller (JPEG decompressor => postprocessor). 82jdmainct.c Main buffer controller (JPEG decompressor => postprocessor).
83jdcoefct.c Buffer controller for DCT coefficient buffer. 83jdcoefct.c Buffer controller for DCT coefficient buffer.
84jdpostct.c Postprocessor buffer controller. 84jdpostct.c Postprocessor buffer controller.
85jdmarker.c JPEG marker reading. 85jdmarker.c JPEG marker reading.
86jdhuff.c Huffman entropy decoding. 86jdhuff.c Huffman entropy decoding.
87jdarith.c Arithmetic entropy decoding. 87jdarith.c Arithmetic entropy decoding.
88jddctmgr.c IDCT manager (IDCT implementation selection & control). 88jddctmgr.c IDCT manager (IDCT implementation selection & control).
89jidctint.c Inverse DCT using slow-but-accurate integer method. 89jidctint.c Inverse DCT using slow-but-accurate integer method.
90jidctfst.c Inverse DCT using faster, less accurate integer method. 90jidctfst.c Inverse DCT using faster, less accurate integer method.
91jidctflt.c Inverse DCT using floating-point arithmetic. 91jidctflt.c Inverse DCT using floating-point arithmetic.
92jdsample.c Upsampling. 92jdsample.c Upsampling.
93jdcolor.c Color space conversion. 93jdcolor.c Color space conversion.
94jdmerge.c Merged upsampling/color conversion (faster, lower quality). 94jdmerge.c Merged upsampling/color conversion (faster, lower quality).
95jquant1.c One-pass color quantization using a fixed-spacing colormap. 95jquant1.c One-pass color quantization using a fixed-spacing colormap.
96jquant2.c Two-pass color quantization using a custom-generated colormap. 96jquant2.c Two-pass color quantization using a custom-generated colormap.
97 Also handles one-pass quantization to an externally given map. 97 Also handles one-pass quantization to an externally given map.
98jdatasrc.c Data source managers for memory and stdio input. 98jdatasrc.c Data source managers for memory and stdio input.
99 99
100Support files for both compression and decompression: 100Support files for both compression and decompression:
101 101
102jaricom.c Tables for common use in arithmetic entropy encoding and 102jaricom.c Tables for common use in arithmetic entropy encoding and
103 decoding routines. 103 decoding routines.
104jerror.c Standard error handling routines (application replaceable). 104jerror.c Standard error handling routines (application replaceable).
105jmemmgr.c System-independent (more or less) memory management code. 105jmemmgr.c System-independent (more or less) memory management code.
106jutils.c Miscellaneous utility routines. 106jutils.c Miscellaneous utility routines.
107 107
108jmemmgr.c relies on a system-dependent memory management module. The IJG 108jmemmgr.c relies on a system-dependent memory management module. The IJG
109distribution includes the following implementations of the system-dependent 109distribution includes the following implementations of the system-dependent
110module: 110module:
111 111
112jmemnobs.c "No backing store": assumes adequate virtual memory exists. 112jmemnobs.c "No backing store": assumes adequate virtual memory exists.
113jmemansi.c Makes temporary files with ANSI-standard routine tmpfile(). 113jmemansi.c Makes temporary files with ANSI-standard routine tmpfile().
114jmemname.c Makes temporary files with program-generated file names. 114jmemname.c Makes temporary files with program-generated file names.
115jmemdos.c Custom implementation for MS-DOS (16-bit environment only): 115jmemdos.c Custom implementation for MS-DOS (16-bit environment only):
116 can use extended and expanded memory as well as temp files. 116 can use extended and expanded memory as well as temp files.
117jmemmac.c Custom implementation for Apple Macintosh. 117jmemmac.c Custom implementation for Apple Macintosh.
118 118
119Exactly one of the system-dependent modules should be configured into an 119Exactly one of the system-dependent modules should be configured into an
120installed JPEG library (see install.txt for hints about which one to use). 120installed JPEG library (see install.txt for hints about which one to use).
121On unusual systems you may find it worthwhile to make a special 121On unusual systems you may find it worthwhile to make a special
122system-dependent memory manager. 122system-dependent memory manager.
123 123
124 124
125Non-C source code files: 125Non-C source code files:
126 126
127jmemdosa.asm 80x86 assembly code support for jmemdos.c; used only in 127jmemdosa.asm 80x86 assembly code support for jmemdos.c; used only in
128 MS-DOS-specific configurations of the JPEG library. 128 MS-DOS-specific configurations of the JPEG library.
129 129
130 130
131CJPEG/DJPEG/JPEGTRAN 131CJPEG/DJPEG/JPEGTRAN
132==================== 132====================
133 133
134Include files: 134Include files:
135 135
136cdjpeg.h Declarations shared by cjpeg/djpeg/jpegtran modules. 136cdjpeg.h Declarations shared by cjpeg/djpeg/jpegtran modules.
137cderror.h Additional error and trace message codes for cjpeg et al. 137cderror.h Additional error and trace message codes for cjpeg et al.
138transupp.h Declarations for jpegtran support routines in transupp.c. 138transupp.h Declarations for jpegtran support routines in transupp.c.
139 139
140C source code files: 140C source code files:
141 141
142cjpeg.c Main program for cjpeg. 142cjpeg.c Main program for cjpeg.
143djpeg.c Main program for djpeg. 143djpeg.c Main program for djpeg.
144jpegtran.c Main program for jpegtran. 144jpegtran.c Main program for jpegtran.
145cdjpeg.c Utility routines used by all three programs. 145cdjpeg.c Utility routines used by all three programs.
146rdcolmap.c Code to read a colormap file for djpeg's "-map" switch. 146rdcolmap.c Code to read a colormap file for djpeg's "-map" switch.
147rdswitch.c Code to process some of cjpeg's more complex switches. 147rdswitch.c Code to process some of cjpeg's more complex switches.
148 Also used by jpegtran. 148 Also used by jpegtran.
149transupp.c Support code for jpegtran: lossless image manipulations. 149transupp.c Support code for jpegtran: lossless image manipulations.
150 150
151Image file reader modules for cjpeg: 151Image file reader modules for cjpeg:
152 152
153rdbmp.c BMP file input. 153rdbmp.c BMP file input.
154rdgif.c GIF file input (now just a stub). 154rdgif.c GIF file input (now just a stub).
155rdppm.c PPM/PGM file input. 155rdppm.c PPM/PGM file input.
156rdrle.c Utah RLE file input. 156rdrle.c Utah RLE file input.
157rdtarga.c Targa file input. 157rdtarga.c Targa file input.
158 158
159Image file writer modules for djpeg: 159Image file writer modules for djpeg:
160 160
161wrbmp.c BMP file output. 161wrbmp.c BMP file output.
162wrgif.c GIF file output (a mere shadow of its former self). 162wrgif.c GIF file output (a mere shadow of its former self).
163wrppm.c PPM/PGM file output. 163wrppm.c PPM/PGM file output.
164wrrle.c Utah RLE file output. 164wrrle.c Utah RLE file output.
165wrtarga.c Targa file output. 165wrtarga.c Targa file output.
166 166
167 167
168RDJPGCOM/WRJPGCOM 168RDJPGCOM/WRJPGCOM
169================= 169=================
170 170
171C source code files: 171C source code files:
172 172
173rdjpgcom.c Stand-alone rdjpgcom application. 173rdjpgcom.c Stand-alone rdjpgcom application.
174wrjpgcom.c Stand-alone wrjpgcom application. 174wrjpgcom.c Stand-alone wrjpgcom application.
175 175
176These programs do not depend on the IJG library. They do use 176These programs do not depend on the IJG library. They do use
177jconfig.h and jinclude.h, only to improve portability. 177jconfig.h and jinclude.h, only to improve portability.
178 178
179 179
180ADDITIONAL FILES 180ADDITIONAL FILES
181================ 181================
182 182
183Documentation (see README for a guide to the documentation files): 183Documentation (see README for a guide to the documentation files):
184 184
185README Master documentation file. 185README Master documentation file.
186*.txt Other documentation files. 186*.txt Other documentation files.
187*.1 Documentation in Unix man page format. 187*.1 Documentation in Unix man page format.
188change.log Version-to-version change highlights. 188change.log Version-to-version change highlights.
189example.c Sample code for calling JPEG library. 189example.c Sample code for calling JPEG library.
190 190
191Configuration/installation files and programs (see install.txt for more info): 191Configuration/installation files and programs (see install.txt for more info):
192 192
193configure Unix shell script to perform automatic configuration. 193configure Unix shell script to perform automatic configuration.
194configure.ac Source file for use with Autoconf to generate configure. 194configure.ac Source file for use with Autoconf to generate configure.
195ltmain.sh Support scripts for configure (from GNU libtool). 195ltmain.sh Support scripts for configure (from GNU libtool).
196config.guess 196config.guess
197config.sub 197config.sub
198depcomp 198depcomp
199missing 199missing
200install-sh Install shell script for those Unix systems lacking one. 200install-sh Install shell script for those Unix systems lacking one.
201Makefile.in Makefile input for configure. 201Makefile.in Makefile input for configure.
202Makefile.am Source file for use with Automake to generate Makefile.in. 202Makefile.am Source file for use with Automake to generate Makefile.in.
203ckconfig.c Program to generate jconfig.h on non-Unix systems. 203ckconfig.c Program to generate jconfig.h on non-Unix systems.
204jconfig.txt Template for making jconfig.h by hand. 204jconfig.txt Template for making jconfig.h by hand.
205mak*.* Sample makefiles for particular systems. 205mak*.* Sample makefiles for particular systems.
206jconfig.* Sample jconfig.h for particular systems. 206jconfig.* Sample jconfig.h for particular systems.
207libjpeg.map Script to generate shared library with versioned symbols. 207libjpeg.map Script to generate shared library with versioned symbols.
208aclocal.m4 M4 macro definitions for use with Autoconf. 208aclocal.m4 M4 macro definitions for use with Autoconf.
209ansi2knr.c De-ANSIfier for pre-ANSI C compilers (courtesy of 209ansi2knr.c De-ANSIfier for pre-ANSI C compilers (courtesy of
210 L. Peter Deutsch and Aladdin Enterprises). 210 L. Peter Deutsch and Aladdin Enterprises).
211 211
212Test files (see install.txt for test procedure): 212Test files (see install.txt for test procedure):
213 213
214test*.* Source and comparison files for confidence test. 214test*.* Source and comparison files for confidence test.
215 These are binary image files, NOT text files. 215 These are binary image files, NOT text files.