JCMARKER.c
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:18k
源码类别:

网络截获/分析

开发平台:

Visual C++

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