jcmarker.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665
  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 ||
  235. (long) cinfo->_jpeg_width > 65535L)
  236. ERREXIT1(cinfo, JERR_IMAGE_TOO_BIG, (unsigned int) 65535);
  237. emit_byte(cinfo, cinfo->data_precision);
  238. emit_2bytes(cinfo, (int) cinfo->_jpeg_height);
  239. emit_2bytes(cinfo, (int) cinfo->_jpeg_width);
  240. emit_byte(cinfo, cinfo->num_components);
  241. for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  242. ci++, compptr++) {
  243. emit_byte(cinfo, compptr->component_id);
  244. emit_byte(cinfo, (compptr->h_samp_factor << 4) + compptr->v_samp_factor);
  245. emit_byte(cinfo, compptr->quant_tbl_no);
  246. }
  247. }
  248. LOCAL(void)
  249. emit_sos (j_compress_ptr cinfo)
  250. /* Emit a SOS marker */
  251. {
  252. int i, td, ta;
  253. jpeg_component_info *compptr;
  254. emit_marker(cinfo, M_SOS);
  255. emit_2bytes(cinfo, 2 * cinfo->comps_in_scan + 2 + 1 + 3); /* length */
  256. emit_byte(cinfo, cinfo->comps_in_scan);
  257. for (i = 0; i < cinfo->comps_in_scan; i++) {
  258. compptr = cinfo->cur_comp_info[i];
  259. emit_byte(cinfo, compptr->component_id);
  260. /* We emit 0 for unused field(s); this is recommended by the P&M text
  261. * but does not seem to be specified in the standard.
  262. */
  263. /* DC needs no table for refinement scan */
  264. td = cinfo->Ss == 0 && cinfo->Ah == 0 ? compptr->dc_tbl_no : 0;
  265. /* AC needs no table when not present */
  266. ta = cinfo->Se ? compptr->ac_tbl_no : 0;
  267. emit_byte(cinfo, (td << 4) + ta);
  268. }
  269. emit_byte(cinfo, cinfo->Ss);
  270. emit_byte(cinfo, cinfo->Se);
  271. emit_byte(cinfo, (cinfo->Ah << 4) + cinfo->Al);
  272. }
  273. LOCAL(void)
  274. emit_jfif_app0 (j_compress_ptr cinfo)
  275. /* Emit a JFIF-compliant APP0 marker */
  276. {
  277. /*
  278. * Length of APP0 block (2 bytes)
  279. * Block ID (4 bytes - ASCII "JFIF")
  280. * Zero byte (1 byte to terminate the ID string)
  281. * Version Major, Minor (2 bytes - major first)
  282. * Units (1 byte - 0x00 = none, 0x01 = inch, 0x02 = cm)
  283. * Xdpu (2 bytes - dots per unit horizontal)
  284. * Ydpu (2 bytes - dots per unit vertical)
  285. * Thumbnail X size (1 byte)
  286. * Thumbnail Y size (1 byte)
  287. */
  288. emit_marker(cinfo, M_APP0);
  289. emit_2bytes(cinfo, 2 + 4 + 1 + 2 + 1 + 2 + 2 + 1 + 1); /* length */
  290. emit_byte(cinfo, 0x4A); /* Identifier: ASCII "JFIF" */
  291. emit_byte(cinfo, 0x46);
  292. emit_byte(cinfo, 0x49);
  293. emit_byte(cinfo, 0x46);
  294. emit_byte(cinfo, 0);
  295. emit_byte(cinfo, cinfo->JFIF_major_version); /* Version fields */
  296. emit_byte(cinfo, cinfo->JFIF_minor_version);
  297. emit_byte(cinfo, cinfo->density_unit); /* Pixel size information */
  298. emit_2bytes(cinfo, (int) cinfo->X_density);
  299. emit_2bytes(cinfo, (int) cinfo->Y_density);
  300. emit_byte(cinfo, 0); /* No thumbnail image */
  301. emit_byte(cinfo, 0);
  302. }
  303. LOCAL(void)
  304. emit_adobe_app14 (j_compress_ptr cinfo)
  305. /* Emit an Adobe APP14 marker */
  306. {
  307. /*
  308. * Length of APP14 block (2 bytes)
  309. * Block ID (5 bytes - ASCII "Adobe")
  310. * Version Number (2 bytes - currently 100)
  311. * Flags0 (2 bytes - currently 0)
  312. * Flags1 (2 bytes - currently 0)
  313. * Color transform (1 byte)
  314. *
  315. * Although Adobe TN 5116 mentions Version = 101, all the Adobe files
  316. * now in circulation seem to use Version = 100, so that's what we write.
  317. *
  318. * We write the color transform byte as 1 if the JPEG color space is
  319. * YCbCr, 2 if it's YCCK, 0 otherwise. Adobe's definition has to do with
  320. * whether the encoder performed a transformation, which is pretty useless.
  321. */
  322. emit_marker(cinfo, M_APP14);
  323. emit_2bytes(cinfo, 2 + 5 + 2 + 2 + 2 + 1); /* length */
  324. emit_byte(cinfo, 0x41); /* Identifier: ASCII "Adobe" */
  325. emit_byte(cinfo, 0x64);
  326. emit_byte(cinfo, 0x6F);
  327. emit_byte(cinfo, 0x62);
  328. emit_byte(cinfo, 0x65);
  329. emit_2bytes(cinfo, 100); /* Version */
  330. emit_2bytes(cinfo, 0); /* Flags0 */
  331. emit_2bytes(cinfo, 0); /* Flags1 */
  332. switch (cinfo->jpeg_color_space) {
  333. case JCS_YCbCr:
  334. emit_byte(cinfo, 1); /* Color transform = 1 */
  335. break;
  336. case JCS_YCCK:
  337. emit_byte(cinfo, 2); /* Color transform = 2 */
  338. break;
  339. default:
  340. emit_byte(cinfo, 0); /* Color transform = 0 */
  341. break;
  342. }
  343. }
  344. /*
  345. * These routines allow writing an arbitrary marker with parameters.
  346. * The only intended use is to emit COM or APPn markers after calling
  347. * write_file_header and before calling write_frame_header.
  348. * Other uses are not guaranteed to produce desirable results.
  349. * Counting the parameter bytes properly is the caller's responsibility.
  350. */
  351. METHODDEF(void)
  352. write_marker_header (j_compress_ptr cinfo, int marker, unsigned int datalen)
  353. /* Emit an arbitrary marker header */
  354. {
  355. if (datalen > (unsigned int) 65533) /* safety check */
  356. ERREXIT(cinfo, JERR_BAD_LENGTH);
  357. emit_marker(cinfo, (JPEG_MARKER) marker);
  358. emit_2bytes(cinfo, (int) (datalen + 2)); /* total length */
  359. }
  360. METHODDEF(void)
  361. write_marker_byte (j_compress_ptr cinfo, int val)
  362. /* Emit one byte of marker parameters following write_marker_header */
  363. {
  364. emit_byte(cinfo, val);
  365. }
  366. /*
  367. * Write datastream header.
  368. * This consists of an SOI and optional APPn markers.
  369. * We recommend use of the JFIF marker, but not the Adobe marker,
  370. * when using YCbCr or grayscale data. The JFIF marker should NOT
  371. * be used for any other JPEG colorspace. The Adobe marker is helpful
  372. * to distinguish RGB, CMYK, and YCCK colorspaces.
  373. * Note that an application can write additional header markers after
  374. * jpeg_start_compress returns.
  375. */
  376. METHODDEF(void)
  377. write_file_header (j_compress_ptr cinfo)
  378. {
  379. my_marker_ptr marker = (my_marker_ptr) cinfo->marker;
  380. emit_marker(cinfo, M_SOI); /* first the SOI */
  381. /* SOI is defined to reset restart interval to 0 */
  382. marker->last_restart_interval = 0;
  383. if (cinfo->write_JFIF_header) /* next an optional JFIF APP0 */
  384. emit_jfif_app0(cinfo);
  385. if (cinfo->write_Adobe_marker) /* next an optional Adobe APP14 */
  386. emit_adobe_app14(cinfo);
  387. }
  388. /*
  389. * Write frame header.
  390. * This consists of DQT and SOFn markers.
  391. * Note that we do not emit the SOF until we have emitted the DQT(s).
  392. * This avoids compatibility problems with incorrect implementations that
  393. * try to error-check the quant table numbers as soon as they see the SOF.
  394. */
  395. METHODDEF(void)
  396. write_frame_header (j_compress_ptr cinfo)
  397. {
  398. int ci, prec;
  399. boolean is_baseline;
  400. jpeg_component_info *compptr;
  401. /* Emit DQT for each quantization table.
  402. * Note that emit_dqt() suppresses any duplicate tables.
  403. */
  404. prec = 0;
  405. for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  406. ci++, compptr++) {
  407. prec += emit_dqt(cinfo, compptr->quant_tbl_no);
  408. }
  409. /* now prec is nonzero iff there are any 16-bit quant tables. */
  410. /* Check for a non-baseline specification.
  411. * Note we assume that Huffman table numbers won't be changed later.
  412. */
  413. if (cinfo->arith_code || cinfo->progressive_mode ||
  414. cinfo->data_precision != 8) {
  415. is_baseline = FALSE;
  416. } else {
  417. is_baseline = TRUE;
  418. for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  419. ci++, compptr++) {
  420. if (compptr->dc_tbl_no > 1 || compptr->ac_tbl_no > 1)
  421. is_baseline = FALSE;
  422. }
  423. if (prec && is_baseline) {
  424. is_baseline = FALSE;
  425. /* If it's baseline except for quantizer size, warn the user */
  426. TRACEMS(cinfo, 0, JTRC_16BIT_TABLES);
  427. }
  428. }
  429. /* Emit the proper SOF marker */
  430. if (cinfo->arith_code) {
  431. if (cinfo->progressive_mode)
  432. emit_sof(cinfo, M_SOF10); /* SOF code for progressive arithmetic */
  433. else
  434. emit_sof(cinfo, M_SOF9); /* SOF code for sequential arithmetic */
  435. } else {
  436. if (cinfo->progressive_mode)
  437. emit_sof(cinfo, M_SOF2); /* SOF code for progressive Huffman */
  438. else if (is_baseline)
  439. emit_sof(cinfo, M_SOF0); /* SOF code for baseline implementation */
  440. else
  441. emit_sof(cinfo, M_SOF1); /* SOF code for non-baseline Huffman file */
  442. }
  443. }
  444. /*
  445. * Write scan header.
  446. * This consists of DHT or DAC markers, optional DRI, and SOS.
  447. * Compressed data will be written following the SOS.
  448. */
  449. METHODDEF(void)
  450. write_scan_header (j_compress_ptr cinfo)
  451. {
  452. my_marker_ptr marker = (my_marker_ptr) cinfo->marker;
  453. int i;
  454. jpeg_component_info *compptr;
  455. if (cinfo->arith_code) {
  456. /* Emit arith conditioning info. We may have some duplication
  457. * if the file has multiple scans, but it's so small it's hardly
  458. * worth worrying about.
  459. */
  460. emit_dac(cinfo);
  461. } else {
  462. /* Emit Huffman tables.
  463. * Note that emit_dht() suppresses any duplicate tables.
  464. */
  465. for (i = 0; i < cinfo->comps_in_scan; i++) {
  466. compptr = cinfo->cur_comp_info[i];
  467. /* DC needs no table for refinement scan */
  468. if (cinfo->Ss == 0 && cinfo->Ah == 0)
  469. emit_dht(cinfo, compptr->dc_tbl_no, FALSE);
  470. /* AC needs no table when not present */
  471. if (cinfo->Se)
  472. emit_dht(cinfo, compptr->ac_tbl_no, TRUE);
  473. }
  474. }
  475. /* Emit DRI if required --- note that DRI value could change for each scan.
  476. * We avoid wasting space with unnecessary DRIs, however.
  477. */
  478. if (cinfo->restart_interval != marker->last_restart_interval) {
  479. emit_dri(cinfo);
  480. marker->last_restart_interval = cinfo->restart_interval;
  481. }
  482. emit_sos(cinfo);
  483. }
  484. /*
  485. * Write datastream trailer.
  486. */
  487. METHODDEF(void)
  488. write_file_trailer (j_compress_ptr cinfo)
  489. {
  490. emit_marker(cinfo, M_EOI);
  491. }
  492. /*
  493. * Write an abbreviated table-specification datastream.
  494. * This consists of SOI, DQT and DHT tables, and EOI.
  495. * Any table that is defined and not marked sent_table = TRUE will be
  496. * emitted. Note that all tables will be marked sent_table = TRUE at exit.
  497. */
  498. METHODDEF(void)
  499. write_tables_only (j_compress_ptr cinfo)
  500. {
  501. int i;
  502. emit_marker(cinfo, M_SOI);
  503. for (i = 0; i < NUM_QUANT_TBLS; i++) {
  504. if (cinfo->quant_tbl_ptrs[i] != NULL)
  505. (void) emit_dqt(cinfo, i);
  506. }
  507. if (! cinfo->arith_code) {
  508. for (i = 0; i < NUM_HUFF_TBLS; i++) {
  509. if (cinfo->dc_huff_tbl_ptrs[i] != NULL)
  510. emit_dht(cinfo, i, FALSE);
  511. if (cinfo->ac_huff_tbl_ptrs[i] != NULL)
  512. emit_dht(cinfo, i, TRUE);
  513. }
  514. }
  515. emit_marker(cinfo, M_EOI);
  516. }
  517. /*
  518. * Initialize the marker writer module.
  519. */
  520. GLOBAL(void)
  521. jinit_marker_writer (j_compress_ptr cinfo)
  522. {
  523. my_marker_ptr marker;
  524. /* Create the subobject */
  525. marker = (my_marker_ptr)
  526. (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  527. sizeof(my_marker_writer));
  528. cinfo->marker = (struct jpeg_marker_writer *) marker;
  529. /* Initialize method pointers */
  530. marker->pub.write_file_header = write_file_header;
  531. marker->pub.write_frame_header = write_frame_header;
  532. marker->pub.write_scan_header = write_scan_header;
  533. marker->pub.write_file_trailer = write_file_trailer;
  534. marker->pub.write_tables_only = write_tables_only;
  535. marker->pub.write_marker_header = write_marker_header;
  536. marker->pub.write_marker_byte = write_marker_byte;
  537. /* Initialize private state */
  538. marker->last_restart_interval = 0;
  539. }