filelist.txt 8.3 KB

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