jcmarker.c 17 KB

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