~cosme/ubuntu/precise/freeimage/freeimage-3.15.1

« back to all changes in this revision

Viewing changes to Source/LibJPEG/cdjpeg.h

  • Committer: Bazaar Package Importer
  • Author(s): Cosme Domínguez Díaz
  • Date: 2010-07-20 13:42:15 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100720134215-xt1454zaedv3b604
Tags: 3.13.1-0ubuntu1
* New upstream release. Closes: (LP: #607800)
 - Updated debian/freeimage-get-orig-source script.
 - Removing no longer necessary debian/patches/* and
   the patch system in debian/rules.
 - Updated debian/rules to work with the new Makefiles.
 - Drop from -O3 to -O2 and use lzma compression saves
   ~10 MB of free space. 
* lintian stuff
 - fixed debhelper-but-no-misc-depends
 - fixed ldconfig-symlink-missing-for-shlib

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
#define jinit_write_targa       jIWrTarga
105
105
#define read_quant_tables       RdQTables
106
106
#define read_scan_script        RdScnScript
 
107
#define set_quality_ratings     SetQRates
107
108
#define set_quant_slots         SetQSlots
108
109
#define set_sample_factors      SetSFacts
109
110
#define read_color_map          RdCMap
131
132
/* cjpeg support routines (in rdswitch.c) */
132
133
 
133
134
EXTERN(boolean) read_quant_tables JPP((j_compress_ptr cinfo, char * filename,
134
 
                                    int scale_factor, boolean force_baseline));
 
135
                                       boolean force_baseline));
135
136
EXTERN(boolean) read_scan_script JPP((j_compress_ptr cinfo, char * filename));
 
137
EXTERN(boolean) set_quality_ratings JPP((j_compress_ptr cinfo, char *arg,
 
138
                                         boolean force_baseline));
136
139
EXTERN(boolean) set_quant_slots JPP((j_compress_ptr cinfo, char *arg));
137
140
EXTERN(boolean) set_sample_factors JPP((j_compress_ptr cinfo, char *arg));
138
141