/* The decompressor output side may not use these variables. */
int dc_tbl_no; /* DC entropy table selector (0..3) */
int ac_tbl_no; /* AC entropy table selector (0..3) */
-
+
/* Remaining fields should be treated as private by applications. */
-
+
/* These values are computed during compression or decompression startup: */
/* Component's size in DCT blocks.
* Any dummy blocks added to complete an MCU are not counted; therefore
cinfo->in_color_space = JCS_RGB;
cinfo->input_components = 3;
qjpeg_set_defaults (cinfo);
- qjpeg_set_quality (cinfo, quality, FALSE);
+ qjpeg_set_quality (cinfo, quality, false);
cinfo->comp_info[0].h_samp_factor = 2;
cinfo->comp_info[0].v_samp_factor = 2;
if(strlen(imagename) >= MAX_QPATH)
return; // can't add this
-
+
i = (CompressedImageCacheItem*) Z_Malloc(sizeof(CompressedImageCacheItem));
strlcpy(i->imagename, imagename, sizeof(i->imagename));
i->maxsize = maxsize;