jcmarker.c 17 KB

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