jdcoefct.c 25 KB

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