Repo created
This commit is contained in:
parent
81b91f4139
commit
f8c34fa5ee
22732 changed files with 4815320 additions and 2 deletions
33
TMessagesProj/jni/mozjpeg/jdmaster.h
Normal file
33
TMessagesProj/jni/mozjpeg/jdmaster.h
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
/*
|
||||
* jdmaster.h
|
||||
*
|
||||
* This file was part of the Independent JPEG Group's software:
|
||||
* Copyright (C) 1991-1995, Thomas G. Lane.
|
||||
* For conditions of distribution and use, see the accompanying README.ijg
|
||||
* file.
|
||||
*
|
||||
* This file contains the master control structure for the JPEG decompressor.
|
||||
*/
|
||||
|
||||
/* Private state */
|
||||
|
||||
typedef struct {
|
||||
struct jpeg_decomp_master pub; /* public fields */
|
||||
|
||||
int pass_number; /* # of passes completed */
|
||||
|
||||
boolean using_merged_upsample; /* TRUE if using merged upsample/cconvert */
|
||||
|
||||
/* Saved references to initialized quantizer modules,
|
||||
* in case we need to switch modes.
|
||||
*/
|
||||
struct jpeg_color_quantizer *quantizer_1pass;
|
||||
struct jpeg_color_quantizer *quantizer_2pass;
|
||||
|
||||
/*
|
||||
* Permit users to replace the IDCT method
|
||||
*/
|
||||
jpeg_idct_method_selector custom_idct_selector;
|
||||
} my_decomp_master;
|
||||
|
||||
typedef my_decomp_master *my_master_ptr;
|
||||
Loading…
Add table
Add a link
Reference in a new issue