*/
METHODDEF(void)
+#if defined(__VISAGECPP__)
+start_input_pass2 (j_decompress_ptr cinfo)
+#else
start_input_pass (j_decompress_ptr cinfo)
+#endif
{
cinfo->input_iMCU_row = 0;
start_iMCU_row(cinfo);
}
-
/*
* Initialize for an output processing pass.
*/
JBLOCK workspace;
int *coef_bits;
JQUANT_TBL *quanttbl;
- INT32 Q00,Q01,Q02,Q10,Q11,Q20, num;
+ JPEG_INT32 Q00,Q01,Q02,Q10,Q11,Q20, num;
int DC1,DC2,DC3,DC4,DC5,DC6,DC7,DC8,DC9;
int Al, pred;
(*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
SIZEOF(my_coef_controller));
cinfo->coef = (struct jpeg_d_coef_controller *) coef;
+#if defined(__VISAGECPP__)
+ coef->pub.start_input_pass2 = start_input_pass2;
+#else
coef->pub.start_input_pass = start_input_pass;
+#endif
+
coef->pub.start_output_pass = start_output_pass;
#ifdef BLOCK_SMOOTHING_SUPPORTED
coef->coef_bits_latch = NULL;
coef->pub.coef_arrays = NULL; /* flag for no virtual arrays */
}
}
+