jcmarker.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. /*
  2. * jcmarker.c
  3. *
  4. * Copyright (C) 1991-1996, 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. {
  83. struct jpeg_destination_mgr * dest = cinfo->dest;
  84. *(dest->next_output_byte)++ = (JOCTET) val;
  85. if (--dest->free_in_buffer == 0) {
  86. if (! (*dest->empty_output_buffer) (cinfo))
  87. ERREXIT(cinfo, JERR_CANT_SUSPEND);
  88. }
  89. }
  90. LOCAL(void)
  91. emit_marker (j_compress_ptr cinfo, JPEG_MARKER mark)
  92. /* Emit a marker code */
  93. {
  94. emit_byte(cinfo, 0xFF);
  95. emit_byte(cinfo, (int) mark);
  96. }
  97. LOCAL(void)
  98. emit_2bytes (j_compress_ptr cinfo, int value)
  99. /* Emit a 2-byte integer; these are always MSB first in JPEG files */
  100. {
  101. emit_byte(cinfo, (value >> 8) & 0xFF);
  102. emit_byte(cinfo, value & 0xFF);
  103. }
  104. /*
  105. * Routines to write specific marker types.
  106. */
  107. LOCAL(int)
  108. emit_dqt (j_compress_ptr cinfo, int index)
  109. /* Emit a DQT marker */
  110. /* Returns the precision used (0 = 8bits, 1 = 16bits) for baseline checking */
  111. {
  112. JQUANT_TBL * qtbl = cinfo->quant_tbl_ptrs[index];
  113. int prec;
  114. int i;
  115. if (qtbl == NULL)
  116. ERREXIT1(cinfo, JERR_NO_QUANT_TABLE, index);
  117. prec = 0;
  118. for (i = 0; i < DCTSIZE2; i++) {
  119. if (qtbl->quantval[i] > 255)
  120. prec = 1;
  121. }
  122. if (! qtbl->sent_table) {
  123. emit_marker(cinfo, M_DQT);
  124. emit_2bytes(cinfo, prec ? DCTSIZE2*2 + 1 + 2 : DCTSIZE2 + 1 + 2);
  125. emit_byte(cinfo, index + (prec<<4));
  126. for (i = 0; i < DCTSIZE2; i++) {
  127. /* The table entries must be emitted in zigzag order. */
  128. unsigned int qval = qtbl->quantval[jpeg_natural_order[i]];
  129. if (prec)
  130. emit_byte(cinfo, qval >> 8);
  131. emit_byte(cinfo, qval & 0xFF);
  132. }
  133. qtbl->sent_table = TRUE;
  134. }
  135. return prec;
  136. }
  137. LOCAL(void)
  138. emit_dht (j_compress_ptr cinfo, int index, boolean is_ac)
  139. /* Emit a DHT marker */
  140. {
  141. JHUFF_TBL * htbl;
  142. int length, i;
  143. if (is_ac) {
  144. htbl = cinfo->ac_huff_tbl_ptrs[index];
  145. index += 0x10; /* output index has AC bit set */
  146. } else {
  147. htbl = cinfo->dc_huff_tbl_ptrs[index];
  148. }
  149. if (htbl == NULL)
  150. ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, index);
  151. if (! htbl->sent_table) {
  152. emit_marker(cinfo, M_DHT);
  153. length = 0;
  154. for (i = 1; i <= 16; i++)
  155. length += htbl->bits[i];
  156. emit_2bytes(cinfo, length + 2 + 1 + 16);
  157. emit_byte(cinfo, index);
  158. for (i = 1; i <= 16; i++)
  159. emit_byte(cinfo, htbl->bits[i]);
  160. for (i = 0; i < length; i++)
  161. emit_byte(cinfo, htbl->huffval[i]);
  162. htbl->sent_table = TRUE;
  163. }
  164. }
  165. LOCAL(void)
  166. emit_dac (j_compress_ptr cinfo)
  167. /* Emit a DAC marker */
  168. /* Since the useful info is so small, we want to emit all the tables in */
  169. /* one DAC marker. Therefore this routine does its own scan of the table. */
  170. {
  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. for (i = 0; i < cinfo->comps_in_scan; i++) {
  179. compptr = cinfo->cur_comp_info[i];
  180. dc_in_use[compptr->dc_tbl_no] = 1;
  181. ac_in_use[compptr->ac_tbl_no] = 1;
  182. }
  183. length = 0;
  184. for (i = 0; i < NUM_ARITH_TBLS; i++)
  185. length += dc_in_use[i] + ac_in_use[i];
  186. emit_marker(cinfo, M_DAC);
  187. emit_2bytes(cinfo, length*2 + 2);
  188. for (i = 0; i < NUM_ARITH_TBLS; i++) {
  189. if (dc_in_use[i]) {
  190. emit_byte(cinfo, i);
  191. emit_byte(cinfo, cinfo->arith_dc_L[i] + (cinfo->arith_dc_U[i]<<4));
  192. }
  193. if (ac_in_use[i]) {
  194. emit_byte(cinfo, i + 0x10);
  195. emit_byte(cinfo, cinfo->arith_ac_K[i]);
  196. }
  197. }
  198. #endif /* C_ARITH_CODING_SUPPORTED */
  199. }
  200. LOCAL(void)
  201. emit_dri (j_compress_ptr cinfo)
  202. /* Emit a DRI marker */
  203. {
  204. emit_marker(cinfo, M_DRI);
  205. emit_2bytes(cinfo, 4); /* fixed length */
  206. emit_2bytes(cinfo, (int) cinfo->restart_interval);
  207. }
  208. LOCAL(void)
  209. emit_sof (j_compress_ptr cinfo, JPEG_MARKER code)
  210. /* Emit a SOF marker */
  211. {
  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. emit_byte(cinfo, cinfo->data_precision);
  221. emit_2bytes(cinfo, (int) cinfo->image_height);
  222. emit_2bytes(cinfo, (int) cinfo->image_width);
  223. emit_byte(cinfo, cinfo->num_components);
  224. for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  225. ci++, compptr++) {
  226. emit_byte(cinfo, compptr->component_id);
  227. emit_byte(cinfo, (compptr->h_samp_factor << 4) + compptr->v_samp_factor);
  228. emit_byte(cinfo, compptr->quant_tbl_no);
  229. }
  230. }
  231. LOCAL(void)
  232. emit_sos (j_compress_ptr cinfo)
  233. /* Emit a SOS marker */
  234. {
  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; /* no DC table either */
  255. } else {
  256. td = 0; /* AC scan */
  257. }
  258. }
  259. emit_byte(cinfo, (td << 4) + ta);
  260. }
  261. emit_byte(cinfo, cinfo->Ss);
  262. emit_byte(cinfo, cinfo->Se);
  263. emit_byte(cinfo, (cinfo->Ah << 4) + cinfo->Al);
  264. }
  265. LOCAL(void)
  266. emit_jfif_app0 (j_compress_ptr cinfo)
  267. /* Emit a JFIF-compliant APP0 marker */
  268. {
  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. /*
  303. * Length of APP14 block (2 bytes)
  304. * Block ID (5 bytes - ASCII "Adobe")
  305. * Version Number (2 bytes - currently 100)
  306. * Flags0 (2 bytes - currently 0)
  307. * Flags1 (2 bytes - currently 0)
  308. * Color transform (1 byte)
  309. *
  310. * Although Adobe TN 5116 mentions Version = 101, all the Adobe files
  311. * now in circulation seem to use Version = 100, so that's what we write.
  312. *
  313. * We write the color transform byte as 1 if the JPEG color space is
  314. * YCbCr, 2 if it's YCCK, 0 otherwise. Adobe's definition has to do with
  315. * whether the encoder performed a transformation, which is pretty useless.
  316. */
  317. emit_marker(cinfo, M_APP14);
  318. emit_2bytes(cinfo, 2 + 5 + 2 + 2 + 2 + 1); /* length */
  319. emit_byte(cinfo, 0x41); /* Identifier: ASCII "Adobe" */
  320. emit_byte(cinfo, 0x64);
  321. emit_byte(cinfo, 0x6F);
  322. emit_byte(cinfo, 0x62);
  323. emit_byte(cinfo, 0x65);
  324. emit_2bytes(cinfo, 100); /* Version */
  325. emit_2bytes(cinfo, 0); /* Flags0 */
  326. emit_2bytes(cinfo, 0); /* Flags1 */
  327. switch (cinfo->jpeg_color_space) {
  328. case JCS_YCbCr:
  329. emit_byte(cinfo, 1); /* Color transform = 1 */
  330. break;
  331. case JCS_YCCK:
  332. emit_byte(cinfo, 2); /* Color transform = 2 */
  333. break;
  334. default:
  335. emit_byte(cinfo, 0); /* Color transform = 0 */
  336. break;
  337. }
  338. }
  339. /*
  340. * This routine is exported for possible use by applications.
  341. * The intended use is to emit COM or APPn markers after calling
  342. * jpeg_start_compress() and before the first jpeg_write_scanlines() call
  343. * (hence, after write_file_header but before write_frame_header).
  344. * Other uses are not guaranteed to produce desirable results.
  345. */
  346. METHODDEF(void)
  347. write_any_marker (j_compress_ptr cinfo, int marker,
  348. const JOCTET *dataptr, unsigned int datalen)
  349. /* Emit an arbitrary marker with parameters */
  350. {
  351. if (datalen <= (unsigned int) 65533) { /* safety check */
  352. emit_marker(cinfo, (JPEG_MARKER) marker);
  353. emit_2bytes(cinfo, (int) (datalen + 2)); /* total length */
  354. while (datalen--) {
  355. emit_byte(cinfo, *dataptr);
  356. dataptr++;
  357. }
  358. }
  359. }
  360. /*
  361. * Write datastream header.
  362. * This consists of an SOI and optional APPn markers.
  363. * We recommend use of the JFIF marker, but not the Adobe marker,
  364. * when using YCbCr or grayscale data. The JFIF marker should NOT
  365. * be used for any other JPEG colorspace. The Adobe marker is helpful
  366. * to distinguish RGB, CMYK, and YCCK colorspaces.
  367. * Note that an application can write additional header markers after
  368. * jpeg_start_compress returns.
  369. */
  370. METHODDEF(void)
  371. write_file_header (j_compress_ptr cinfo)
  372. {
  373. emit_marker(cinfo, M_SOI); /* first the SOI */
  374. if (cinfo->write_JFIF_header) /* next an optional JFIF APP0 */
  375. emit_jfif_app0(cinfo);
  376. if (cinfo->write_Adobe_marker) /* next an optional Adobe APP14 */
  377. emit_adobe_app14(cinfo);
  378. }
  379. /*
  380. * Write frame header.
  381. * This consists of DQT and SOFn markers.
  382. * Note that we do not emit the SOF until we have emitted the DQT(s).
  383. * This avoids compatibility problems with incorrect implementations that
  384. * try to error-check the quant table numbers as soon as they see the SOF.
  385. */
  386. METHODDEF(void)
  387. write_frame_header (j_compress_ptr cinfo)
  388. {
  389. int ci, prec;
  390. boolean is_baseline;
  391. jpeg_component_info *compptr;
  392. /* Emit DQT for each quantization table.
  393. * Note that emit_dqt() suppresses any duplicate tables.
  394. */
  395. prec = 0;
  396. for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  397. ci++, compptr++) {
  398. prec += emit_dqt(cinfo, compptr->quant_tbl_no);
  399. }
  400. /* now prec is nonzero iff there are any 16-bit quant tables. */
  401. /* Check for a non-baseline specification.
  402. * Note we assume that Huffman table numbers won't be changed later.
  403. */
  404. if (cinfo->arith_code || cinfo->progressive_mode ||
  405. cinfo->data_precision != 8) {
  406. is_baseline = FALSE;
  407. } else {
  408. is_baseline = TRUE;
  409. for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
  410. ci++, compptr++) {
  411. if (compptr->dc_tbl_no > 1 || compptr->ac_tbl_no > 1)
  412. is_baseline = FALSE;
  413. }
  414. if (prec && is_baseline) {
  415. is_baseline = FALSE;
  416. /* If it's baseline except for quantizer size, warn the user */
  417. TRACEMS(cinfo, 0, JTRC_16BIT_TABLES);
  418. }
  419. }
  420. /* Emit the proper SOF marker */
  421. if (cinfo->arith_code) {
  422. emit_sof(cinfo, M_SOF9); /* SOF code for arithmetic coding */
  423. } else {
  424. if (cinfo->progressive_mode)
  425. emit_sof(cinfo, M_SOF2); /* SOF code for progressive Huffman */
  426. else if (is_baseline)
  427. emit_sof(cinfo, M_SOF0); /* SOF code for baseline implementation */
  428. else
  429. emit_sof(cinfo, M_SOF1); /* SOF code for non-baseline Huffman file */
  430. }
  431. }
  432. /*
  433. * Write scan header.
  434. * This consists of DHT or DAC markers, optional DRI, and SOS.
  435. * Compressed data will be written following the SOS.
  436. */
  437. METHODDEF(void)
  438. write_scan_header (j_compress_ptr cinfo)
  439. {
  440. int i;
  441. jpeg_component_info *compptr;
  442. if (cinfo->arith_code) {
  443. /* Emit arith conditioning info. We may have some duplication
  444. * if the file has multiple scans, but it's so small it's hardly
  445. * worth worrying about.
  446. */
  447. emit_dac(cinfo);
  448. } else {
  449. /* Emit Huffman tables.
  450. * Note that emit_dht() suppresses any duplicate tables.
  451. */
  452. for (i = 0; i < cinfo->comps_in_scan; i++) {
  453. compptr = cinfo->cur_comp_info[i];
  454. if (cinfo->progressive_mode) {
  455. /* Progressive mode: only DC or only AC tables are used in one scan */
  456. if (cinfo->Ss == 0) {
  457. if (cinfo->Ah == 0) /* DC needs no table for refinement scan */
  458. emit_dht(cinfo, compptr->dc_tbl_no, FALSE);
  459. } else {
  460. emit_dht(cinfo, compptr->ac_tbl_no, TRUE);
  461. }
  462. } else {
  463. /* Sequential mode: need both DC and AC tables */
  464. emit_dht(cinfo, compptr->dc_tbl_no, FALSE);
  465. emit_dht(cinfo, compptr->ac_tbl_no, TRUE);
  466. }
  467. }
  468. }
  469. /* Emit DRI if required --- note that DRI value could change for each scan.
  470. * If it doesn't, a tiny amount of space is wasted in multiple-scan files.
  471. * We assume DRI will never be nonzero for one scan and zero for a later one.
  472. */
  473. if (cinfo->restart_interval)
  474. emit_dri(cinfo);
  475. emit_sos(cinfo);
  476. }
  477. /*
  478. * Write datastream trailer.
  479. */
  480. METHODDEF(void)
  481. write_file_trailer (j_compress_ptr cinfo)
  482. {
  483. emit_marker(cinfo, M_EOI);
  484. }
  485. /*
  486. * Write an abbreviated table-specification datastream.
  487. * This consists of SOI, DQT and DHT tables, and EOI.
  488. * Any table that is defined and not marked sent_table = TRUE will be
  489. * emitted. Note that all tables will be marked sent_table = TRUE at exit.
  490. */
  491. METHODDEF(void)
  492. write_tables_only (j_compress_ptr cinfo)
  493. {
  494. int i;
  495. emit_marker(cinfo, M_SOI);
  496. for (i = 0; i < NUM_QUANT_TBLS; i++) {
  497. if (cinfo->quant_tbl_ptrs[i] != NULL)
  498. (void) emit_dqt(cinfo, i);
  499. }
  500. if (! cinfo->arith_code) {
  501. for (i = 0; i < NUM_HUFF_TBLS; i++) {
  502. if (cinfo->dc_huff_tbl_ptrs[i] != NULL)
  503. emit_dht(cinfo, i, FALSE);
  504. if (cinfo->ac_huff_tbl_ptrs[i] != NULL)
  505. emit_dht(cinfo, i, TRUE);
  506. }
  507. }
  508. emit_marker(cinfo, M_EOI);
  509. }
  510. /*
  511. * Initialize the marker writer module.
  512. */
  513. GLOBAL(void)
  514. jinit_marker_writer (j_compress_ptr cinfo)
  515. {
  516. /* Create the subobject */
  517. cinfo->marker = (struct jpeg_marker_writer *)
  518. (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
  519. SIZEOF(struct jpeg_marker_writer));
  520. /* Initialize method pointers */
  521. cinfo->marker->write_any_marker = write_any_marker;
  522. cinfo->marker->write_file_header = write_file_header;
  523. cinfo->marker->write_frame_header = write_frame_header;
  524. cinfo->marker->write_scan_header = write_scan_header;
  525. cinfo->marker->write_file_trailer = write_file_trailer;
  526. cinfo->marker->write_tables_only = write_tables_only;
  527. }