Path: blob/master/thirdparty/libjpeg-turbo/src/jdmaster.h
9904 views
/*1* jdmaster.h2*3* This file was part of the Independent JPEG Group's software:4* Copyright (C) 1991-1995, Thomas G. Lane.5* For conditions of distribution and use, see the accompanying README.ijg6* file.7*8* This file contains the master control structure for the JPEG decompressor.9*/1011/* Private state */1213typedef struct {14struct jpeg_decomp_master pub; /* public fields */1516int pass_number; /* # of passes completed */1718boolean using_merged_upsample; /* TRUE if using merged upsample/cconvert */1920/* Saved references to initialized quantizer modules,21* in case we need to switch modes.22*/23struct jpeg_color_quantizer *quantizer_1pass;24struct jpeg_color_quantizer *quantizer_2pass;25} my_decomp_master;2627typedef my_decomp_master *my_master_ptr;282930