jcmarker.cpp 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  1. /*
  2. * jcmarker.c
  3. *
  4. * Copyright (C) 1991-1995, Thomas G. Lane.
  5. * This file is part of the Independent JPEG Group's software.
  6. * For conditions of distribution and use, see the accompanying README file.
  7. *
  8. * This file contains routines to write JPEG datastream markers.
  9. */
  10. #define JPEG_INTERNALS
  11. #include "jinclude.h"
  12. #include "jpeglib.h"
  13. typedef enum { /* JPEG marker codes */
  14. M_SOF0 = 0xc0,
  15. M_SOF1 = 0xc1,
  16. M_SOF2 = 0xc2,
  17. M_SOF3 = 0xc3,
  18. M_SOF5 = 0xc5,
  19. M_SOF6 = 0xc6,
  20. M_SOF7 = 0xc7,
  21. M_JPG = 0xc8,
  22. M_SOF9 = 0xc9,
  23. M_SOF10 = 0xca,
  24. M_SOF11 = 0xcb,
  25. M_SOF13 = 0xcd,
  26. M_SOF14 = 0xce,
  27. M_SOF15 = 0xcf,
  28. M_DHT = 0xc4,
  29. M_DAC = 0xcc,
  30. M_RST0 = 0xd0,
  31. M_RST1 = 0xd1,
  32. M_RST2 = 0xd2,
  33. M_RST3 = 0xd3,
  34. M_RST4 = 0xd4,
  35. M_RST5 = 0xd5,
  36. M_RST6 = 0xd6,
  37. M_RST7 = 0xd7,
  38. M_SOI = 0xd8,
  39. M_EOI = 0xd9,
  40. M_SOS = 0xda,
  41. M_DQT = 0xdb,
  42. M_DNL = 0xdc,
  43. M_DRI = 0xdd,
  44. M_DHP = 0xde,
  45. M_EXP = 0xdf,
  46. M_APP0 = 0xe0,
  47. M_APP1 = 0xe1,
  48. M_APP2 = 0xe2,
  49. M_APP3 = 0xe3,
  50. M_APP4 = 0xe4,
  51. M_APP5 = 0xe5,
  52. M_APP6 = 0xe6,
  53. M_APP7 = 0xe7,
  54. M_APP8 = 0xe8,
  55. M_APP9 = 0xe9,
  56. M_APP10 = 0xea,
  57. M_APP11 = 0xeb,
  58. M_APP12 = 0xec,
  59. M_APP13 = 0xed,
  60. M_APP14 = 0xee,
  61. M_APP15 = 0xef,
  62. M_JPG0 = 0xf0,
  63. M_JPG13 = 0xfd,
  64. M_COM = 0xfe,
  65. M_TEM = 0x01,
  66. M_ERROR = 0x100
  67. } JPEG_MARKER;
  68. /*
  69. * Basic output routines.
  70. *
  71. * Note that we do not support suspension while writing a marker.
  72. * Therefore, an application using suspension must ensure that there is
  73. * enough buffer space for the initial markers (typ. 600-700 bytes) before
  74. * calling jpeg_start_compress, and enough space to write the trailing EOI
  75. * (a few bytes) before calling jpeg_finish_compress. Multipass compression
  76. * modes are not supported at all with suspension, so those two are the only
  77. * points where markers will be written.
  78. */
  79. LOCAL void
  80. emit_byte( j_compress_ptr cinfo, int val ) {
  81. /* Emit a byte */
  82. struct jpeg_destination_mgr * dest = cinfo->dest;
  83. *( dest->next_output_byte )++ = (JOCTET) val;
  84. if ( --dest->free_in_buffer == 0 ) {
  85. if ( !( *dest->empty_output_buffer )( cinfo ) ) {
  86. ERREXIT( cinfo, JERR_CANT_SUSPEND );
  87. }
  88. }
  89. }
  90. LOCAL void
  91. emit_marker( j_compress_ptr cinfo, JPEG_MARKER mark ) {
  92. /* Emit a marker code */
  93. emit_byte( cinfo, 0xFF );
  94. emit_byte( cinfo, (int) mark );
  95. }
  96. LOCAL void
  97. emit_2bytes( j_compress_ptr cinfo, int value ) {
  98. /* Emit a 2-byte integer; these are always MSB first in JPEG files */
  99. emit_byte( cinfo, ( value >> 8 ) & 0xFF );
  100. emit_byte( cinfo, value & 0xFF );
  101. }
  102. /*
  103. * Routines to write specific marker types.
  104. */
  105. LOCAL int
  106. emit_dqt( j_compress_ptr cinfo, int index ) {
  107. /* Emit a DQT marker */
  108. /* Returns the precision used (0 = 8bits, 1 = 16bits) for baseline checking */
  109. JQUANT_TBL * qtbl = cinfo->quant_tbl_ptrs[index];
  110. int prec;
  111. int i;
  112. if ( qtbl == NULL ) {
  113. ERREXIT1( cinfo, JERR_NO_QUANT_TABLE, index );
  114. }
  115. prec = 0;
  116. for ( i = 0; i < DCTSIZE2; i++ ) {
  117. if ( qtbl->quantval[i] > 255 ) {
  118. prec = 1;
  119. }
  120. }
  121. if ( !qtbl->sent_table ) {
  122. emit_marker( cinfo, M_DQT );
  123. emit_2bytes( cinfo, prec ? DCTSIZE2 * 2 + 1 + 2 : DCTSIZE2 + 1 + 2 );
  124. emit_byte( cinfo, index + ( prec << 4 ) );
  125. for ( i = 0; i < DCTSIZE2; i++ ) {
  126. if ( prec ) {
  127. emit_byte( cinfo, qtbl->quantval[i] >> 8 );
  128. }
  129. emit_byte( cinfo, qtbl->quantval[i] & 0xFF );
  130. }
  131. qtbl->sent_table = TRUE;
  132. }
  133. return prec;
  134. }
  135. LOCAL void
  136. emit_dht( j_compress_ptr cinfo, int index, boolean is_ac ) {
  137. /* Emit a DHT marker */
  138. JHUFF_TBL * htbl;
  139. int length, i;
  140. if ( is_ac ) {
  141. htbl = cinfo->ac_huff_tbl_ptrs[index];
  142. index += 0x10; /* output index has AC bit set */
  143. } else {
  144. htbl = cinfo->dc_huff_tbl_ptrs[index];
  145. }
  146. if ( htbl == NULL ) {
  147. ERREXIT1( cinfo, JERR_NO_HUFF_TABLE, index );
  148. }
  149. if ( !htbl->sent_table ) {
  150. emit_marker( cinfo, M_DHT );
  151. length = 0;
  152. for ( i = 1; i <= 16; i++ ) {
  153. length += htbl->bits[i];
  154. }
  155. emit_2bytes( cinfo, length + 2 + 1 + 16 );
  156. emit_byte( cinfo, index );
  157. for ( i = 1; i <= 16; i++ ) {
  158. emit_byte( cinfo, htbl->bits[i] );
  159. }
  160. for ( i = 0; i < length; i++ ) {
  161. emit_byte( cinfo, htbl->huffval[i] );
  162. }
  163. htbl->sent_table = TRUE;
  164. }
  165. }
  166. LOCAL void
  167. emit_dac( j_compress_ptr cinfo ) {
  168. /* Emit a DAC marker */
  169. /* Since the useful info is so small, we want to emit all the tables in */
  170. /* one DAC marker. Therefore this routine does its own scan of the table. */
  171. #ifdef C_ARITH_CODING_SUPPORTED
  172. char dc_in_use[NUM_ARITH_TBLS];
  173. char ac_in_use[NUM_ARITH_TBLS];
  174. int length, i;
  175. jpeg_component_info * compptr;
  176. for ( i = 0; i < NUM_ARITH_TBLS; i++ ) {
  177. dc_in_use[i] = ac_in_use[i] = 0;
  178. }
  179. for ( i = 0; i < cinfo->comps_in_scan; i++ ) {
  180. compptr = cinfo->cur_comp_info[i];
  181. dc_in_use[compptr->dc_tbl_no] = 1;
  182. ac_in_use[compptr->ac_tbl_no] = 1;
  183. }
  184. length = 0;
  185. for ( i = 0; i < NUM_ARITH_TBLS; i++ ) {
  186. length += dc_in_use[i] + ac_in_use[i];
  187. }
  188. emit_marker( cinfo, M_DAC );
  189. emit_2bytes( cinfo, length * 2 + 2 );
  190. for ( i = 0; i < NUM_ARITH_TBLS; i++ ) {
  191. if ( dc_in_use[i] ) {
  192. emit_byte( cinfo, i );
  193. emit_byte( cinfo, cinfo->arith_dc_L[i] + ( cinfo->arith_dc_U[i] << 4 ) );
  194. }
  195. if ( ac_in_use[i] ) {
  196. emit_byte( cinfo, i + 0x10 );
  197. emit_byte( cinfo, cinfo->arith_ac_K[i] );
  198. }
  199. }
  200. #endif /* C_ARITH_CODING_SUPPORTED */
  201. }
  202. LOCAL void
  203. emit_dri( j_compress_ptr cinfo ) {
  204. /* Emit a DRI marker */
  205. emit_marker( cinfo, M_DRI );
  206. emit_2bytes( cinfo, 4 );/* fixed length */
  207. emit_2bytes( cinfo, (int) cinfo->restart_interval );
  208. }
  209. LOCAL void
  210. emit_sof( j_compress_ptr cinfo, JPEG_MARKER code ) {
  211. /* Emit a SOF marker */
  212. int ci;
  213. jpeg_component_info * compptr;
  214. emit_marker( cinfo, code );
  215. emit_2bytes( cinfo, 3 * cinfo->num_components + 2 + 5 + 1 );/* length */
  216. /* Make sure image isn't bigger than SOF field can handle */
  217. if ( ( (long) cinfo->image_height > 65535L ) ||
  218. ( (long) cinfo->image_width > 65535L ) ) {
  219. ERREXIT1( cinfo, JERR_IMAGE_TOO_BIG, (unsigned int) 65535 );
  220. }
  221. emit_byte( cinfo, cinfo->data_precision );
  222. emit_2bytes( cinfo, (int) cinfo->image_height );
  223. emit_2bytes( cinfo, (int) cinfo->image_width );
  224. emit_byte( cinfo, cinfo->num_components );
  225. for ( ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  226. ci++, compptr++ ) {
  227. emit_byte( cinfo, compptr->component_id );
  228. emit_byte( cinfo, ( compptr->h_samp_factor << 4 ) + compptr->v_samp_factor );
  229. emit_byte( cinfo, compptr->quant_tbl_no );
  230. }
  231. }
  232. LOCAL void
  233. emit_sos( j_compress_ptr cinfo ) {
  234. /* Emit a SOS marker */
  235. int i, td, ta;
  236. jpeg_component_info * compptr;
  237. emit_marker( cinfo, M_SOS );
  238. emit_2bytes( cinfo, 2 * cinfo->comps_in_scan + 2 + 1 + 3 );/* length */
  239. emit_byte( cinfo, cinfo->comps_in_scan );
  240. for ( i = 0; i < cinfo->comps_in_scan; i++ ) {
  241. compptr = cinfo->cur_comp_info[i];
  242. emit_byte( cinfo, compptr->component_id );
  243. td = compptr->dc_tbl_no;
  244. ta = compptr->ac_tbl_no;
  245. if ( cinfo->progressive_mode ) {
  246. /* Progressive mode: only DC or only AC tables are used in one scan;
  247. * furthermore, Huffman coding of DC refinement uses no table at all.
  248. * We emit 0 for unused field(s); this is recommended by the P&M text
  249. * but does not seem to be specified in the standard.
  250. */
  251. if ( cinfo->Ss == 0 ) {
  252. ta = 0;/* DC scan */
  253. if ( ( cinfo->Ah != 0 ) && ( !cinfo->arith_code ) ) {
  254. td = 0;
  255. } /* no DC table either */
  256. } else {
  257. td = 0;/* AC scan */
  258. }
  259. }
  260. emit_byte( cinfo, ( td << 4 ) + ta );
  261. }
  262. emit_byte( cinfo, cinfo->Ss );
  263. emit_byte( cinfo, cinfo->Se );
  264. emit_byte( cinfo, ( cinfo->Ah << 4 ) + cinfo->Al );
  265. }
  266. LOCAL void
  267. emit_jfif_app0( j_compress_ptr cinfo ) {
  268. /* Emit a JFIF-compliant APP0 marker */
  269. /*
  270. * Length of APP0 block (2 bytes)
  271. * Block ID (4 bytes - ASCII "JFIF")
  272. * Zero byte (1 byte to terminate the ID string)
  273. * Version Major, Minor (2 bytes - 0x01, 0x01)
  274. * Units (1 byte - 0x00 = none, 0x01 = inch, 0x02 = cm)
  275. * Xdpu (2 bytes - dots per unit horizontal)
  276. * Ydpu (2 bytes - dots per unit vertical)
  277. * Thumbnail X size (1 byte)
  278. * Thumbnail Y size (1 byte)
  279. */
  280. emit_marker( cinfo, M_APP0 );
  281. emit_2bytes( cinfo, 2 + 4 + 1 + 2 + 1 + 2 + 2 + 1 + 1 );/* length */
  282. emit_byte( cinfo, 0x4A );/* Identifier: ASCII "JFIF" */
  283. emit_byte( cinfo, 0x46 );
  284. emit_byte( cinfo, 0x49 );
  285. emit_byte( cinfo, 0x46 );
  286. emit_byte( cinfo, 0 );
  287. /* We currently emit version code 1.01 since we use no 1.02 features.
  288. * This may avoid complaints from some older decoders.
  289. */
  290. emit_byte( cinfo, 1 ); /* Major version */
  291. emit_byte( cinfo, 1 ); /* Minor version */
  292. emit_byte( cinfo, cinfo->density_unit );/* Pixel size information */
  293. emit_2bytes( cinfo, (int) cinfo->X_density );
  294. emit_2bytes( cinfo, (int) cinfo->Y_density );
  295. emit_byte( cinfo, 0 ); /* No thumbnail image */
  296. emit_byte( cinfo, 0 );
  297. }
  298. LOCAL void
  299. emit_adobe_app14( j_compress_ptr cinfo ) {
  300. /* Emit an Adobe APP14 marker */
  301. /*
  302. * Length of APP14 block (2 bytes)
  303. * Block ID (5 bytes - ASCII "Adobe")
  304. * Version Number (2 bytes - currently 100)
  305. * Flags0 (2 bytes - currently 0)
  306. * Flags1 (2 bytes - currently 0)
  307. * Color transform (1 byte)
  308. *
  309. * Although Adobe TN 5116 mentions Version = 101, all the Adobe files
  310. * now in circulation seem to use Version = 100, so that's what we write.
  311. *
  312. * We write the color transform byte as 1 if the JPEG color space is
  313. * YCbCr, 2 if it's YCCK, 0 otherwise. Adobe's definition has to do with
  314. * whether the encoder performed a transformation, which is pretty useless.
  315. */
  316. emit_marker( cinfo, M_APP14 );
  317. emit_2bytes( cinfo, 2 + 5 + 2 + 2 + 2 + 1 );/* length */
  318. emit_byte( cinfo, 0x41 );/* Identifier: ASCII "Adobe" */
  319. emit_byte( cinfo, 0x64 );
  320. emit_byte( cinfo, 0x6F );
  321. emit_byte( cinfo, 0x62 );
  322. emit_byte( cinfo, 0x65 );
  323. emit_2bytes( cinfo, 100 );/* Version */
  324. emit_2bytes( cinfo, 0 );/* Flags0 */
  325. emit_2bytes( cinfo, 0 );/* Flags1 */
  326. switch ( cinfo->jpeg_color_space ) {
  327. case JCS_YCbCr:
  328. emit_byte( cinfo, 1 );/* Color transform = 1 */
  329. break;
  330. case JCS_YCCK:
  331. emit_byte( cinfo, 2 );/* Color transform = 2 */
  332. break;
  333. default:
  334. emit_byte( cinfo, 0 );/* Color transform = 0 */
  335. break;
  336. }
  337. }
  338. /*
  339. * This routine is exported for possible use by applications.
  340. * The intended use is to emit COM or APPn markers after calling
  341. * jpeg_start_compress() and before the first jpeg_write_scanlines() call
  342. * (hence, after write_file_header but before write_frame_header).
  343. * Other uses are not guaranteed to produce desirable results.
  344. */
  345. METHODDEF void
  346. write_any_marker( j_compress_ptr cinfo, int marker,
  347. const JOCTET * dataptr, unsigned int datalen ) {
  348. /* Emit an arbitrary marker with parameters */
  349. if ( datalen <= (unsigned int) 65533 ) {/* safety check */
  350. emit_marker( cinfo, (JPEG_MARKER) marker );
  351. emit_2bytes( cinfo, (int) ( datalen + 2 ) );/* total length */
  352. while ( datalen-- ) {
  353. emit_byte( cinfo, *dataptr );
  354. dataptr++;
  355. }
  356. }
  357. }
  358. /*
  359. * Write datastream header.
  360. * This consists of an SOI and optional APPn markers.
  361. * We recommend use of the JFIF marker, but not the Adobe marker,
  362. * when using YCbCr or grayscale data. The JFIF marker should NOT
  363. * be used for any other JPEG colorspace. The Adobe marker is helpful
  364. * to distinguish RGB, CMYK, and YCCK colorspaces.
  365. * Note that an application can write additional header markers after
  366. * jpeg_start_compress returns.
  367. */
  368. METHODDEF void
  369. write_file_header( j_compress_ptr cinfo ) {
  370. emit_marker( cinfo, M_SOI );/* first the SOI */
  371. if ( cinfo->write_JFIF_header ) {/* next an optional JFIF APP0 */
  372. emit_jfif_app0( cinfo );
  373. }
  374. if ( cinfo->write_Adobe_marker ) {/* next an optional Adobe APP14 */
  375. emit_adobe_app14( cinfo );
  376. }
  377. }
  378. /*
  379. * Write frame header.
  380. * This consists of DQT and SOFn markers.
  381. * Note that we do not emit the SOF until we have emitted the DQT(s).
  382. * This avoids compatibility problems with incorrect implementations that
  383. * try to error-check the quant table numbers as soon as they see the SOF.
  384. */
  385. METHODDEF void
  386. write_frame_header( j_compress_ptr cinfo ) {
  387. int ci, prec;
  388. boolean is_baseline;
  389. jpeg_component_info * compptr;
  390. /* Emit DQT for each quantization table.
  391. * Note that emit_dqt() suppresses any duplicate tables.
  392. */
  393. prec = 0;
  394. for ( ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  395. ci++, compptr++ ) {
  396. prec += emit_dqt( cinfo, compptr->quant_tbl_no );
  397. }
  398. /* now prec is nonzero iff there are any 16-bit quant tables. */
  399. /* Check for a non-baseline specification.
  400. * Note we assume that Huffman table numbers won't be changed later.
  401. */
  402. if ( ( cinfo->arith_code ) || ( cinfo->progressive_mode ) ||
  403. ( cinfo->data_precision != 8 ) ) {
  404. is_baseline = FALSE;
  405. } else {
  406. is_baseline = TRUE;
  407. for ( ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  408. ci++, compptr++ ) {
  409. if ( ( compptr->dc_tbl_no > 1 ) || ( compptr->ac_tbl_no > 1 ) ) {
  410. is_baseline = FALSE;
  411. }
  412. }
  413. if ( ( prec ) && ( is_baseline ) ) {
  414. is_baseline = FALSE;
  415. /* If it's baseline except for quantizer size, warn the user */
  416. TRACEMS( cinfo, 0, JTRC_16BIT_TABLES );
  417. }
  418. }
  419. /* Emit the proper SOF marker */
  420. if ( cinfo->arith_code ) {
  421. emit_sof( cinfo, M_SOF9 );/* SOF code for arithmetic coding */
  422. } else {
  423. if ( cinfo->progressive_mode ) {
  424. emit_sof( cinfo, M_SOF2 );
  425. } /* SOF code for progressive Huffman */
  426. else if ( is_baseline ) {
  427. emit_sof( cinfo, M_SOF0 );
  428. } /* SOF code for baseline implementation */
  429. else {
  430. emit_sof( cinfo, M_SOF1 );
  431. } /* SOF code for non-baseline Huffman file */
  432. }
  433. }
  434. /*
  435. * Write scan header.
  436. * This consists of DHT or DAC markers, optional DRI, and SOS.
  437. * Compressed data will be written following the SOS.
  438. */
  439. METHODDEF void
  440. write_scan_header( j_compress_ptr cinfo ) {
  441. int i;
  442. jpeg_component_info * compptr;
  443. if ( cinfo->arith_code ) {
  444. /* Emit arith conditioning info. We may have some duplication
  445. * if the file has multiple scans, but it's so small it's hardly
  446. * worth worrying about.
  447. */
  448. emit_dac( cinfo );
  449. } else {
  450. /* Emit Huffman tables.
  451. * Note that emit_dht() suppresses any duplicate tables.
  452. */
  453. for ( i = 0; i < cinfo->comps_in_scan; i++ ) {
  454. compptr = cinfo->cur_comp_info[i];
  455. if ( cinfo->progressive_mode ) {
  456. /* Progressive mode: only DC or only AC tables are used in one scan */
  457. if ( cinfo->Ss == 0 ) {
  458. if ( cinfo->Ah == 0 ) {/* DC needs no table for refinement scan */
  459. emit_dht( cinfo, compptr->dc_tbl_no, FALSE );
  460. }
  461. } else {
  462. emit_dht( cinfo, compptr->ac_tbl_no, TRUE );
  463. }
  464. } else {
  465. /* Sequential mode: need both DC and AC tables */
  466. emit_dht( cinfo, compptr->dc_tbl_no, FALSE );
  467. emit_dht( cinfo, compptr->ac_tbl_no, TRUE );
  468. }
  469. }
  470. }
  471. /* Emit DRI if required --- note that DRI value could change for each scan.
  472. * If it doesn't, a tiny amount of space is wasted in multiple-scan files.
  473. * We assume DRI will never be nonzero for one scan and zero for a later one.
  474. */
  475. if ( cinfo->restart_interval ) {
  476. emit_dri( cinfo );
  477. }
  478. emit_sos( cinfo );
  479. }
  480. /*
  481. * Write datastream trailer.
  482. */
  483. METHODDEF void
  484. write_file_trailer( j_compress_ptr cinfo ) {
  485. emit_marker( cinfo, M_EOI );
  486. }
  487. /*
  488. * Write an abbreviated table-specification datastream.
  489. * This consists of SOI, DQT and DHT tables, and EOI.
  490. * Any table that is defined and not marked sent_table = TRUE will be
  491. * emitted. Note that all tables will be marked sent_table = TRUE at exit.
  492. */
  493. METHODDEF void
  494. write_tables_only( j_compress_ptr cinfo ) {
  495. int i;
  496. emit_marker( cinfo, M_SOI );
  497. for ( i = 0; i < NUM_QUANT_TBLS; i++ ) {
  498. if ( cinfo->quant_tbl_ptrs[i] != NULL ) {
  499. (void) emit_dqt( cinfo, i );
  500. }
  501. }
  502. if ( !cinfo->arith_code ) {
  503. for ( i = 0; i < NUM_HUFF_TBLS; i++ ) {
  504. if ( cinfo->dc_huff_tbl_ptrs[i] != NULL ) {
  505. emit_dht( cinfo, i, FALSE );
  506. }
  507. if ( cinfo->ac_huff_tbl_ptrs[i] != NULL ) {
  508. emit_dht( cinfo, i, TRUE );
  509. }
  510. }
  511. }
  512. emit_marker( cinfo, M_EOI );
  513. }
  514. /*
  515. * Initialize the marker writer module.
  516. */
  517. GLOBAL void
  518. jinit_marker_writer( j_compress_ptr cinfo ) {
  519. /* Create the subobject */
  520. cinfo->marker = (struct jpeg_marker_writer *)
  521. ( * cinfo->mem->alloc_small )( (j_common_ptr) cinfo, JPOOL_IMAGE,
  522. SIZEOF( struct jpeg_marker_writer ) );
  523. /* Initialize method pointers */
  524. cinfo->marker->write_any_marker = write_any_marker;
  525. cinfo->marker->write_file_header = write_file_header;
  526. cinfo->marker->write_frame_header = write_frame_header;
  527. cinfo->marker->write_scan_header = write_scan_header;
  528. cinfo->marker->write_file_trailer = write_file_trailer;
  529. cinfo->marker->write_tables_only = write_tables_only;
  530. }