jdcoefct.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742
  1. /*
  2. * jdcoefct.c
  3. *
  4. * Copyright (C) 1994-1997, Thomas G. Lane.
  5. * Modified 2002-2011 by Guido Vollbeding.
  6. * This file is part of the Independent JPEG Group's software.
  7. * For conditions of distribution and use, see the accompanying README file.
  8. *
  9. * This file contains the coefficient buffer controller for decompression.
  10. * This controller is the top level of the JPEG decompressor proper.
  11. * The coefficient buffer lies between entropy decoding and inverse-DCT steps.
  12. *
  13. * In buffered-image mode, this controller is the interface between
  14. * input-oriented processing and output-oriented processing.
  15. * Also, the input side (only) is used when reading a file for transcoding.
  16. */
  17. #define JPEG_INTERNALS
  18. #include "jinclude.h"
  19. #include "jpeglib.h"
  20. /* Block smoothing is only applicable for progressive JPEG, so: */
  21. #ifndef D_PROGRESSIVE_SUPPORTED
  22. #undef BLOCK_SMOOTHING_SUPPORTED
  23. #endif
  24. /* Private buffer controller object */
  25. typedef struct {
  26. struct jpeg_d_coef_controller pub; /* public fields */
  27. /* These variables keep track of the current location of the input side. */
  28. /* cinfo->input_iMCU_row is also used for this. */
  29. JDIMENSION MCU_ctr; /* counts MCUs processed in current row */
  30. int MCU_vert_offset; /* counts MCU rows within iMCU row */
  31. int MCU_rows_per_iMCU_row; /* number of such rows needed */
  32. /* The output side's location is represented by cinfo->output_iMCU_row. */
  33. /* In single-pass modes, it's sufficient to buffer just one MCU.
  34. * We allocate a workspace of D_MAX_BLOCKS_IN_MCU coefficient blocks,
  35. * and let the entropy decoder write into that workspace each time.
  36. * (On 80x86, the workspace is FAR even though it's not really very big;
  37. * this is to keep the module interfaces unchanged when a large coefficient
  38. * buffer is necessary.)
  39. * In multi-pass modes, this array points to the current MCU's blocks
  40. * within the virtual arrays; it is used only by the input side.
  41. */
  42. JBLOCKROW MCU_buffer[D_MAX_BLOCKS_IN_MCU];
  43. #ifdef D_MULTISCAN_FILES_SUPPORTED
  44. /* In multi-pass modes, we need a virtual block array for each component. */
  45. jvirt_barray_ptr whole_image[MAX_COMPONENTS];
  46. #endif
  47. #ifdef BLOCK_SMOOTHING_SUPPORTED
  48. /* When doing block smoothing, we latch coefficient Al values here */
  49. int * coef_bits_latch;
  50. #define SAVED_COEFS 6 /* we save coef_bits[0..5] */
  51. #endif
  52. } my_coef_controller;
  53. typedef my_coef_controller * my_coef_ptr;
  54. /* Forward declarations */
  55. METHODDEF(int) decompress_onepass
  56. JPP((j_decompress_ptr cinfo, JSAMPIMAGE output_buf));
  57. #ifdef D_MULTISCAN_FILES_SUPPORTED
  58. METHODDEF(int) decompress_data
  59. JPP((j_decompress_ptr cinfo, JSAMPIMAGE output_buf));
  60. #endif
  61. #ifdef BLOCK_SMOOTHING_SUPPORTED
  62. LOCAL(boolean) smoothing_ok JPP((j_decompress_ptr cinfo));
  63. METHODDEF(int) decompress_smooth_data
  64. JPP((j_decompress_ptr cinfo, JSAMPIMAGE output_buf));
  65. #endif
  66. LOCAL(void)
  67. start_iMCU_row (j_decompress_ptr cinfo)
  68. /* Reset within-iMCU-row counters for a new row (input side) */
  69. {
  70. my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  71. /* In an interleaved scan, an MCU row is the same as an iMCU row.
  72. * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
  73. * But at the bottom of the image, process only what's left.
  74. */
  75. if (cinfo->comps_in_scan > 1) {
  76. coef->MCU_rows_per_iMCU_row = 1;
  77. } else {
  78. if (cinfo->input_iMCU_row < (cinfo->total_iMCU_rows-1))
  79. coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
  80. else
  81. coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
  82. }
  83. coef->MCU_ctr = 0;
  84. coef->MCU_vert_offset = 0;
  85. }
  86. /*
  87. * Initialize for an input processing pass.
  88. */
  89. METHODDEF(void)
  90. start_input_pass (j_decompress_ptr cinfo)
  91. {
  92. cinfo->input_iMCU_row = 0;
  93. start_iMCU_row(cinfo);
  94. }
  95. /*
  96. * Initialize for an output processing pass.
  97. */
  98. METHODDEF(void)
  99. start_output_pass (j_decompress_ptr cinfo)
  100. {
  101. #ifdef BLOCK_SMOOTHING_SUPPORTED
  102. my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  103. /* If multipass, check to see whether to use block smoothing on this pass */
  104. if (coef->pub.coef_arrays != NULL) {
  105. if (cinfo->do_block_smoothing && smoothing_ok(cinfo))
  106. coef->pub.decompress_data = decompress_smooth_data;
  107. else
  108. coef->pub.decompress_data = decompress_data;
  109. }
  110. #endif
  111. cinfo->output_iMCU_row = 0;
  112. }
  113. /*
  114. * Decompress and return some data in the single-pass case.
  115. * Always attempts to emit one fully interleaved MCU row ("iMCU" row).
  116. * Input and output must run in lockstep since we have only a one-MCU buffer.
  117. * Return value is JPEG_ROW_COMPLETED, JPEG_SCAN_COMPLETED, or JPEG_SUSPENDED.
  118. *
  119. * NB: output_buf contains a plane for each component in image,
  120. * which we index according to the component's SOF position.
  121. */
  122. METHODDEF(int)
  123. decompress_onepass (j_decompress_ptr cinfo, JSAMPIMAGE output_buf)
  124. {
  125. my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  126. JDIMENSION MCU_col_num; /* index of current MCU within row */
  127. JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
  128. JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
  129. int blkn, ci, xindex, yindex, yoffset, useful_width;
  130. JSAMPARRAY output_ptr;
  131. JDIMENSION start_col, output_col;
  132. jpeg_component_info *compptr;
  133. inverse_DCT_method_ptr inverse_DCT;
  134. /* Loop to process as much as one whole iMCU row */
  135. for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
  136. yoffset++) {
  137. for (MCU_col_num = coef->MCU_ctr; MCU_col_num <= last_MCU_col;
  138. MCU_col_num++) {
  139. /* Try to fetch an MCU. Entropy decoder expects buffer to be zeroed. */
  140. if (cinfo->lim_Se) /* can bypass in DC only case */
  141. FMEMZERO((void FAR *) coef->MCU_buffer[0],
  142. (size_t) (cinfo->blocks_in_MCU * SIZEOF(JBLOCK)));
  143. if (! (*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer)) {
  144. /* Suspension forced; update state counters and exit */
  145. coef->MCU_vert_offset = yoffset;
  146. coef->MCU_ctr = MCU_col_num;
  147. return JPEG_SUSPENDED;
  148. }
  149. /* Determine where data should go in output_buf and do the IDCT thing.
  150. * We skip dummy blocks at the right and bottom edges (but blkn gets
  151. * incremented past them!). Note the inner loop relies on having
  152. * allocated the MCU_buffer[] blocks sequentially.
  153. */
  154. blkn = 0; /* index of current DCT block within MCU */
  155. for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  156. compptr = cinfo->cur_comp_info[ci];
  157. /* Don't bother to IDCT an uninteresting component. */
  158. if (! compptr->component_needed) {
  159. blkn += compptr->MCU_blocks;
  160. continue;
  161. }
  162. inverse_DCT = cinfo->idct->inverse_DCT[compptr->component_index];
  163. useful_width = (MCU_col_num < last_MCU_col) ? compptr->MCU_width
  164. : compptr->last_col_width;
  165. output_ptr = output_buf[compptr->component_index] +
  166. yoffset * compptr->DCT_v_scaled_size;
  167. start_col = MCU_col_num * compptr->MCU_sample_width;
  168. for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
  169. if (cinfo->input_iMCU_row < last_iMCU_row ||
  170. yoffset+yindex < compptr->last_row_height) {
  171. output_col = start_col;
  172. for (xindex = 0; xindex < useful_width; xindex++) {
  173. (*inverse_DCT) (cinfo, compptr,
  174. (JCOEFPTR) coef->MCU_buffer[blkn+xindex],
  175. output_ptr, output_col);
  176. output_col += compptr->DCT_h_scaled_size;
  177. }
  178. }
  179. blkn += compptr->MCU_width;
  180. output_ptr += compptr->DCT_v_scaled_size;
  181. }
  182. }
  183. }
  184. /* Completed an MCU row, but perhaps not an iMCU row */
  185. coef->MCU_ctr = 0;
  186. }
  187. /* Completed the iMCU row, advance counters for next one */
  188. cinfo->output_iMCU_row++;
  189. if (++(cinfo->input_iMCU_row) < cinfo->total_iMCU_rows) {
  190. start_iMCU_row(cinfo);
  191. return JPEG_ROW_COMPLETED;
  192. }
  193. /* Completed the scan */
  194. (*cinfo->inputctl->finish_input_pass) (cinfo);
  195. return JPEG_SCAN_COMPLETED;
  196. }
  197. /*
  198. * Dummy consume-input routine for single-pass operation.
  199. */
  200. METHODDEF(int)
  201. dummy_consume_data (j_decompress_ptr cinfo)
  202. {
  203. return JPEG_SUSPENDED; /* Always indicate nothing was done */
  204. }
  205. #ifdef D_MULTISCAN_FILES_SUPPORTED
  206. /*
  207. * Consume input data and store it in the full-image coefficient buffer.
  208. * We read as much as one fully interleaved MCU row ("iMCU" row) per call,
  209. * ie, v_samp_factor block rows for each component in the scan.
  210. * Return value is JPEG_ROW_COMPLETED, JPEG_SCAN_COMPLETED, or JPEG_SUSPENDED.
  211. */
  212. METHODDEF(int)
  213. consume_data (j_decompress_ptr cinfo)
  214. {
  215. my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  216. JDIMENSION MCU_col_num; /* index of current MCU within row */
  217. int blkn, ci, xindex, yindex, yoffset;
  218. JDIMENSION start_col;
  219. JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
  220. JBLOCKROW buffer_ptr;
  221. jpeg_component_info *compptr;
  222. /* Align the virtual buffers for the components used in this scan. */
  223. for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  224. compptr = cinfo->cur_comp_info[ci];
  225. buffer[ci] = (*cinfo->mem->access_virt_barray)
  226. ((j_common_ptr) cinfo, coef->whole_image[compptr->component_index],
  227. cinfo->input_iMCU_row * compptr->v_samp_factor,
  228. (JDIMENSION) compptr->v_samp_factor, TRUE);
  229. /* Note: entropy decoder expects buffer to be zeroed,
  230. * but this is handled automatically by the memory manager
  231. * because we requested a pre-zeroed array.
  232. */
  233. }
  234. /* Loop to process one whole iMCU row */
  235. for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
  236. yoffset++) {
  237. for (MCU_col_num = coef->MCU_ctr; MCU_col_num < cinfo->MCUs_per_row;
  238. MCU_col_num++) {
  239. /* Construct list of pointers to DCT blocks belonging to this MCU */
  240. blkn = 0; /* index of current DCT block within MCU */
  241. for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
  242. compptr = cinfo->cur_comp_info[ci];
  243. start_col = MCU_col_num * compptr->MCU_width;
  244. for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
  245. buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
  246. for (xindex = 0; xindex < compptr->MCU_width; xindex++) {
  247. coef->MCU_buffer[blkn++] = buffer_ptr++;
  248. }
  249. }
  250. }
  251. /* Try to fetch the MCU. */
  252. if (! (*cinfo->entropy->decode_mcu) (cinfo, coef->MCU_buffer)) {
  253. /* Suspension forced; update state counters and exit */
  254. coef->MCU_vert_offset = yoffset;
  255. coef->MCU_ctr = MCU_col_num;
  256. return JPEG_SUSPENDED;
  257. }
  258. }
  259. /* Completed an MCU row, but perhaps not an iMCU row */
  260. coef->MCU_ctr = 0;
  261. }
  262. /* Completed the iMCU row, advance counters for next one */
  263. if (++(cinfo->input_iMCU_row) < cinfo->total_iMCU_rows) {
  264. start_iMCU_row(cinfo);
  265. return JPEG_ROW_COMPLETED;
  266. }
  267. /* Completed the scan */
  268. (*cinfo->inputctl->finish_input_pass) (cinfo);
  269. return JPEG_SCAN_COMPLETED;
  270. }
  271. /*
  272. * Decompress and return some data in the multi-pass case.
  273. * Always attempts to emit one fully interleaved MCU row ("iMCU" row).
  274. * Return value is JPEG_ROW_COMPLETED, JPEG_SCAN_COMPLETED, or JPEG_SUSPENDED.
  275. *
  276. * NB: output_buf contains a plane for each component in image.
  277. */
  278. METHODDEF(int)
  279. decompress_data (j_decompress_ptr cinfo, JSAMPIMAGE output_buf)
  280. {
  281. my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  282. JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
  283. JDIMENSION block_num;
  284. int ci, block_row, block_rows;
  285. JBLOCKARRAY buffer;
  286. JBLOCKROW buffer_ptr;
  287. JSAMPARRAY output_ptr;
  288. JDIMENSION output_col;
  289. jpeg_component_info *compptr;
  290. inverse_DCT_method_ptr inverse_DCT;
  291. /* Force some input to be done if we are getting ahead of the input. */
  292. while (cinfo->input_scan_number < cinfo->output_scan_number ||
  293. (cinfo->input_scan_number == cinfo->output_scan_number &&
  294. cinfo->input_iMCU_row <= cinfo->output_iMCU_row)) {
  295. if ((*cinfo->inputctl->consume_input)(cinfo) == JPEG_SUSPENDED)
  296. return JPEG_SUSPENDED;
  297. }
  298. /* OK, output from the virtual arrays. */
  299. for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  300. ci++, compptr++) {
  301. /* Don't bother to IDCT an uninteresting component. */
  302. if (! compptr->component_needed)
  303. continue;
  304. /* Align the virtual buffer for this component. */
  305. buffer = (*cinfo->mem->access_virt_barray)
  306. ((j_common_ptr) cinfo, coef->whole_image[ci],
  307. cinfo->output_iMCU_row * compptr->v_samp_factor,
  308. (JDIMENSION) compptr->v_samp_factor, FALSE);
  309. /* Count non-dummy DCT block rows in this iMCU row. */
  310. if (cinfo->output_iMCU_row < last_iMCU_row)
  311. block_rows = compptr->v_samp_factor;
  312. else {
  313. /* NB: can't use last_row_height here; it is input-side-dependent! */
  314. block_rows = (int) (compptr->height_in_blocks % compptr->v_samp_factor);
  315. if (block_rows == 0) block_rows = compptr->v_samp_factor;
  316. }
  317. inverse_DCT = cinfo->idct->inverse_DCT[ci];
  318. output_ptr = output_buf[ci];
  319. /* Loop over all DCT blocks to be processed. */
  320. for (block_row = 0; block_row < block_rows; block_row++) {
  321. buffer_ptr = buffer[block_row];
  322. output_col = 0;
  323. for (block_num = 0; block_num < compptr->width_in_blocks; block_num++) {
  324. (*inverse_DCT) (cinfo, compptr, (JCOEFPTR) buffer_ptr,
  325. output_ptr, output_col);
  326. buffer_ptr++;
  327. output_col += compptr->DCT_h_scaled_size;
  328. }
  329. output_ptr += compptr->DCT_v_scaled_size;
  330. }
  331. }
  332. if (++(cinfo->output_iMCU_row) < cinfo->total_iMCU_rows)
  333. return JPEG_ROW_COMPLETED;
  334. return JPEG_SCAN_COMPLETED;
  335. }
  336. #endif /* D_MULTISCAN_FILES_SUPPORTED */
  337. #ifdef BLOCK_SMOOTHING_SUPPORTED
  338. /*
  339. * This code applies interblock smoothing as described by section K.8
  340. * of the JPEG standard: the first 5 AC coefficients are estimated from
  341. * the DC values of a DCT block and its 8 neighboring blocks.
  342. * We apply smoothing only for progressive JPEG decoding, and only if
  343. * the coefficients it can estimate are not yet known to full precision.
  344. */
  345. /* Natural-order array positions of the first 5 zigzag-order coefficients */
  346. #define Q01_POS 1
  347. #define Q10_POS 8
  348. #define Q20_POS 16
  349. #define Q11_POS 9
  350. #define Q02_POS 2
  351. /*
  352. * Determine whether block smoothing is applicable and safe.
  353. * We also latch the current states of the coef_bits[] entries for the
  354. * AC coefficients; otherwise, if the input side of the decompressor
  355. * advances into a new scan, we might think the coefficients are known
  356. * more accurately than they really are.
  357. */
  358. LOCAL(boolean)
  359. smoothing_ok (j_decompress_ptr cinfo)
  360. {
  361. my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  362. boolean smoothing_useful = FALSE;
  363. int ci, coefi;
  364. jpeg_component_info *compptr;
  365. JQUANT_TBL * qtable;
  366. int * coef_bits;
  367. int * coef_bits_latch;
  368. if (! cinfo->progressive_mode || cinfo->coef_bits == NULL)
  369. return FALSE;
  370. /* Allocate latch area if not already done */
  371. if (coef->coef_bits_latch == NULL)
  372. coef->coef_bits_latch = (int *)
  373. (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  374. cinfo->num_components *
  375. (SAVED_COEFS * SIZEOF(int)));
  376. coef_bits_latch = coef->coef_bits_latch;
  377. for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  378. ci++, compptr++) {
  379. /* All components' quantization values must already be latched. */
  380. if ((qtable = compptr->quant_table) == NULL)
  381. return FALSE;
  382. /* Verify DC & first 5 AC quantizers are nonzero to avoid zero-divide. */
  383. if (qtable->quantval[0] == 0 ||
  384. qtable->quantval[Q01_POS] == 0 ||
  385. qtable->quantval[Q10_POS] == 0 ||
  386. qtable->quantval[Q20_POS] == 0 ||
  387. qtable->quantval[Q11_POS] == 0 ||
  388. qtable->quantval[Q02_POS] == 0)
  389. return FALSE;
  390. /* DC values must be at least partly known for all components. */
  391. coef_bits = cinfo->coef_bits[ci];
  392. if (coef_bits[0] < 0)
  393. return FALSE;
  394. /* Block smoothing is helpful if some AC coefficients remain inaccurate. */
  395. for (coefi = 1; coefi <= 5; coefi++) {
  396. coef_bits_latch[coefi] = coef_bits[coefi];
  397. if (coef_bits[coefi] != 0)
  398. smoothing_useful = TRUE;
  399. }
  400. coef_bits_latch += SAVED_COEFS;
  401. }
  402. return smoothing_useful;
  403. }
  404. /*
  405. * Variant of decompress_data for use when doing block smoothing.
  406. */
  407. METHODDEF(int)
  408. decompress_smooth_data (j_decompress_ptr cinfo, JSAMPIMAGE output_buf)
  409. {
  410. my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
  411. JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
  412. JDIMENSION block_num, last_block_column;
  413. int ci, block_row, block_rows, access_rows;
  414. JBLOCKARRAY buffer;
  415. JBLOCKROW buffer_ptr, prev_block_row, next_block_row;
  416. JSAMPARRAY output_ptr;
  417. JDIMENSION output_col;
  418. jpeg_component_info *compptr;
  419. inverse_DCT_method_ptr inverse_DCT;
  420. boolean first_row, last_row;
  421. JBLOCK workspace;
  422. int *coef_bits;
  423. JQUANT_TBL *quanttbl;
  424. INT32 Q00,Q01,Q02,Q10,Q11,Q20, num;
  425. int DC1,DC2,DC3,DC4,DC5,DC6,DC7,DC8,DC9;
  426. int Al, pred;
  427. /* Force some input to be done if we are getting ahead of the input. */
  428. while (cinfo->input_scan_number <= cinfo->output_scan_number &&
  429. ! cinfo->inputctl->eoi_reached) {
  430. if (cinfo->input_scan_number == cinfo->output_scan_number) {
  431. /* If input is working on current scan, we ordinarily want it to
  432. * have completed the current row. But if input scan is DC,
  433. * we want it to keep one row ahead so that next block row's DC
  434. * values are up to date.
  435. */
  436. JDIMENSION delta = (cinfo->Ss == 0) ? 1 : 0;
  437. if (cinfo->input_iMCU_row > cinfo->output_iMCU_row+delta)
  438. break;
  439. }
  440. if ((*cinfo->inputctl->consume_input)(cinfo) == JPEG_SUSPENDED)
  441. return JPEG_SUSPENDED;
  442. }
  443. /* OK, output from the virtual arrays. */
  444. for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  445. ci++, compptr++) {
  446. /* Don't bother to IDCT an uninteresting component. */
  447. if (! compptr->component_needed)
  448. continue;
  449. /* Count non-dummy DCT block rows in this iMCU row. */
  450. if (cinfo->output_iMCU_row < last_iMCU_row) {
  451. block_rows = compptr->v_samp_factor;
  452. access_rows = block_rows * 2; /* this and next iMCU row */
  453. last_row = FALSE;
  454. } else {
  455. /* NB: can't use last_row_height here; it is input-side-dependent! */
  456. block_rows = (int) (compptr->height_in_blocks % compptr->v_samp_factor);
  457. if (block_rows == 0) block_rows = compptr->v_samp_factor;
  458. access_rows = block_rows; /* this iMCU row only */
  459. last_row = TRUE;
  460. }
  461. /* Align the virtual buffer for this component. */
  462. if (cinfo->output_iMCU_row > 0) {
  463. access_rows += compptr->v_samp_factor; /* prior iMCU row too */
  464. buffer = (*cinfo->mem->access_virt_barray)
  465. ((j_common_ptr) cinfo, coef->whole_image[ci],
  466. (cinfo->output_iMCU_row - 1) * compptr->v_samp_factor,
  467. (JDIMENSION) access_rows, FALSE);
  468. buffer += compptr->v_samp_factor; /* point to current iMCU row */
  469. first_row = FALSE;
  470. } else {
  471. buffer = (*cinfo->mem->access_virt_barray)
  472. ((j_common_ptr) cinfo, coef->whole_image[ci],
  473. (JDIMENSION) 0, (JDIMENSION) access_rows, FALSE);
  474. first_row = TRUE;
  475. }
  476. /* Fetch component-dependent info */
  477. coef_bits = coef->coef_bits_latch + (ci * SAVED_COEFS);
  478. quanttbl = compptr->quant_table;
  479. Q00 = quanttbl->quantval[0];
  480. Q01 = quanttbl->quantval[Q01_POS];
  481. Q10 = quanttbl->quantval[Q10_POS];
  482. Q20 = quanttbl->quantval[Q20_POS];
  483. Q11 = quanttbl->quantval[Q11_POS];
  484. Q02 = quanttbl->quantval[Q02_POS];
  485. inverse_DCT = cinfo->idct->inverse_DCT[ci];
  486. output_ptr = output_buf[ci];
  487. /* Loop over all DCT blocks to be processed. */
  488. for (block_row = 0; block_row < block_rows; block_row++) {
  489. buffer_ptr = buffer[block_row];
  490. if (first_row && block_row == 0)
  491. prev_block_row = buffer_ptr;
  492. else
  493. prev_block_row = buffer[block_row-1];
  494. if (last_row && block_row == block_rows-1)
  495. next_block_row = buffer_ptr;
  496. else
  497. next_block_row = buffer[block_row+1];
  498. /* We fetch the surrounding DC values using a sliding-register approach.
  499. * Initialize all nine here so as to do the right thing on narrow pics.
  500. */
  501. DC1 = DC2 = DC3 = (int) prev_block_row[0][0];
  502. DC4 = DC5 = DC6 = (int) buffer_ptr[0][0];
  503. DC7 = DC8 = DC9 = (int) next_block_row[0][0];
  504. output_col = 0;
  505. last_block_column = compptr->width_in_blocks - 1;
  506. for (block_num = 0; block_num <= last_block_column; block_num++) {
  507. /* Fetch current DCT block into workspace so we can modify it. */
  508. jcopy_block_row(buffer_ptr, (JBLOCKROW) workspace, (JDIMENSION) 1);
  509. /* Update DC values */
  510. if (block_num < last_block_column) {
  511. DC3 = (int) prev_block_row[1][0];
  512. DC6 = (int) buffer_ptr[1][0];
  513. DC9 = (int) next_block_row[1][0];
  514. }
  515. /* Compute coefficient estimates per K.8.
  516. * An estimate is applied only if coefficient is still zero,
  517. * and is not known to be fully accurate.
  518. */
  519. /* AC01 */
  520. if ((Al=coef_bits[1]) != 0 && workspace[1] == 0) {
  521. num = 36 * Q00 * (DC4 - DC6);
  522. if (num >= 0) {
  523. pred = (int) (((Q01<<7) + num) / (Q01<<8));
  524. if (Al > 0 && pred >= (1<<Al))
  525. pred = (1<<Al)-1;
  526. } else {
  527. pred = (int) (((Q01<<7) - num) / (Q01<<8));
  528. if (Al > 0 && pred >= (1<<Al))
  529. pred = (1<<Al)-1;
  530. pred = -pred;
  531. }
  532. workspace[1] = (JCOEF) pred;
  533. }
  534. /* AC10 */
  535. if ((Al=coef_bits[2]) != 0 && workspace[8] == 0) {
  536. num = 36 * Q00 * (DC2 - DC8);
  537. if (num >= 0) {
  538. pred = (int) (((Q10<<7) + num) / (Q10<<8));
  539. if (Al > 0 && pred >= (1<<Al))
  540. pred = (1<<Al)-1;
  541. } else {
  542. pred = (int) (((Q10<<7) - num) / (Q10<<8));
  543. if (Al > 0 && pred >= (1<<Al))
  544. pred = (1<<Al)-1;
  545. pred = -pred;
  546. }
  547. workspace[8] = (JCOEF) pred;
  548. }
  549. /* AC20 */
  550. if ((Al=coef_bits[3]) != 0 && workspace[16] == 0) {
  551. num = 9 * Q00 * (DC2 + DC8 - 2*DC5);
  552. if (num >= 0) {
  553. pred = (int) (((Q20<<7) + num) / (Q20<<8));
  554. if (Al > 0 && pred >= (1<<Al))
  555. pred = (1<<Al)-1;
  556. } else {
  557. pred = (int) (((Q20<<7) - num) / (Q20<<8));
  558. if (Al > 0 && pred >= (1<<Al))
  559. pred = (1<<Al)-1;
  560. pred = -pred;
  561. }
  562. workspace[16] = (JCOEF) pred;
  563. }
  564. /* AC11 */
  565. if ((Al=coef_bits[4]) != 0 && workspace[9] == 0) {
  566. num = 5 * Q00 * (DC1 - DC3 - DC7 + DC9);
  567. if (num >= 0) {
  568. pred = (int) (((Q11<<7) + num) / (Q11<<8));
  569. if (Al > 0 && pred >= (1<<Al))
  570. pred = (1<<Al)-1;
  571. } else {
  572. pred = (int) (((Q11<<7) - num) / (Q11<<8));
  573. if (Al > 0 && pred >= (1<<Al))
  574. pred = (1<<Al)-1;
  575. pred = -pred;
  576. }
  577. workspace[9] = (JCOEF) pred;
  578. }
  579. /* AC02 */
  580. if ((Al=coef_bits[5]) != 0 && workspace[2] == 0) {
  581. num = 9 * Q00 * (DC4 + DC6 - 2*DC5);
  582. if (num >= 0) {
  583. pred = (int) (((Q02<<7) + num) / (Q02<<8));
  584. if (Al > 0 && pred >= (1<<Al))
  585. pred = (1<<Al)-1;
  586. } else {
  587. pred = (int) (((Q02<<7) - num) / (Q02<<8));
  588. if (Al > 0 && pred >= (1<<Al))
  589. pred = (1<<Al)-1;
  590. pred = -pred;
  591. }
  592. workspace[2] = (JCOEF) pred;
  593. }
  594. /* OK, do the IDCT */
  595. (*inverse_DCT) (cinfo, compptr, (JCOEFPTR) workspace,
  596. output_ptr, output_col);
  597. /* Advance for next column */
  598. DC1 = DC2; DC2 = DC3;
  599. DC4 = DC5; DC5 = DC6;
  600. DC7 = DC8; DC8 = DC9;
  601. buffer_ptr++, prev_block_row++, next_block_row++;
  602. output_col += compptr->DCT_h_scaled_size;
  603. }
  604. output_ptr += compptr->DCT_v_scaled_size;
  605. }
  606. }
  607. if (++(cinfo->output_iMCU_row) < cinfo->total_iMCU_rows)
  608. return JPEG_ROW_COMPLETED;
  609. return JPEG_SCAN_COMPLETED;
  610. }
  611. #endif /* BLOCK_SMOOTHING_SUPPORTED */
  612. /*
  613. * Initialize coefficient buffer controller.
  614. */
  615. GLOBAL(void)
  616. jinit_d_coef_controller (j_decompress_ptr cinfo, boolean need_full_buffer)
  617. {
  618. my_coef_ptr coef;
  619. coef = (my_coef_ptr)
  620. (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  621. SIZEOF(my_coef_controller));
  622. cinfo->coef = (struct jpeg_d_coef_controller *) coef;
  623. coef->pub.start_input_pass = start_input_pass;
  624. coef->pub.start_output_pass = start_output_pass;
  625. #ifdef BLOCK_SMOOTHING_SUPPORTED
  626. coef->coef_bits_latch = NULL;
  627. #endif
  628. /* Create the coefficient buffer. */
  629. if (need_full_buffer) {
  630. #ifdef D_MULTISCAN_FILES_SUPPORTED
  631. /* Allocate a full-image virtual array for each component, */
  632. /* padded to a multiple of samp_factor DCT blocks in each direction. */
  633. /* Note we ask for a pre-zeroed array. */
  634. int ci, access_rows;
  635. jpeg_component_info *compptr;
  636. for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  637. ci++, compptr++) {
  638. access_rows = compptr->v_samp_factor;
  639. #ifdef BLOCK_SMOOTHING_SUPPORTED
  640. /* If block smoothing could be used, need a bigger window */
  641. if (cinfo->progressive_mode)
  642. access_rows *= 3;
  643. #endif
  644. coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)
  645. ((j_common_ptr) cinfo, JPOOL_IMAGE, TRUE,
  646. (JDIMENSION) jround_up((long) compptr->width_in_blocks,
  647. (long) compptr->h_samp_factor),
  648. (JDIMENSION) jround_up((long) compptr->height_in_blocks,
  649. (long) compptr->v_samp_factor),
  650. (JDIMENSION) access_rows);
  651. }
  652. coef->pub.consume_data = consume_data;
  653. coef->pub.decompress_data = decompress_data;
  654. coef->pub.coef_arrays = coef->whole_image; /* link to virtual arrays */
  655. #else
  656. ERREXIT(cinfo, JERR_NOT_COMPILED);
  657. #endif
  658. } else {
  659. /* We only need a single-MCU buffer. */
  660. JBLOCKROW buffer;
  661. int i;
  662. buffer = (JBLOCKROW)
  663. (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  664. D_MAX_BLOCKS_IN_MCU * SIZEOF(JBLOCK));
  665. for (i = 0; i < D_MAX_BLOCKS_IN_MCU; i++) {
  666. coef->MCU_buffer[i] = buffer + i;
  667. }
  668. if (cinfo->lim_Se == 0) /* DC only case: want to bypass later */
  669. FMEMZERO((void FAR *) buffer,
  670. (size_t) (D_MAX_BLOCKS_IN_MCU * SIZEOF(JBLOCK)));
  671. coef->pub.consume_data = dummy_consume_data;
  672. coef->pub.decompress_data = decompress_onepass;
  673. coef->pub.coef_arrays = NULL; /* flag for no virtual arrays */
  674. }
  675. }