home *** CD-ROM | disk | FTP | other *** search
/ Windows Graphics Programming / Feng_Yuan_Win32_GDI_DirectX.iso / Samples / include / jlib / jcmarker.cpp < prev    next >
C/C++ Source or Header  |  2000-05-16  |  18KB  |  664 lines

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