jcmarker.c
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:17k
源码类别:

打印编程

开发平台:

Visual C++

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