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

打印编程

开发平台:

Visual C++

  1. /* $Id: tif_jpeg.c,v 1.45 2006/03/16 12:38:24 dron Exp $ */
  2. /*
  3.  * Copyright (c) 1994-1997 Sam Leffler
  4.  * Copyright (c) 1994-1997 Silicon Graphics, Inc.
  5.  *
  6.  * Permission to use, copy, modify, distribute, and sell this software and 
  7.  * its documentation for any purpose is hereby granted without fee, provided
  8.  * that (i) the above copyright notices and this permission notice appear in
  9.  * all copies of the software and related documentation, and (ii) the names of
  10.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  11.  * publicity relating to the software without the specific, prior written
  12.  * permission of Sam Leffler and Silicon Graphics.
  13.  * 
  14.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  15.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  16.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  17.  * 
  18.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  19.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  20.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  21.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  22.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  23.  * OF THIS SOFTWARE.
  24.  */
  25. #define WIN32_LEAN_AND_MEAN
  26. #define VC_EXTRALEAN
  27. #include "tiffiop.h"
  28. #ifdef JPEG_SUPPORT
  29. /*
  30.  * TIFF Library
  31.  *
  32.  * JPEG Compression support per TIFF Technical Note #2
  33.  * (*not* per the original TIFF 6.0 spec).
  34.  *
  35.  * This file is simply an interface to the libjpeg library written by
  36.  * the Independent JPEG Group.  You need release 5 or later of the IJG
  37.  * code, which you can find on the Internet at ftp.uu.net:/graphics/jpeg/.
  38.  *
  39.  * Contributed by Tom Lane <tgl@sss.pgh.pa.us>.
  40.  */
  41. #include <setjmp.h>
  42. int TIFFFillStrip(TIFF*, tstrip_t);
  43. int TIFFFillTile(TIFF*, ttile_t);
  44. /* We undefine FAR to avoid conflict with JPEG definition */
  45. #ifdef FAR
  46. #undef FAR
  47. #endif
  48. /*
  49.   Libjpeg's jmorecfg.h defines INT16 and INT32, but only if XMD_H is
  50.   not defined.  Unfortunately, the MinGW and Borland compilers include
  51.   a typedef for INT32, which causes a conflict.  MSVC does not include
  52.   a conficting typedef given the headers which are included.
  53. */
  54. #if defined(__BORLANDC__) || defined(__MINGW32__)
  55. # define XMD_H 1
  56. #endif
  57. /*
  58.    The windows RPCNDR.H file defines boolean, but defines it with the
  59.    unsigned char size.  You should compile JPEG library using appropriate
  60.    definitions in jconfig.h header, but many users compile library in wrong
  61.    way. That causes errors of the following type:
  62.    "JPEGLib: JPEG parameter struct mismatch: library thinks size is 432,
  63.    caller expects 464"
  64.    For such users we wil fix the problem here. See install.doc file from
  65.    the JPEG library distribution for details.
  66. */
  67. /* Define "boolean" as unsigned char, not int, per Windows custom. */
  68. #if defined(WIN32) && !defined(__MINGW32__)
  69. # ifndef __RPCNDR_H__            /* don't conflict if rpcndr.h already read */
  70.    typedef unsigned char boolean;
  71. # endif
  72. # define HAVE_BOOLEAN            /* prevent jmorecfg.h from redefining it */
  73. #endif
  74. #include "../jpg/jpeglib.h"
  75. #include "../jpg/jerror.h"
  76. /*
  77.  * We are using width_in_blocks which is supposed to be private to
  78.  * libjpeg. Unfortunately, the libjpeg delivered with Cygwin has
  79.  * renamed this member to width_in_data_units.  Since the header has
  80.  * also renamed a define, use that unique define name in order to
  81.  * detect the problem header and adjust to suit.
  82.  */
  83. #if defined(D_MAX_DATA_UNITS_IN_MCU)
  84. #define width_in_blocks width_in_data_units
  85. #endif
  86. /*
  87.  * On some machines it may be worthwhile to use _setjmp or sigsetjmp
  88.  * in place of plain setjmp.  These macros will make it easier.
  89.  */
  90. #define SETJMP(jbuf) setjmp(jbuf)
  91. #define LONGJMP(jbuf,code) longjmp(jbuf,code)
  92. #define JMP_BUF jmp_buf
  93. typedef struct jpeg_destination_mgr jpeg_destination_mgr;
  94. typedef struct jpeg_source_mgr jpeg_source_mgr;
  95. typedef struct jpeg_error_mgr jpeg_error_mgr;
  96. /*
  97.  * State block for each open TIFF file using
  98.  * libjpeg to do JPEG compression/decompression.
  99.  *
  100.  * libjpeg's visible state is either a jpeg_compress_struct
  101.  * or jpeg_decompress_struct depending on which way we
  102.  * are going.  comm can be used to refer to the fields
  103.  * which are common to both.
  104.  *
  105.  * NB: cinfo is required to be the first member of JPEGState,
  106.  *     so we can safely cast JPEGState* -> jpeg_xxx_struct*
  107.  *     and vice versa!
  108.  */
  109. typedef struct {
  110. union {
  111. struct jpeg_compress_struct c;
  112. struct jpeg_decompress_struct d;
  113. struct jpeg_common_struct comm;
  114. } cinfo; /* NB: must be first */
  115.         int             cinfo_initialized;
  116. jpeg_error_mgr err; /* libjpeg error manager */
  117. JMP_BUF exit_jmpbuf; /* for catching libjpeg failures */
  118. /*
  119.  * The following two members could be a union, but
  120.  * they're small enough that it's not worth the effort.
  121.  */
  122. jpeg_destination_mgr dest; /* data dest for compression */
  123. jpeg_source_mgr src; /* data source for decompression */
  124. /* private state */
  125. TIFF* tif; /* back link needed by some code */
  126. uint16 photometric; /* copy of PhotometricInterpretation */
  127. uint16 h_sampling; /* luminance sampling factors */
  128. uint16 v_sampling;
  129. tsize_t bytesperline; /* decompressed bytes per scanline */
  130. /* pointers to intermediate buffers when processing downsampled data */
  131. JSAMPARRAY ds_buffer[MAX_COMPONENTS];
  132. int scancount; /* number of "scanlines" accumulated */
  133. int samplesperclump;
  134. TIFFVGetMethod vgetparent; /* super-class method */
  135. TIFFVSetMethod vsetparent; /* super-class method */
  136. TIFFStripMethod defsparent; /* super-class method */
  137. TIFFTileMethod deftparent; /* super-class method */
  138. /* pseudo-tag fields */
  139. void* jpegtables; /* JPEGTables tag value, or NULL */
  140. uint32 jpegtables_length; /* number of bytes in same */
  141. int jpegquality; /* Compression quality level */
  142. int jpegcolormode; /* Auto RGB<=>YCbCr convert? */
  143. int jpegtablesmode; /* What to put in JPEGTables */
  144.         int             ycbcrsampling_fetched;
  145. uint32 recvparams; /* encoded Class 2 session params */
  146. char* subaddress; /* subaddress string */
  147. uint32 recvtime; /* time spent receiving (secs) */
  148. char* faxdcs; /* encoded fax parameters (DCS, Table 2/T.30) */
  149. } JPEGState;
  150. #define JState(tif) ((JPEGState*)(tif)->tif_data)
  151. static int JPEGDecode(TIFF*, tidata_t, tsize_t, tsample_t);
  152. static int JPEGDecodeRaw(TIFF*, tidata_t, tsize_t, tsample_t);
  153. static int JPEGEncode(TIFF*, tidata_t, tsize_t, tsample_t);
  154. static int JPEGEncodeRaw(TIFF*, tidata_t, tsize_t, tsample_t);
  155. static  int JPEGInitializeLibJPEG( TIFF * tif,
  156.    int force_encode, int force_decode );
  157. #define FIELD_JPEGTABLES (FIELD_CODEC+0)
  158. #define FIELD_RECVPARAMS (FIELD_CODEC+1)
  159. #define FIELD_SUBADDRESS (FIELD_CODEC+2)
  160. #define FIELD_RECVTIME (FIELD_CODEC+3)
  161. #define FIELD_FAXDCS (FIELD_CODEC+4)
  162. static const TIFFFieldInfo jpegFieldInfo[] = {
  163.     { TIFFTAG_JPEGTABLES,  -3,-3, TIFF_UNDEFINED, FIELD_JPEGTABLES,
  164.       FALSE, TRUE, "JPEGTables" },
  165.     { TIFFTAG_JPEGQUALITY,  0, 0, TIFF_ANY, FIELD_PSEUDO,
  166.       TRUE, FALSE, "" },
  167.     { TIFFTAG_JPEGCOLORMODE,  0, 0, TIFF_ANY, FIELD_PSEUDO,
  168.       FALSE, FALSE, "" },
  169.     { TIFFTAG_JPEGTABLESMODE,  0, 0, TIFF_ANY, FIELD_PSEUDO,
  170.       FALSE, FALSE, "" },
  171.     /* Specific for JPEG in faxes */
  172.     { TIFFTAG_FAXRECVPARAMS,  1, 1, TIFF_LONG, FIELD_RECVPARAMS,
  173.       TRUE, FALSE, "FaxRecvParams" },
  174.     { TIFFTAG_FAXSUBADDRESS, -1,-1, TIFF_ASCII, FIELD_SUBADDRESS,
  175.       TRUE, FALSE, "FaxSubAddress" },
  176.     { TIFFTAG_FAXRECVTIME,  1, 1, TIFF_LONG, FIELD_RECVTIME,
  177.       TRUE, FALSE, "FaxRecvTime" },
  178.     { TIFFTAG_FAXDCS, -1, -1, TIFF_ASCII, FIELD_FAXDCS,
  179.   TRUE, FALSE, "FaxDcs" },
  180. };
  181. #define N(a) (sizeof (a) / sizeof (a[0]))
  182. /*
  183.  * libjpeg interface layer.
  184.  *
  185.  * We use setjmp/longjmp to return control to libtiff
  186.  * when a fatal error is encountered within the JPEG
  187.  * library.  We also direct libjpeg error and warning
  188.  * messages through the appropriate libtiff handlers.
  189.  */
  190. /*
  191.  * Error handling routines (these replace corresponding
  192.  * IJG routines from jerror.c).  These are used for both
  193.  * compression and decompression.
  194.  */
  195. static void
  196. TIFFjpeg_error_exit(j_common_ptr cinfo)
  197. {
  198. JPEGState *sp = (JPEGState *) cinfo; /* NB: cinfo assumed first */
  199. char buffer[JMSG_LENGTH_MAX];
  200. (*cinfo->err->format_message) (cinfo, buffer);
  201. TIFFErrorExt(sp->tif->tif_clientdata, "JPEGLib", buffer); /* display the error message */
  202. jpeg_abort(cinfo); /* clean up libjpeg state */
  203. LONGJMP(sp->exit_jmpbuf, 1); /* return to libtiff caller */
  204. }
  205. /*
  206.  * This routine is invoked only for warning messages,
  207.  * since error_exit does its own thing and trace_level
  208.  * is never set > 0.
  209.  */
  210. static void
  211. TIFFjpeg_output_message(j_common_ptr cinfo)
  212. {
  213. char buffer[JMSG_LENGTH_MAX];
  214. (*cinfo->err->format_message) (cinfo, buffer);
  215. TIFFWarningExt(((JPEGState *) cinfo)->tif->tif_clientdata, "JPEGLib", buffer);
  216. }
  217. /*
  218.  * Interface routines.  This layer of routines exists
  219.  * primarily to limit side-effects from using setjmp.
  220.  * Also, normal/error returns are converted into return
  221.  * values per libtiff practice.
  222.  */
  223. #define CALLJPEG(sp, fail, op) (SETJMP((sp)->exit_jmpbuf) ? (fail) : (op))
  224. #define CALLVJPEG(sp, op) CALLJPEG(sp, 0, ((op),1))
  225. static int
  226. TIFFjpeg_create_compress(JPEGState* sp)
  227. {
  228. /* initialize JPEG error handling */
  229. sp->cinfo.c.err = jpeg_std_error(&sp->err);
  230. sp->err.error_exit = TIFFjpeg_error_exit;
  231. sp->err.output_message = TIFFjpeg_output_message;
  232. return CALLVJPEG(sp, jpeg_create_compress(&sp->cinfo.c));
  233. }
  234. static int
  235. TIFFjpeg_create_decompress(JPEGState* sp)
  236. {
  237. /* initialize JPEG error handling */
  238. sp->cinfo.d.err = jpeg_std_error(&sp->err);
  239. sp->err.error_exit = TIFFjpeg_error_exit;
  240. sp->err.output_message = TIFFjpeg_output_message;
  241. return CALLVJPEG(sp, jpeg_create_decompress(&sp->cinfo.d));
  242. }
  243. static int
  244. TIFFjpeg_set_defaults(JPEGState* sp)
  245. {
  246. return CALLVJPEG(sp, jpeg_set_defaults(&sp->cinfo.c));
  247. }
  248. static int
  249. TIFFjpeg_set_colorspace(JPEGState* sp, J_COLOR_SPACE colorspace)
  250. {
  251. return CALLVJPEG(sp, jpeg_set_colorspace(&sp->cinfo.c, colorspace));
  252. }
  253. static int
  254. TIFFjpeg_set_quality(JPEGState* sp, int quality, boolean force_baseline)
  255. {
  256. return CALLVJPEG(sp,
  257.     jpeg_set_quality(&sp->cinfo.c, quality, force_baseline));
  258. }
  259. static int
  260. TIFFjpeg_suppress_tables(JPEGState* sp, boolean suppress)
  261. {
  262. return CALLVJPEG(sp, jpeg_suppress_tables(&sp->cinfo.c, suppress));
  263. }
  264. static int
  265. TIFFjpeg_start_compress(JPEGState* sp, boolean write_all_tables)
  266. {
  267. return CALLVJPEG(sp,
  268.     jpeg_start_compress(&sp->cinfo.c, write_all_tables));
  269. }
  270. static int
  271. TIFFjpeg_write_scanlines(JPEGState* sp, JSAMPARRAY scanlines, int num_lines)
  272. {
  273. return CALLJPEG(sp, -1, (int) jpeg_write_scanlines(&sp->cinfo.c,
  274.     scanlines, (JDIMENSION) num_lines));
  275. }
  276. static int
  277. TIFFjpeg_write_raw_data(JPEGState* sp, JSAMPIMAGE data, int num_lines)
  278. {
  279. return CALLJPEG(sp, -1, (int) jpeg_write_raw_data(&sp->cinfo.c,
  280.     data, (JDIMENSION) num_lines));
  281. }
  282. static int
  283. TIFFjpeg_finish_compress(JPEGState* sp)
  284. {
  285. return CALLVJPEG(sp, jpeg_finish_compress(&sp->cinfo.c));
  286. }
  287. static int
  288. TIFFjpeg_write_tables(JPEGState* sp)
  289. {
  290. return CALLVJPEG(sp, jpeg_write_tables(&sp->cinfo.c));
  291. }
  292. static int
  293. TIFFjpeg_read_header(JPEGState* sp, boolean require_image)
  294. {
  295. return CALLJPEG(sp, -1, jpeg_read_header(&sp->cinfo.d, require_image));
  296. }
  297. static int
  298. TIFFjpeg_start_decompress(JPEGState* sp)
  299. {
  300. return CALLVJPEG(sp, jpeg_start_decompress(&sp->cinfo.d));
  301. }
  302. static int
  303. TIFFjpeg_read_scanlines(JPEGState* sp, JSAMPARRAY scanlines, int max_lines)
  304. {
  305. return CALLJPEG(sp, -1, (int) jpeg_read_scanlines(&sp->cinfo.d,
  306.     scanlines, (JDIMENSION) max_lines));
  307. }
  308. static int
  309. TIFFjpeg_read_raw_data(JPEGState* sp, JSAMPIMAGE data, int max_lines)
  310. {
  311. return CALLJPEG(sp, -1, (int) jpeg_read_raw_data(&sp->cinfo.d,
  312.     data, (JDIMENSION) max_lines));
  313. }
  314. static int
  315. TIFFjpeg_finish_decompress(JPEGState* sp)
  316. {
  317. return CALLJPEG(sp, -1, (int) jpeg_finish_decompress(&sp->cinfo.d));
  318. }
  319. static int
  320. TIFFjpeg_abort(JPEGState* sp)
  321. {
  322. return CALLVJPEG(sp, jpeg_abort(&sp->cinfo.comm));
  323. }
  324. static int
  325. TIFFjpeg_destroy(JPEGState* sp)
  326. {
  327. return CALLVJPEG(sp, jpeg_destroy(&sp->cinfo.comm));
  328. }
  329. static JSAMPARRAY
  330. TIFFjpeg_alloc_sarray(JPEGState* sp, int pool_id,
  331.       JDIMENSION samplesperrow, JDIMENSION numrows)
  332. {
  333. return CALLJPEG(sp, (JSAMPARRAY) NULL,
  334.     (*sp->cinfo.comm.mem->alloc_sarray)
  335. (&sp->cinfo.comm, pool_id, samplesperrow, numrows));
  336. }
  337. /*
  338.  * JPEG library destination data manager.
  339.  * These routines direct compressed data from libjpeg into the
  340.  * libtiff output buffer.
  341.  */
  342. static void
  343. std_init_destination(j_compress_ptr cinfo)
  344. {
  345. JPEGState* sp = (JPEGState*) cinfo;
  346. TIFF* tif = sp->tif;
  347. sp->dest.next_output_byte = (JOCTET*) tif->tif_rawdata;
  348. sp->dest.free_in_buffer = (size_t) tif->tif_rawdatasize;
  349. }
  350. static boolean
  351. std_empty_output_buffer(j_compress_ptr cinfo)
  352. {
  353. JPEGState* sp = (JPEGState*) cinfo;
  354. TIFF* tif = sp->tif;
  355. /* the entire buffer has been filled */
  356. tif->tif_rawcc = tif->tif_rawdatasize;
  357. TIFFFlushData1(tif);
  358. sp->dest.next_output_byte = (JOCTET*) tif->tif_rawdata;
  359. sp->dest.free_in_buffer = (size_t) tif->tif_rawdatasize;
  360. return (TRUE);
  361. }
  362. static void
  363. std_term_destination(j_compress_ptr cinfo)
  364. {
  365. JPEGState* sp = (JPEGState*) cinfo;
  366. TIFF* tif = sp->tif;
  367. tif->tif_rawcp = (tidata_t) sp->dest.next_output_byte;
  368. tif->tif_rawcc =
  369.     tif->tif_rawdatasize - (tsize_t) sp->dest.free_in_buffer;
  370. /* NB: libtiff does the final buffer flush */
  371. }
  372. static void
  373. TIFFjpeg_data_dest(JPEGState* sp, TIFF* tif)
  374. {
  375. (void) tif;
  376. sp->cinfo.c.dest = &sp->dest;
  377. sp->dest.init_destination = std_init_destination;
  378. sp->dest.empty_output_buffer = std_empty_output_buffer;
  379. sp->dest.term_destination = std_term_destination;
  380. }
  381. /*
  382.  * Alternate destination manager for outputting to JPEGTables field.
  383.  */
  384. static void
  385. tables_init_destination(j_compress_ptr cinfo)
  386. {
  387. JPEGState* sp = (JPEGState*) cinfo;
  388. /* while building, jpegtables_length is allocated buffer size */
  389. sp->dest.next_output_byte = (JOCTET*) sp->jpegtables;
  390. sp->dest.free_in_buffer = (size_t) sp->jpegtables_length;
  391. }
  392. static boolean
  393. tables_empty_output_buffer(j_compress_ptr cinfo)
  394. {
  395. JPEGState* sp = (JPEGState*) cinfo;
  396. void* newbuf;
  397. /* the entire buffer has been filled; enlarge it by 1000 bytes */
  398. newbuf = _TIFFrealloc((tdata_t) sp->jpegtables,
  399.       (tsize_t) (sp->jpegtables_length + 1000));
  400. if (newbuf == NULL)
  401. ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, 100);
  402. sp->dest.next_output_byte = (JOCTET*) newbuf + sp->jpegtables_length;
  403. sp->dest.free_in_buffer = (size_t) 1000;
  404. sp->jpegtables = newbuf;
  405. sp->jpegtables_length += 1000;
  406. return (TRUE);
  407. }
  408. static void
  409. tables_term_destination(j_compress_ptr cinfo)
  410. {
  411. JPEGState* sp = (JPEGState*) cinfo;
  412. /* set tables length to number of bytes actually emitted */
  413. sp->jpegtables_length -= sp->dest.free_in_buffer;
  414. }
  415. static int
  416. TIFFjpeg_tables_dest(JPEGState* sp, TIFF* tif)
  417. {
  418. (void) tif;
  419. /*
  420.  * Allocate a working buffer for building tables.
  421.  * Initial size is 1000 bytes, which is usually adequate.
  422.  */
  423. if (sp->jpegtables)
  424. _TIFFfree(sp->jpegtables);
  425. sp->jpegtables_length = 1000;
  426. sp->jpegtables = (void*) _TIFFmalloc((tsize_t) sp->jpegtables_length);
  427. if (sp->jpegtables == NULL) {
  428. sp->jpegtables_length = 0;
  429. TIFFErrorExt(sp->tif->tif_clientdata, "TIFFjpeg_tables_dest", "No space for JPEGTables");
  430. return (0);
  431. }
  432. sp->cinfo.c.dest = &sp->dest;
  433. sp->dest.init_destination = tables_init_destination;
  434. sp->dest.empty_output_buffer = tables_empty_output_buffer;
  435. sp->dest.term_destination = tables_term_destination;
  436. return (1);
  437. }
  438. /*
  439.  * JPEG library source data manager.
  440.  * These routines supply compressed data to libjpeg.
  441.  */
  442. static void
  443. std_init_source(j_decompress_ptr cinfo)
  444. {
  445. JPEGState* sp = (JPEGState*) cinfo;
  446. TIFF* tif = sp->tif;
  447. sp->src.next_input_byte = (const JOCTET*) tif->tif_rawdata;
  448. sp->src.bytes_in_buffer = (size_t) tif->tif_rawcc;
  449. }
  450. static boolean
  451. std_fill_input_buffer(j_decompress_ptr cinfo)
  452. {
  453. JPEGState* sp = (JPEGState* ) cinfo;
  454. static const JOCTET dummy_EOI[2] = { 0xFF, JPEG_EOI };
  455. /*
  456.  * Should never get here since entire strip/tile is
  457.  * read into memory before the decompressor is called,
  458.  * and thus was supplied by init_source.
  459.  */
  460. WARNMS(cinfo, JWRN_JPEG_EOF);
  461. /* insert a fake EOI marker */
  462. sp->src.next_input_byte = dummy_EOI;
  463. sp->src.bytes_in_buffer = 2;
  464. return (TRUE);
  465. }
  466. static void
  467. std_skip_input_data(j_decompress_ptr cinfo, long num_bytes)
  468. {
  469. JPEGState* sp = (JPEGState*) cinfo;
  470. if (num_bytes > 0) {
  471. if (num_bytes > (long) sp->src.bytes_in_buffer) {
  472. /* oops, buffer overrun */
  473. (void) std_fill_input_buffer(cinfo);
  474. } else {
  475. sp->src.next_input_byte += (size_t) num_bytes;
  476. sp->src.bytes_in_buffer -= (size_t) num_bytes;
  477. }
  478. }
  479. }
  480. static void
  481. std_term_source(j_decompress_ptr cinfo)
  482. {
  483. /* No work necessary here */
  484. /* Or must we update tif->tif_rawcp, tif->tif_rawcc ??? */
  485. /* (if so, need empty tables_term_source!) */
  486. (void) cinfo;
  487. }
  488. static void
  489. TIFFjpeg_data_src(JPEGState* sp, TIFF* tif)
  490. {
  491. (void) tif;
  492. sp->cinfo.d.src = &sp->src;
  493. sp->src.init_source = std_init_source;
  494. sp->src.fill_input_buffer = std_fill_input_buffer;
  495. sp->src.skip_input_data = std_skip_input_data;
  496. sp->src.resync_to_restart = jpeg_resync_to_restart;
  497. sp->src.term_source = std_term_source;
  498. sp->src.bytes_in_buffer = 0; /* for safety */
  499. sp->src.next_input_byte = NULL;
  500. }
  501. /*
  502.  * Alternate source manager for reading from JPEGTables.
  503.  * We can share all the code except for the init routine.
  504.  */
  505. static void
  506. tables_init_source(j_decompress_ptr cinfo)
  507. {
  508. JPEGState* sp = (JPEGState*) cinfo;
  509. sp->src.next_input_byte = (const JOCTET*) sp->jpegtables;
  510. sp->src.bytes_in_buffer = (size_t) sp->jpegtables_length;
  511. }
  512. static void
  513. TIFFjpeg_tables_src(JPEGState* sp, TIFF* tif)
  514. {
  515. TIFFjpeg_data_src(sp, tif);
  516. sp->src.init_source = tables_init_source;
  517. }
  518. /*
  519.  * Allocate downsampled-data buffers needed for downsampled I/O.
  520.  * We use values computed in jpeg_start_compress or jpeg_start_decompress.
  521.  * We use libjpeg's allocator so that buffers will be released automatically
  522.  * when done with strip/tile.
  523.  * This is also a handy place to compute samplesperclump, bytesperline.
  524.  */
  525. static int
  526. alloc_downsampled_buffers(TIFF* tif, jpeg_component_info* comp_info,
  527.   int num_components)
  528. {
  529. JPEGState* sp = JState(tif);
  530. int ci;
  531. jpeg_component_info* compptr;
  532. JSAMPARRAY buf;
  533. int samples_per_clump = 0;
  534. for (ci = 0, compptr = comp_info; ci < num_components;
  535.      ci++, compptr++) {
  536. samples_per_clump += compptr->h_samp_factor *
  537. compptr->v_samp_factor;
  538. buf = TIFFjpeg_alloc_sarray(sp, JPOOL_IMAGE,
  539. compptr->width_in_blocks * DCTSIZE,
  540. (JDIMENSION) (compptr->v_samp_factor*DCTSIZE));
  541. if (buf == NULL)
  542. return (0);
  543. sp->ds_buffer[ci] = buf;
  544. }
  545. sp->samplesperclump = samples_per_clump;
  546. return (1);
  547. }
  548. /*
  549.  * JPEG Decoding.
  550.  */
  551. static int
  552. JPEGSetupDecode(TIFF* tif)
  553. {
  554. JPEGState* sp = JState(tif);
  555. TIFFDirectory *td = &tif->tif_dir;
  556.         JPEGInitializeLibJPEG( tif, 0, 1 );
  557. assert(sp != NULL);
  558. assert(sp->cinfo.comm.is_decompressor);
  559. /* Read JPEGTables if it is present */
  560. if (TIFFFieldSet(tif,FIELD_JPEGTABLES)) {
  561. TIFFjpeg_tables_src(sp, tif);
  562. if(TIFFjpeg_read_header(sp,FALSE) != JPEG_HEADER_TABLES_ONLY) {
  563. TIFFErrorExt(tif->tif_clientdata, "JPEGSetupDecode", "Bogus JPEGTables field");
  564. return (0);
  565. }
  566. }
  567. /* Grab parameters that are same for all strips/tiles */
  568. sp->photometric = td->td_photometric;
  569. switch (sp->photometric) {
  570. case PHOTOMETRIC_YCBCR:
  571. sp->h_sampling = td->td_ycbcrsubsampling[0];
  572. sp->v_sampling = td->td_ycbcrsubsampling[1];
  573. break;
  574. default:
  575. /* TIFF 6.0 forbids subsampling of all other color spaces */
  576. sp->h_sampling = 1;
  577. sp->v_sampling = 1;
  578. break;
  579. }
  580. /* Set up for reading normal data */
  581. TIFFjpeg_data_src(sp, tif);
  582. tif->tif_postdecode = _TIFFNoPostDecode; /* override byte swapping */
  583. return (1);
  584. }
  585. /*
  586.  * Set up for decoding a strip or tile.
  587.  */
  588. static int
  589. JPEGPreDecode(TIFF* tif, tsample_t s)
  590. {
  591. JPEGState *sp = JState(tif);
  592. TIFFDirectory *td = &tif->tif_dir;
  593. static const char module[] = "JPEGPreDecode";
  594. uint32 segment_width, segment_height;
  595. int downsampled_output;
  596. int ci;
  597. assert(sp != NULL);
  598. assert(sp->cinfo.comm.is_decompressor);
  599. /*
  600.  * Reset decoder state from any previous strip/tile,
  601.  * in case application didn't read the whole strip.
  602.  */
  603. if (!TIFFjpeg_abort(sp))
  604. return (0);
  605. /*
  606.  * Read the header for this strip/tile.
  607.  */
  608. if (TIFFjpeg_read_header(sp, TRUE) != JPEG_HEADER_OK)
  609. return (0);
  610. /*
  611.  * Check image parameters and set decompression parameters.
  612.  */
  613. segment_width = td->td_imagewidth;
  614. segment_height = td->td_imagelength - tif->tif_row;
  615. if (isTiled(tif)) {
  616.                 segment_width = td->td_tilewidth;
  617.                 segment_height = td->td_tilelength;
  618. sp->bytesperline = TIFFTileRowSize(tif);
  619. } else {
  620. if (segment_height > td->td_rowsperstrip)
  621. segment_height = td->td_rowsperstrip;
  622. sp->bytesperline = TIFFScanlineSize(tif);
  623. }
  624. if (td->td_planarconfig == PLANARCONFIG_SEPARATE && s > 0) {
  625. /*
  626.  * For PC 2, scale down the expected strip/tile size
  627.  * to match a downsampled component
  628.  */
  629. segment_width = TIFFhowmany(segment_width, sp->h_sampling);
  630. segment_height = TIFFhowmany(segment_height, sp->v_sampling);
  631. }
  632. if (sp->cinfo.d.image_width != segment_width ||
  633.     sp->cinfo.d.image_height != segment_height) {
  634. TIFFWarningExt(tif->tif_clientdata, module,
  635.                  "Improper JPEG strip/tile size, expected %dx%d, got %dx%d",
  636.                           segment_width, 
  637.                           segment_height,
  638.                           sp->cinfo.d.image_width, 
  639.                           sp->cinfo.d.image_height);
  640. }
  641. if (sp->cinfo.d.num_components !=
  642.     (td->td_planarconfig == PLANARCONFIG_CONTIG ?
  643.      td->td_samplesperpixel : 1)) {
  644. TIFFErrorExt(tif->tif_clientdata, module, "Improper JPEG component count");
  645. return (0);
  646. }
  647. #ifdef JPEG_LIB_MK1
  648. if (12 != td->td_bitspersample && 8 != td->td_bitspersample) {
  649. TIFFErrorExt(tif->tif_clientdata, module, "Improper JPEG data precision");
  650.             return (0);
  651. }
  652.         sp->cinfo.d.data_precision = td->td_bitspersample;
  653.         sp->cinfo.d.bits_in_jsample = td->td_bitspersample;
  654. #else
  655. if (sp->cinfo.d.data_precision != td->td_bitspersample) {
  656. TIFFErrorExt(tif->tif_clientdata, module, "Improper JPEG data precision");
  657.             return (0);
  658. }
  659. #endif
  660. if (td->td_planarconfig == PLANARCONFIG_CONTIG) {
  661. /* Component 0 should have expected sampling factors */
  662. if (sp->cinfo.d.comp_info[0].h_samp_factor != sp->h_sampling ||
  663.     sp->cinfo.d.comp_info[0].v_samp_factor != sp->v_sampling) {
  664. TIFFWarningExt(tif->tif_clientdata, module,
  665.                                     "Improper JPEG sampling factors %d,%dn"
  666.                                     "Apparently should be %d,%d.",
  667.                                     sp->cinfo.d.comp_info[0].h_samp_factor,
  668.                                     sp->cinfo.d.comp_info[0].v_samp_factor,
  669.                                     sp->h_sampling, sp->v_sampling);
  670.     /*
  671.      * XXX: Files written by the Intergraph software
  672.      * has different sampling factors stored in the
  673.      * TIFF tags and in the JPEG structures. We will
  674.      * try to deduce Intergraph files by the presense
  675.      * of the tag 33918.
  676.      */
  677.     if (!_TIFFFindFieldInfo(tif, 33918, TIFF_ANY)) {
  678. TIFFWarningExt(tif->tif_clientdata, module,
  679. "Decompressor will try reading with "
  680. "sampling %d,%d.",
  681. sp->cinfo.d.comp_info[0].h_samp_factor,
  682. sp->cinfo.d.comp_info[0].v_samp_factor);
  683.     sp->h_sampling = (uint16)
  684. sp->cinfo.d.comp_info[0].h_samp_factor;
  685.     sp->v_sampling = (uint16)
  686. sp->cinfo.d.comp_info[0].v_samp_factor;
  687.     }
  688. }
  689. /* Rest should have sampling factors 1,1 */
  690. for (ci = 1; ci < sp->cinfo.d.num_components; ci++) {
  691. if (sp->cinfo.d.comp_info[ci].h_samp_factor != 1 ||
  692.     sp->cinfo.d.comp_info[ci].v_samp_factor != 1) {
  693. TIFFErrorExt(tif->tif_clientdata, module, "Improper JPEG sampling factors");
  694. return (0);
  695. }
  696. }
  697. } else {
  698. /* PC 2's single component should have sampling factors 1,1 */
  699. if (sp->cinfo.d.comp_info[0].h_samp_factor != 1 ||
  700.     sp->cinfo.d.comp_info[0].v_samp_factor != 1) {
  701. TIFFErrorExt(tif->tif_clientdata, module, "Improper JPEG sampling factors");
  702. return (0);
  703. }
  704. }
  705. downsampled_output = FALSE;
  706. if (td->td_planarconfig == PLANARCONFIG_CONTIG &&
  707.     sp->photometric == PHOTOMETRIC_YCBCR &&
  708.     sp->jpegcolormode == JPEGCOLORMODE_RGB) {
  709. /* Convert YCbCr to RGB */
  710. sp->cinfo.d.jpeg_color_space = JCS_YCbCr;
  711. sp->cinfo.d.out_color_space = JCS_RGB;
  712. } else {
  713. /* Suppress colorspace handling */
  714. sp->cinfo.d.jpeg_color_space = JCS_UNKNOWN;
  715. sp->cinfo.d.out_color_space = JCS_UNKNOWN;
  716. if (td->td_planarconfig == PLANARCONFIG_CONTIG &&
  717.     (sp->h_sampling != 1 || sp->v_sampling != 1))
  718. downsampled_output = TRUE;
  719. /* XXX what about up-sampling? */
  720. }
  721. if (downsampled_output) {
  722. /* Need to use raw-data interface to libjpeg */
  723. sp->cinfo.d.raw_data_out = TRUE;
  724. tif->tif_decoderow = JPEGDecodeRaw;
  725. tif->tif_decodestrip = JPEGDecodeRaw;
  726. tif->tif_decodetile = JPEGDecodeRaw;
  727. } else {
  728. /* Use normal interface to libjpeg */
  729. sp->cinfo.d.raw_data_out = FALSE;
  730. tif->tif_decoderow = JPEGDecode;
  731. tif->tif_decodestrip = JPEGDecode;
  732. tif->tif_decodetile = JPEGDecode;
  733. }
  734. /* Start JPEG decompressor */
  735. if (!TIFFjpeg_start_decompress(sp))
  736. return (0);
  737. /* Allocate downsampled-data buffers if needed */
  738. if (downsampled_output) {
  739. if (!alloc_downsampled_buffers(tif, sp->cinfo.d.comp_info,
  740.        sp->cinfo.d.num_components))
  741. return (0);
  742. sp->scancount = DCTSIZE; /* mark buffer empty */
  743. }
  744. return (1);
  745. }
  746. /*
  747.  * Decode a chunk of pixels.
  748.  * "Standard" case: returned data is not downsampled.
  749.  */
  750. /*ARGSUSED*/ static int
  751. JPEGDecode(TIFF* tif, tidata_t buf, tsize_t cc, tsample_t s)
  752. {
  753.     JPEGState *sp = JState(tif);
  754.     tsize_t nrows;
  755.     (void) s;
  756.     nrows = cc / sp->bytesperline;
  757.     if (cc % sp->bytesperline)
  758. TIFFWarningExt(tif->tif_clientdata, tif->tif_name, "fractional scanline not read");
  759.     if( nrows > (int) sp->cinfo.d.image_height )
  760.         nrows = sp->cinfo.d.image_height;
  761.     /* data is expected to be read in multiples of a scanline */
  762.     if (nrows)
  763.     {
  764.         JSAMPROW line_work_buf = NULL;
  765.         /*
  766.         ** For 6B, only use temporary buffer for 12 bit imagery. 
  767.         ** For Mk1 always use it. 
  768.         */
  769. #if !defined(JPEG_LIB_MK1)        
  770.         if( sp->cinfo.d.data_precision == 12 )
  771. #endif
  772.         {
  773.             line_work_buf = (JSAMPROW) 
  774.                 _TIFFmalloc(sizeof(short) * sp->cinfo.d.output_width 
  775.                             * sp->cinfo.d.num_components );
  776.         }
  777.         do {
  778.             if( line_work_buf != NULL )
  779.             {
  780.                 /* 
  781.                 ** In the MK1 case, we aways read into a 16bit buffer, and then
  782.                 ** pack down to 12bit or 8bit.  In 6B case we only read into 16
  783.                 ** bit buffer for 12bit data, which we need to repack. 
  784.                 */
  785.                 if (TIFFjpeg_read_scanlines(sp, &line_work_buf, 1) != 1)
  786.                     return (0);
  787.                 if( sp->cinfo.d.data_precision == 12 )
  788.                 {
  789.                     int value_pairs = (sp->cinfo.d.output_width 
  790.                                        * sp->cinfo.d.num_components) / 2;
  791.                     int iPair;
  792.                     for( iPair = 0; iPair < value_pairs; iPair++ )
  793.                     {
  794.                         unsigned char *out_ptr = 
  795.                             ((unsigned char *) buf) + iPair * 3;
  796.                         JSAMPLE *in_ptr = line_work_buf + iPair * 2;
  797.                         out_ptr[0] = (in_ptr[0] & 0xff0) >> 4;
  798.                         out_ptr[1] = ((in_ptr[0] & 0xf) << 4)
  799.                             | ((in_ptr[1] & 0xf00) >> 8);
  800.                         out_ptr[2] = ((in_ptr[1] & 0xff) >> 0);
  801.                     }
  802.                 }
  803.                 else if( sp->cinfo.d.data_precision == 8 )
  804.                 {
  805.                     int value_count = (sp->cinfo.d.output_width 
  806.                                        * sp->cinfo.d.num_components);
  807.                     int iValue;
  808.                     for( iValue = 0; iValue < value_count; iValue++ )
  809.                     {
  810.                         ((unsigned char *) buf)[iValue] = 
  811.                             line_work_buf[iValue] & 0xff;
  812.                     }
  813.                 }
  814.             }
  815.             else
  816.             {
  817.                 /*
  818.                 ** In the libjpeg6b 8bit case.  We read directly into the 
  819.                 ** TIFF buffer.
  820.                 */
  821.                 JSAMPROW bufptr = (JSAMPROW)buf;
  822.   
  823.                 if (TIFFjpeg_read_scanlines(sp, &bufptr, 1) != 1)
  824.                     return (0);
  825.             }
  826.             ++tif->tif_row;
  827.             buf += sp->bytesperline;
  828.             cc -= sp->bytesperline;
  829.         } while (--nrows > 0);
  830.         if( line_work_buf != NULL )
  831.             _TIFFfree( line_work_buf );
  832.     }
  833.     /* Close down the decompressor if we've finished the strip or tile. */
  834.     return sp->cinfo.d.output_scanline < sp->cinfo.d.output_height
  835.         || TIFFjpeg_finish_decompress(sp);
  836. }
  837. /*
  838.  * Decode a chunk of pixels.
  839.  * Returned data is downsampled per sampling factors.
  840.  */
  841. /*ARGSUSED*/ static int
  842. JPEGDecodeRaw(TIFF* tif, tidata_t buf, tsize_t cc, tsample_t s)
  843. {
  844.     JPEGState *sp = JState(tif);
  845.     tsize_t nrows;
  846.     (void) s;
  847.     /* data is expected to be read in multiples of a scanline */
  848.     if ( (nrows = sp->cinfo.d.image_height) ) {
  849.         /* Cb,Cr both have sampling factors 1, so this is correct */
  850.         JDIMENSION clumps_per_line = sp->cinfo.d.comp_info[1].downsampled_width;
  851.         int samples_per_clump = sp->samplesperclump;
  852. #ifdef JPEG_LIB_MK1
  853.         unsigned short* tmpbuf = _TIFFmalloc(sizeof(unsigned short) *
  854.                                              sp->cinfo.d.output_width *
  855.                                              sp->cinfo.d.num_components);
  856. #endif
  857.  
  858.         do {
  859.             jpeg_component_info *compptr;
  860.             int ci, clumpoffset;
  861.             /* Reload downsampled-data buffer if needed */
  862.             if (sp->scancount >= DCTSIZE) {
  863.                 int n = sp->cinfo.d.max_v_samp_factor * DCTSIZE;
  864.                 if (TIFFjpeg_read_raw_data(sp, sp->ds_buffer, n)
  865.                     != n)
  866.                     return (0);
  867.                 sp->scancount = 0;
  868.             }
  869.             /*
  870.              * Fastest way to unseparate data is to make one pass
  871.              * over the scanline for each row of each component.
  872.              */
  873.             clumpoffset = 0; /* first sample in clump */
  874.             for (ci = 0, compptr = sp->cinfo.d.comp_info;
  875.                  ci < sp->cinfo.d.num_components;
  876.                  ci++, compptr++) {
  877.                 int hsamp = compptr->h_samp_factor;
  878.                 int vsamp = compptr->v_samp_factor;
  879.                 int ypos;
  880.                 for (ypos = 0; ypos < vsamp; ypos++) {
  881.                     JSAMPLE *inptr = sp->ds_buffer[ci][sp->scancount*vsamp + ypos];
  882. #ifdef JPEG_LIB_MK1
  883.                     JSAMPLE *outptr = (JSAMPLE*)tmpbuf + clumpoffset;
  884. #else
  885.                     JSAMPLE *outptr = (JSAMPLE*)buf + clumpoffset;
  886. #endif
  887.                     JDIMENSION nclump;
  888.                     if (hsamp == 1) {
  889.                         /* fast path for at least Cb and Cr */
  890.                         for (nclump = clumps_per_line; nclump-- > 0; ) {
  891.                             outptr[0] = *inptr++;
  892.                             outptr += samples_per_clump;
  893.                         }
  894.                     } else {
  895.                         int xpos;
  896.                         /* general case */
  897.                         for (nclump = clumps_per_line; nclump-- > 0; ) {
  898.                             for (xpos = 0; xpos < hsamp; xpos++)
  899.                                 outptr[xpos] = *inptr++;
  900.                             outptr += samples_per_clump;
  901.                         }
  902.                     }
  903.                     clumpoffset += hsamp;
  904.                 }
  905.             }
  906. #ifdef JPEG_LIB_MK1
  907.             {
  908.                 if (sp->cinfo.d.data_precision == 8)
  909.                 {
  910.                     int i=0;
  911.                     int len = sp->cinfo.d.output_width * sp->cinfo.d.num_components;
  912.                     for (i=0; i<len; i++)
  913.                     {
  914.                         ((unsigned char*)buf)[i] = tmpbuf[i] & 0xff;
  915.                     }
  916.                 }
  917.                 else
  918.                 {         // 12-bit
  919.                     int value_pairs = (sp->cinfo.d.output_width
  920.                                        * sp->cinfo.d.num_components) / 2;
  921.                     int iPair;
  922.                     for( iPair = 0; iPair < value_pairs; iPair++ )
  923.                     {
  924.                         unsigned char *out_ptr = ((unsigned char *) buf) + iPair * 3;
  925.                         JSAMPLE *in_ptr = tmpbuf + iPair * 2;
  926.                         out_ptr[0] = (in_ptr[0] & 0xff0) >> 4;
  927.                         out_ptr[1] = ((in_ptr[0] & 0xf) << 4)
  928.                             | ((in_ptr[1] & 0xf00) >> 8);
  929.                         out_ptr[2] = ((in_ptr[1] & 0xff) >> 0);
  930.                     }
  931.                 }
  932.             }
  933. #endif
  934.             ++sp->scancount;
  935.             ++tif->tif_row;
  936.             buf += sp->bytesperline;
  937.             cc -= sp->bytesperline;
  938.         } while (--nrows > 0);
  939.   
  940. #ifdef JPEG_LIB_MK1
  941.         _TIFFfree(tmpbuf);
  942. #endif
  943.     }
  944.     /* Close down the decompressor if done. */
  945.     return sp->cinfo.d.output_scanline < sp->cinfo.d.output_height
  946.         || TIFFjpeg_finish_decompress(sp);
  947. }
  948. /*
  949.  * JPEG Encoding.
  950.  */
  951. static void
  952. unsuppress_quant_table (JPEGState* sp, int tblno)
  953. {
  954. JQUANT_TBL* qtbl;
  955. if ((qtbl = sp->cinfo.c.quant_tbl_ptrs[tblno]) != NULL)
  956. qtbl->sent_table = FALSE;
  957. }
  958. static void
  959. unsuppress_huff_table (JPEGState* sp, int tblno)
  960. {
  961. JHUFF_TBL* htbl;
  962. if ((htbl = sp->cinfo.c.dc_huff_tbl_ptrs[tblno]) != NULL)
  963. htbl->sent_table = FALSE;
  964. if ((htbl = sp->cinfo.c.ac_huff_tbl_ptrs[tblno]) != NULL)
  965. htbl->sent_table = FALSE;
  966. }
  967. static int
  968. prepare_JPEGTables(TIFF* tif)
  969. {
  970. JPEGState* sp = JState(tif);
  971.         JPEGInitializeLibJPEG( tif, 0, 0 );
  972. /* Initialize quant tables for current quality setting */
  973. if (!TIFFjpeg_set_quality(sp, sp->jpegquality, FALSE))
  974. return (0);
  975. /* Mark only the tables we want for output */
  976. /* NB: chrominance tables are currently used only with YCbCr */
  977. if (!TIFFjpeg_suppress_tables(sp, TRUE))
  978. return (0);
  979. if (sp->jpegtablesmode & JPEGTABLESMODE_QUANT) {
  980. unsuppress_quant_table(sp, 0);
  981. if (sp->photometric == PHOTOMETRIC_YCBCR)
  982. unsuppress_quant_table(sp, 1);
  983. }
  984. if (sp->jpegtablesmode & JPEGTABLESMODE_HUFF) {
  985. unsuppress_huff_table(sp, 0);
  986. if (sp->photometric == PHOTOMETRIC_YCBCR)
  987. unsuppress_huff_table(sp, 1);
  988. }
  989. /* Direct libjpeg output into jpegtables */
  990. if (!TIFFjpeg_tables_dest(sp, tif))
  991. return (0);
  992. /* Emit tables-only datastream */
  993. if (!TIFFjpeg_write_tables(sp))
  994. return (0);
  995. return (1);
  996. }
  997. static int
  998. JPEGSetupEncode(TIFF* tif)
  999. {
  1000. JPEGState* sp = JState(tif);
  1001. TIFFDirectory *td = &tif->tif_dir;
  1002. static const char module[] = "JPEGSetupEncode";
  1003.         JPEGInitializeLibJPEG( tif, 1, 0 );
  1004. assert(sp != NULL);
  1005. assert(!sp->cinfo.comm.is_decompressor);
  1006. /*
  1007.  * Initialize all JPEG parameters to default values.
  1008.  * Note that jpeg_set_defaults needs legal values for
  1009.  * in_color_space and input_components.
  1010.  */
  1011. sp->cinfo.c.in_color_space = JCS_UNKNOWN;
  1012. sp->cinfo.c.input_components = 1;
  1013. if (!TIFFjpeg_set_defaults(sp))
  1014. return (0);
  1015. /* Set per-file parameters */
  1016. sp->photometric = td->td_photometric;
  1017. switch (sp->photometric) {
  1018. case PHOTOMETRIC_YCBCR:
  1019. sp->h_sampling = td->td_ycbcrsubsampling[0];
  1020. sp->v_sampling = td->td_ycbcrsubsampling[1];
  1021. /*
  1022.  * A ReferenceBlackWhite field *must* be present since the
  1023.  * default value is inappropriate for YCbCr.  Fill in the
  1024.  * proper value if application didn't set it.
  1025.  */
  1026. {
  1027. float *ref;
  1028. if (!TIFFGetField(tif, TIFFTAG_REFERENCEBLACKWHITE,
  1029.   &ref)) {
  1030. float refbw[6];
  1031. long top = 1L << td->td_bitspersample;
  1032. refbw[0] = 0;
  1033. refbw[1] = (float)(top-1L);
  1034. refbw[2] = (float)(top>>1);
  1035. refbw[3] = refbw[1];
  1036. refbw[4] = refbw[2];
  1037. refbw[5] = refbw[1];
  1038. TIFFSetField(tif, TIFFTAG_REFERENCEBLACKWHITE,
  1039.      refbw);
  1040. }
  1041. }
  1042. break;
  1043. case PHOTOMETRIC_PALETTE: /* disallowed by Tech Note */
  1044. case PHOTOMETRIC_MASK:
  1045. TIFFErrorExt(tif->tif_clientdata, module,
  1046.   "PhotometricInterpretation %d not allowed for JPEG",
  1047.   (int) sp->photometric);
  1048. return (0);
  1049. default:
  1050. /* TIFF 6.0 forbids subsampling of all other color spaces */
  1051. sp->h_sampling = 1;
  1052. sp->v_sampling = 1;
  1053. break;
  1054. }
  1055. /* Verify miscellaneous parameters */
  1056. /*
  1057.  * This would need work if libtiff ever supports different
  1058.  * depths for different components, or if libjpeg ever supports
  1059.  * run-time selection of depth.  Neither is imminent.
  1060.  */
  1061. #ifdef JPEG_LIB_MK1
  1062.         /* BITS_IN_JSAMPLE now permits 8 and 12 --- dgilbert */
  1063. if (td->td_bitspersample != 8 && td->td_bitspersample != 12) 
  1064. #else
  1065. if (td->td_bitspersample != BITS_IN_JSAMPLE ) 
  1066. #endif
  1067.         {
  1068. TIFFErrorExt(tif->tif_clientdata, module, "BitsPerSample %d not allowed for JPEG",
  1069.   (int) td->td_bitspersample);
  1070. return (0);
  1071. }
  1072. sp->cinfo.c.data_precision = td->td_bitspersample;
  1073. #ifdef JPEG_LIB_MK1
  1074.         sp->cinfo.c.bits_in_jsample = td->td_bitspersample;
  1075. #endif
  1076. if (isTiled(tif)) {
  1077. if ((td->td_tilelength % (sp->v_sampling * DCTSIZE)) != 0) {
  1078. TIFFErrorExt(tif->tif_clientdata, module,
  1079.   "JPEG tile height must be multiple of %d",
  1080.   sp->v_sampling * DCTSIZE);
  1081. return (0);
  1082. }
  1083. if ((td->td_tilewidth % (sp->h_sampling * DCTSIZE)) != 0) {
  1084. TIFFErrorExt(tif->tif_clientdata, module,
  1085.   "JPEG tile width must be multiple of %d",
  1086.   sp->h_sampling * DCTSIZE);
  1087. return (0);
  1088. }
  1089. } else {
  1090. if (td->td_rowsperstrip < td->td_imagelength &&
  1091.     (td->td_rowsperstrip % (sp->v_sampling * DCTSIZE)) != 0) {
  1092. TIFFErrorExt(tif->tif_clientdata, module,
  1093.   "RowsPerStrip must be multiple of %d for JPEG",
  1094.   sp->v_sampling * DCTSIZE);
  1095. return (0);
  1096. }
  1097. }
  1098. /* Create a JPEGTables field if appropriate */
  1099. if (sp->jpegtablesmode & (JPEGTABLESMODE_QUANT|JPEGTABLESMODE_HUFF)) {
  1100. if (!prepare_JPEGTables(tif))
  1101. return (0);
  1102. /* Mark the field present */
  1103. /* Can't use TIFFSetField since BEENWRITING is already set! */
  1104. TIFFSetFieldBit(tif, FIELD_JPEGTABLES);
  1105. tif->tif_flags |= TIFF_DIRTYDIRECT;
  1106. } else {
  1107. /* We do not support application-supplied JPEGTables, */
  1108. /* so mark the field not present */
  1109. TIFFClrFieldBit(tif, FIELD_JPEGTABLES);
  1110. }
  1111. /* Direct libjpeg output to libtiff's output buffer */
  1112. TIFFjpeg_data_dest(sp, tif);
  1113. return (1);
  1114. }
  1115. /*
  1116.  * Set encoding state at the start of a strip or tile.
  1117.  */
  1118. static int
  1119. JPEGPreEncode(TIFF* tif, tsample_t s)
  1120. {
  1121. JPEGState *sp = JState(tif);
  1122. TIFFDirectory *td = &tif->tif_dir;
  1123. static const char module[] = "JPEGPreEncode";
  1124. uint32 segment_width, segment_height;
  1125. int downsampled_input;
  1126. assert(sp != NULL);
  1127. assert(!sp->cinfo.comm.is_decompressor);
  1128. /*
  1129.  * Set encoding parameters for this strip/tile.
  1130.  */
  1131. if (isTiled(tif)) {
  1132. segment_width = td->td_tilewidth;
  1133. segment_height = td->td_tilelength;
  1134. sp->bytesperline = TIFFTileRowSize(tif);
  1135. } else {
  1136. segment_width = td->td_imagewidth;
  1137. segment_height = td->td_imagelength - tif->tif_row;
  1138. if (segment_height > td->td_rowsperstrip)
  1139. segment_height = td->td_rowsperstrip;
  1140. sp->bytesperline = TIFFScanlineSize(tif);
  1141. }
  1142. if (td->td_planarconfig == PLANARCONFIG_SEPARATE && s > 0) {
  1143. /* for PC 2, scale down the strip/tile size
  1144.  * to match a downsampled component
  1145.  */
  1146. segment_width = TIFFhowmany(segment_width, sp->h_sampling);
  1147. segment_height = TIFFhowmany(segment_height, sp->v_sampling);
  1148. }
  1149. if (segment_width > 65535 || segment_height > 65535) {
  1150. TIFFErrorExt(tif->tif_clientdata, module, "Strip/tile too large for JPEG");
  1151. return (0);
  1152. }
  1153. sp->cinfo.c.image_width = segment_width;
  1154. sp->cinfo.c.image_height = segment_height;
  1155. downsampled_input = FALSE;
  1156. if (td->td_planarconfig == PLANARCONFIG_CONTIG) {
  1157. sp->cinfo.c.input_components = td->td_samplesperpixel;
  1158. if (sp->photometric == PHOTOMETRIC_YCBCR) {
  1159. if (sp->jpegcolormode == JPEGCOLORMODE_RGB) {
  1160. sp->cinfo.c.in_color_space = JCS_RGB;
  1161. } else {
  1162. sp->cinfo.c.in_color_space = JCS_YCbCr;
  1163. if (sp->h_sampling != 1 || sp->v_sampling != 1)
  1164. downsampled_input = TRUE;
  1165. }
  1166. if (!TIFFjpeg_set_colorspace(sp, JCS_YCbCr))
  1167. return (0);
  1168. /*
  1169.  * Set Y sampling factors;
  1170.  * we assume jpeg_set_colorspace() set the rest to 1
  1171.  */
  1172. sp->cinfo.c.comp_info[0].h_samp_factor = sp->h_sampling;
  1173. sp->cinfo.c.comp_info[0].v_samp_factor = sp->v_sampling;
  1174. } else {
  1175. sp->cinfo.c.in_color_space = JCS_UNKNOWN;
  1176. if (!TIFFjpeg_set_colorspace(sp, JCS_UNKNOWN))
  1177. return (0);
  1178. /* jpeg_set_colorspace set all sampling factors to 1 */
  1179. }
  1180. } else {
  1181. sp->cinfo.c.input_components = 1;
  1182. sp->cinfo.c.in_color_space = JCS_UNKNOWN;
  1183. if (!TIFFjpeg_set_colorspace(sp, JCS_UNKNOWN))
  1184. return (0);
  1185. sp->cinfo.c.comp_info[0].component_id = s;
  1186. /* jpeg_set_colorspace() set sampling factors to 1 */
  1187. if (sp->photometric == PHOTOMETRIC_YCBCR && s > 0) {
  1188. sp->cinfo.c.comp_info[0].quant_tbl_no = 1;
  1189. sp->cinfo.c.comp_info[0].dc_tbl_no = 1;
  1190. sp->cinfo.c.comp_info[0].ac_tbl_no = 1;
  1191. }
  1192. }
  1193. /* ensure libjpeg won't write any extraneous markers */
  1194. sp->cinfo.c.write_JFIF_header = FALSE;
  1195. sp->cinfo.c.write_Adobe_marker = FALSE;
  1196. /* set up table handling correctly */
  1197. if (! (sp->jpegtablesmode & JPEGTABLESMODE_QUANT)) {
  1198. if (!TIFFjpeg_set_quality(sp, sp->jpegquality, FALSE))
  1199. return (0);
  1200. unsuppress_quant_table(sp, 0);
  1201. unsuppress_quant_table(sp, 1);
  1202. }
  1203. if (sp->jpegtablesmode & JPEGTABLESMODE_HUFF)
  1204. sp->cinfo.c.optimize_coding = FALSE;
  1205. else
  1206. sp->cinfo.c.optimize_coding = TRUE;
  1207. if (downsampled_input) {
  1208. /* Need to use raw-data interface to libjpeg */
  1209. sp->cinfo.c.raw_data_in = TRUE;
  1210. tif->tif_encoderow = JPEGEncodeRaw;
  1211. tif->tif_encodestrip = JPEGEncodeRaw;
  1212. tif->tif_encodetile = JPEGEncodeRaw;
  1213. } else {
  1214. /* Use normal interface to libjpeg */
  1215. sp->cinfo.c.raw_data_in = FALSE;
  1216. tif->tif_encoderow = JPEGEncode;
  1217. tif->tif_encodestrip = JPEGEncode;
  1218. tif->tif_encodetile = JPEGEncode;
  1219. }
  1220. /* Start JPEG compressor */
  1221. if (!TIFFjpeg_start_compress(sp, FALSE))
  1222. return (0);
  1223. /* Allocate downsampled-data buffers if needed */
  1224. if (downsampled_input) {
  1225. if (!alloc_downsampled_buffers(tif, sp->cinfo.c.comp_info,
  1226.        sp->cinfo.c.num_components))
  1227. return (0);
  1228. }
  1229. sp->scancount = 0;
  1230. return (1);
  1231. }
  1232. /*
  1233.  * Encode a chunk of pixels.
  1234.  * "Standard" case: incoming data is not downsampled.
  1235.  */
  1236. static int
  1237. JPEGEncode(TIFF* tif, tidata_t buf, tsize_t cc, tsample_t s)
  1238. {
  1239. JPEGState *sp = JState(tif);
  1240. tsize_t nrows;
  1241. JSAMPROW bufptr[1];
  1242. (void) s;
  1243. assert(sp != NULL);
  1244. /* data is expected to be supplied in multiples of a scanline */
  1245. nrows = cc / sp->bytesperline;
  1246. if (cc % sp->bytesperline)
  1247. TIFFWarningExt(tif->tif_clientdata, tif->tif_name, "fractional scanline discarded");
  1248. while (nrows-- > 0) {
  1249. bufptr[0] = (JSAMPROW) buf;
  1250. if (TIFFjpeg_write_scanlines(sp, bufptr, 1) != 1)
  1251. return (0);
  1252. if (nrows > 0)
  1253. tif->tif_row++;
  1254. buf += sp->bytesperline;
  1255. }
  1256. return (1);
  1257. }
  1258. /*
  1259.  * Encode a chunk of pixels.
  1260.  * Incoming data is expected to be downsampled per sampling factors.
  1261.  */
  1262. static int
  1263. JPEGEncodeRaw(TIFF* tif, tidata_t buf, tsize_t cc, tsample_t s)
  1264. {
  1265. JPEGState *sp = JState(tif);
  1266. JSAMPLE* inptr;
  1267. JSAMPLE* outptr;
  1268. tsize_t nrows;
  1269. JDIMENSION clumps_per_line, nclump;
  1270. int clumpoffset, ci, xpos, ypos;
  1271. jpeg_component_info* compptr;
  1272. int samples_per_clump = sp->samplesperclump;
  1273. (void) s;
  1274. assert(sp != NULL);
  1275. /* data is expected to be supplied in multiples of a scanline */
  1276. nrows = cc / sp->bytesperline;
  1277. if (cc % sp->bytesperline)
  1278. TIFFWarningExt(tif->tif_clientdata, tif->tif_name, "fractional scanline discarded");
  1279. /* Cb,Cr both have sampling factors 1, so this is correct */
  1280. clumps_per_line = sp->cinfo.c.comp_info[1].downsampled_width;
  1281. while (nrows-- > 0) {
  1282. /*
  1283.  * Fastest way to separate the data is to make one pass
  1284.  * over the scanline for each row of each component.
  1285.  */
  1286. clumpoffset = 0; /* first sample in clump */
  1287. for (ci = 0, compptr = sp->cinfo.c.comp_info;
  1288.      ci < sp->cinfo.c.num_components;
  1289.      ci++, compptr++) {
  1290.     int hsamp = compptr->h_samp_factor;
  1291.     int vsamp = compptr->v_samp_factor;
  1292.     int padding = (int) (compptr->width_in_blocks * DCTSIZE -
  1293.  clumps_per_line * hsamp);
  1294.     for (ypos = 0; ypos < vsamp; ypos++) {
  1295. inptr = ((JSAMPLE*) buf) + clumpoffset;
  1296. outptr = sp->ds_buffer[ci][sp->scancount*vsamp + ypos];
  1297. if (hsamp == 1) {
  1298.     /* fast path for at least Cb and Cr */
  1299.     for (nclump = clumps_per_line; nclump-- > 0; ) {
  1300. *outptr++ = inptr[0];
  1301. inptr += samples_per_clump;
  1302.     }
  1303. } else {
  1304.     /* general case */
  1305.     for (nclump = clumps_per_line; nclump-- > 0; ) {
  1306. for (xpos = 0; xpos < hsamp; xpos++)
  1307.     *outptr++ = inptr[xpos];
  1308. inptr += samples_per_clump;
  1309.     }
  1310. }
  1311. /* pad each scanline as needed */
  1312. for (xpos = 0; xpos < padding; xpos++) {
  1313.     *outptr = outptr[-1];
  1314.     outptr++;
  1315. }
  1316. clumpoffset += hsamp;
  1317.     }
  1318. }
  1319. sp->scancount++;
  1320. if (sp->scancount >= DCTSIZE) {
  1321. int n = sp->cinfo.c.max_v_samp_factor * DCTSIZE;
  1322. if (TIFFjpeg_write_raw_data(sp, sp->ds_buffer, n) != n)
  1323. return (0);
  1324. sp->scancount = 0;
  1325. }
  1326. if (nrows > 0)
  1327. tif->tif_row++;
  1328. buf += sp->bytesperline;
  1329. }
  1330. return (1);
  1331. }
  1332. /*
  1333.  * Finish up at the end of a strip or tile.
  1334.  */
  1335. static int
  1336. JPEGPostEncode(TIFF* tif)
  1337. {
  1338. JPEGState *sp = JState(tif);
  1339. if (sp->scancount > 0) {
  1340. /*
  1341.  * Need to emit a partial bufferload of downsampled data.
  1342.  * Pad the data vertically.
  1343.  */
  1344. int ci, ypos, n;
  1345. jpeg_component_info* compptr;
  1346. for (ci = 0, compptr = sp->cinfo.c.comp_info;
  1347.      ci < sp->cinfo.c.num_components;
  1348.      ci++, compptr++) {
  1349. int vsamp = compptr->v_samp_factor;
  1350. tsize_t row_width = compptr->width_in_blocks * DCTSIZE
  1351. * sizeof(JSAMPLE);
  1352. for (ypos = sp->scancount * vsamp;
  1353.      ypos < DCTSIZE * vsamp; ypos++) {
  1354. _TIFFmemcpy((tdata_t)sp->ds_buffer[ci][ypos],
  1355.     (tdata_t)sp->ds_buffer[ci][ypos-1],
  1356.     row_width);
  1357. }
  1358. }
  1359. n = sp->cinfo.c.max_v_samp_factor * DCTSIZE;
  1360. if (TIFFjpeg_write_raw_data(sp, sp->ds_buffer, n) != n)
  1361. return (0);
  1362. }
  1363. return (TIFFjpeg_finish_compress(JState(tif)));
  1364. }
  1365. static void
  1366. JPEGCleanup(TIFF* tif)
  1367. {
  1368. JPEGState *sp = JState(tif);
  1369. assert(sp != 0);
  1370. tif->tif_tagmethods.vgetfield = sp->vgetparent;
  1371. tif->tif_tagmethods.vsetfield = sp->vsetparent;
  1372. if( sp->cinfo_initialized )
  1373.     TIFFjpeg_destroy(sp); /* release libjpeg resources */
  1374. if (sp->jpegtables) /* tag value */
  1375. _TIFFfree(sp->jpegtables);
  1376. _TIFFfree(tif->tif_data); /* release local state */
  1377. tif->tif_data = NULL;
  1378. _TIFFSetDefaultCompressionState(tif);
  1379. }
  1380. static int
  1381. JPEGVSetField(TIFF* tif, ttag_t tag, va_list ap)
  1382. {
  1383. JPEGState* sp = JState(tif);
  1384. TIFFDirectory* td = &tif->tif_dir;
  1385. uint32 v32;
  1386. assert(sp != NULL);
  1387. switch (tag) {
  1388. case TIFFTAG_JPEGTABLES:
  1389. v32 = va_arg(ap, uint32);
  1390. if (v32 == 0) {
  1391. /* XXX */
  1392. return (0);
  1393. }
  1394. _TIFFsetByteArray(&sp->jpegtables, va_arg(ap, void*),
  1395.     (long) v32);
  1396. sp->jpegtables_length = v32;
  1397. TIFFSetFieldBit(tif, FIELD_JPEGTABLES);
  1398. break;
  1399. case TIFFTAG_JPEGQUALITY:
  1400. sp->jpegquality = va_arg(ap, int);
  1401. return (1); /* pseudo tag */
  1402. case TIFFTAG_JPEGCOLORMODE:
  1403. sp->jpegcolormode = va_arg(ap, int);
  1404. /*
  1405.  * Mark whether returned data is up-sampled or not
  1406.  * so TIFFStripSize and TIFFTileSize return values
  1407.  * that reflect the true amount of data.
  1408.  */
  1409. tif->tif_flags &= ~TIFF_UPSAMPLED;
  1410. if (td->td_planarconfig == PLANARCONFIG_CONTIG) {
  1411.     if (td->td_photometric == PHOTOMETRIC_YCBCR &&
  1412.       sp->jpegcolormode == JPEGCOLORMODE_RGB) {
  1413. tif->tif_flags |= TIFF_UPSAMPLED;
  1414.     } else {
  1415. if (td->td_ycbcrsubsampling[0] != 1 ||
  1416.     td->td_ycbcrsubsampling[1] != 1)
  1417.     ; /* XXX what about up-sampling? */
  1418.     }
  1419. }
  1420. /*
  1421.  * Must recalculate cached tile size
  1422.  * in case sampling state changed.
  1423.  */
  1424. tif->tif_tilesize = isTiled(tif) ? TIFFTileSize(tif) : (tsize_t) -1;
  1425. return (1); /* pseudo tag */
  1426. case TIFFTAG_JPEGTABLESMODE:
  1427. sp->jpegtablesmode = va_arg(ap, int);
  1428. return (1); /* pseudo tag */
  1429. case TIFFTAG_YCBCRSUBSAMPLING:
  1430.                 /* mark the fact that we have a real ycbcrsubsampling! */
  1431. sp->ycbcrsampling_fetched = 1;
  1432. return (*sp->vsetparent)(tif, tag, ap);
  1433. case TIFFTAG_FAXRECVPARAMS:
  1434. sp->recvparams = va_arg(ap, uint32);
  1435. break;
  1436. case TIFFTAG_FAXSUBADDRESS:
  1437. _TIFFsetString(&sp->subaddress, va_arg(ap, char*));
  1438. break;
  1439. case TIFFTAG_FAXRECVTIME:
  1440. sp->recvtime = va_arg(ap, uint32);
  1441. break;
  1442. case TIFFTAG_FAXDCS:
  1443. _TIFFsetString(&sp->faxdcs, va_arg(ap, char*));
  1444. break;
  1445. default:
  1446. return (*sp->vsetparent)(tif, tag, ap);
  1447. }
  1448. TIFFSetFieldBit(tif, _TIFFFieldWithTag(tif, tag)->field_bit);
  1449. tif->tif_flags |= TIFF_DIRTYDIRECT;
  1450. return (1);
  1451. }
  1452. /*
  1453.  * Some JPEG-in-TIFF produces do not emit the YCBCRSUBSAMPLING values in
  1454.  * the TIFF tags, but still use non-default (2,2) values within the jpeg
  1455.  * data stream itself.  In order for TIFF applications to work properly
  1456.  * - for instance to get the strip buffer size right - it is imperative
  1457.  * that the subsampling be available before we start reading the image
  1458.  * data normally.  This function will attempt to load the first strip in
  1459.  * order to get the sampling values from the jpeg data stream.  Various
  1460.  * hacks are various places are done to ensure this function gets called
  1461.  * before the td_ycbcrsubsampling values are used from the directory structure,
  1462.  * including calling TIFFGetField() for the YCBCRSUBSAMPLING field from 
  1463.  * TIFFStripSize(), and the printing code in tif_print.c. 
  1464.  *
  1465.  * Note that JPEGPreDeocode() will produce a fairly loud warning when the
  1466.  * discovered sampling does not match the default sampling (2,2) or whatever
  1467.  * was actually in the tiff tags. 
  1468.  *
  1469.  * Problems:
  1470.  *  o This code will cause one whole strip/tile of compressed data to be
  1471.  *    loaded just to get the tags right, even if the imagery is never read.
  1472.  *    It would be more efficient to just load a bit of the header, and
  1473.  *    initialize things from that. 
  1474.  *
  1475.  * See the bug in bugzilla for details:
  1476.  *
  1477.  * http://bugzilla.remotesensing.org/show_bug.cgi?id=168
  1478.  *
  1479.  * Frank Warmerdam, July 2002
  1480.  */
  1481. static void 
  1482. JPEGFixupTestSubsampling( TIFF * tif )
  1483. {
  1484. #ifdef CHECK_JPEG_YCBCR_SUBSAMPLING
  1485.     JPEGState *sp = JState(tif);
  1486.     TIFFDirectory *td = &tif->tif_dir;
  1487.     JPEGInitializeLibJPEG( tif, 0, 0 );
  1488.     /*
  1489.      * Some JPEG-in-TIFF files don't provide the ycbcrsampling tags, 
  1490.      * and use a sampling schema other than the default 2,2.  To handle
  1491.      * this we actually have to scan the header of a strip or tile of
  1492.      * jpeg data to get the sampling.  
  1493.      */
  1494.     if( !sp->cinfo.comm.is_decompressor 
  1495.         || sp->ycbcrsampling_fetched  
  1496.         || td->td_photometric != PHOTOMETRIC_YCBCR )
  1497.         return;
  1498.     sp->ycbcrsampling_fetched = 1;
  1499.     if( TIFFIsTiled( tif ) )
  1500.     {
  1501.         if( !TIFFFillTile( tif, 0 ) )
  1502. return;
  1503.     }
  1504.     else
  1505. {
  1506.         if( !TIFFFillStrip( tif, 0 ) )
  1507.             return;
  1508.     }
  1509.     TIFFSetField( tif, TIFFTAG_YCBCRSUBSAMPLING, 
  1510.                   (uint16) sp->h_sampling, (uint16) sp->v_sampling );
  1511. #endif /* CHECK_JPEG_YCBCR_SUBSAMPLING */
  1512. }
  1513. static int
  1514. JPEGVGetField(TIFF* tif, ttag_t tag, va_list ap)
  1515. {
  1516. JPEGState* sp = JState(tif);
  1517. assert(sp != NULL);
  1518. switch (tag) {
  1519. case TIFFTAG_JPEGTABLES:
  1520. *va_arg(ap, uint32*) = sp->jpegtables_length;
  1521. *va_arg(ap, void**) = sp->jpegtables;
  1522. break;
  1523. case TIFFTAG_JPEGQUALITY:
  1524. *va_arg(ap, int*) = sp->jpegquality;
  1525. break;
  1526. case TIFFTAG_JPEGCOLORMODE:
  1527. *va_arg(ap, int*) = sp->jpegcolormode;
  1528. break;
  1529. case TIFFTAG_JPEGTABLESMODE:
  1530. *va_arg(ap, int*) = sp->jpegtablesmode;
  1531. break;
  1532. case TIFFTAG_YCBCRSUBSAMPLING:
  1533. JPEGFixupTestSubsampling( tif );
  1534. return (*sp->vgetparent)(tif, tag, ap);
  1535. break;
  1536. case TIFFTAG_FAXRECVPARAMS:
  1537. *va_arg(ap, uint32*) = sp->recvparams;
  1538. break;
  1539. case TIFFTAG_FAXSUBADDRESS:
  1540. *va_arg(ap, char**) = sp->subaddress;
  1541. break;
  1542. case TIFFTAG_FAXRECVTIME:
  1543. *va_arg(ap, uint32*) = sp->recvtime;
  1544. break;
  1545. case TIFFTAG_FAXDCS:
  1546. *va_arg(ap, char**) = sp->faxdcs;
  1547. break;
  1548. default:
  1549. return (*sp->vgetparent)(tif, tag, ap);
  1550. }
  1551. return (1);
  1552. }
  1553. static void
  1554. JPEGPrintDir(TIFF* tif, FILE* fd, long flags)
  1555. {
  1556. JPEGState* sp = JState(tif);
  1557. assert(sp != NULL);
  1558. (void) flags;
  1559. if (TIFFFieldSet(tif,FIELD_JPEGTABLES))
  1560. fprintf(fd, "  JPEG Tables: (%lu bytes)n",
  1561. (unsigned long) sp->jpegtables_length);
  1562.         if (TIFFFieldSet(tif,FIELD_RECVPARAMS))
  1563.                 fprintf(fd, "  Fax Receive Parameters: %08lxn",
  1564.                    (unsigned long) sp->recvparams);
  1565.         if (TIFFFieldSet(tif,FIELD_SUBADDRESS))
  1566.                 fprintf(fd, "  Fax SubAddress: %sn", sp->subaddress);
  1567.         if (TIFFFieldSet(tif,FIELD_RECVTIME))
  1568.                 fprintf(fd, "  Fax Receive Time: %lu secsn",
  1569.                     (unsigned long) sp->recvtime);
  1570.         if (TIFFFieldSet(tif,FIELD_FAXDCS))
  1571.                 fprintf(fd, "  Fax DCS: %sn", sp->faxdcs);
  1572. }
  1573. static uint32
  1574. JPEGDefaultStripSize(TIFF* tif, uint32 s)
  1575. {
  1576. JPEGState* sp = JState(tif);
  1577. TIFFDirectory *td = &tif->tif_dir;
  1578. s = (*sp->defsparent)(tif, s);
  1579. if (s < td->td_imagelength)
  1580. s = TIFFroundup(s, td->td_ycbcrsubsampling[1] * DCTSIZE);
  1581. return (s);
  1582. }
  1583. static void
  1584. JPEGDefaultTileSize(TIFF* tif, uint32* tw, uint32* th)
  1585. {
  1586. JPEGState* sp = JState(tif);
  1587. TIFFDirectory *td = &tif->tif_dir;
  1588. (*sp->deftparent)(tif, tw, th);
  1589. *tw = TIFFroundup(*tw, td->td_ycbcrsubsampling[0] * DCTSIZE);
  1590. *th = TIFFroundup(*th, td->td_ycbcrsubsampling[1] * DCTSIZE);
  1591. }
  1592. /*
  1593.  * The JPEG library initialized used to be done in TIFFInitJPEG(), but
  1594.  * now that we allow a TIFF file to be opened in update mode it is necessary
  1595.  * to have some way of deciding whether compression or decompression is
  1596.  * desired other than looking at tif->tif_mode.  We accomplish this by 
  1597.  * examining {TILE/STRIP}BYTECOUNTS to see if there is a non-zero entry.
  1598.  * If so, we assume decompression is desired. 
  1599.  *
  1600.  * This is tricky, because TIFFInitJPEG() is called while the directory is
  1601.  * being read, and generally speaking the BYTECOUNTS tag won't have been read
  1602.  * at that point.  So we try to defer jpeg library initialization till we
  1603.  * do have that tag ... basically any access that might require the compressor
  1604.  * or decompressor that occurs after the reading of the directory. 
  1605.  *
  1606.  * In an ideal world compressors or decompressors would be setup
  1607.  * at the point where a single tile or strip was accessed (for read or write)
  1608.  * so that stuff like update of missing tiles, or replacement of tiles could
  1609.  * be done. However, we aren't trying to crack that nut just yet ...
  1610.  *
  1611.  * NFW, Feb 3rd, 2003.
  1612.  */
  1613. static int JPEGInitializeLibJPEG( TIFF * tif, int force_encode, int force_decode )
  1614. {
  1615.     JPEGState* sp = JState(tif);
  1616.     uint32 *byte_counts = NULL;
  1617.     int     data_is_empty = TRUE;
  1618.     int     decompress;
  1619.     if( sp->cinfo_initialized )
  1620.         return 1;
  1621.     /*
  1622.      * Do we have tile data already?  Make sure we initialize the
  1623.      * the state in decompressor mode if we have tile data, even if we
  1624.      * are not in read-only file access mode. 
  1625.      */
  1626.     if( TIFFIsTiled( tif ) 
  1627.         && TIFFGetField( tif, TIFFTAG_TILEBYTECOUNTS, &byte_counts ) 
  1628.         && byte_counts != NULL )
  1629.     {
  1630.         data_is_empty = byte_counts[0] == 0;
  1631.     }
  1632.     if( !TIFFIsTiled( tif ) 
  1633.         && TIFFGetField( tif, TIFFTAG_STRIPBYTECOUNTS, &byte_counts) 
  1634.         && byte_counts != NULL )
  1635.     {
  1636.         data_is_empty = byte_counts[0] == 0;
  1637.     }
  1638.     if( force_decode )
  1639.         decompress = 1;
  1640.     else if( force_encode )
  1641.         decompress = 0;
  1642.     else if( tif->tif_mode == O_RDONLY )
  1643.         decompress = 1;
  1644.     else if( data_is_empty )
  1645.         decompress = 0;
  1646.     else
  1647.         decompress = 1;
  1648.     /*
  1649.      * Initialize libjpeg.
  1650.      */
  1651.     if ( decompress ) {
  1652.         if (!TIFFjpeg_create_decompress(sp))
  1653.             return (0);
  1654.     } else {
  1655.         if (!TIFFjpeg_create_compress(sp))
  1656.             return (0);
  1657.     }
  1658.     sp->cinfo_initialized = TRUE;
  1659.     return 1;
  1660. }
  1661. int
  1662. TIFFInitJPEG(TIFF* tif, int scheme)
  1663. {
  1664. JPEGState* sp;
  1665. assert(scheme == COMPRESSION_JPEG);
  1666. /*
  1667.  * Allocate state block so tag methods have storage to record values.
  1668.  */
  1669. tif->tif_data = (tidata_t) _TIFFmalloc(sizeof (JPEGState));
  1670. if (tif->tif_data == NULL) {
  1671. TIFFErrorExt(tif->tif_clientdata, "TIFFInitJPEG", "No space for JPEG state block");
  1672. return (0);
  1673. }
  1674.         _TIFFmemset( tif->tif_data, 0, sizeof(JPEGState));
  1675. sp = JState(tif);
  1676. sp->tif = tif; /* back link */
  1677. /*
  1678.  * Merge codec-specific tag information and override parent get/set
  1679.  * field methods.
  1680.  */
  1681. _TIFFMergeFieldInfo(tif, jpegFieldInfo, N(jpegFieldInfo));
  1682. sp->vgetparent = tif->tif_tagmethods.vgetfield;
  1683. tif->tif_tagmethods.vgetfield = JPEGVGetField; /* hook for codec tags */
  1684. sp->vsetparent = tif->tif_tagmethods.vsetfield;
  1685. tif->tif_tagmethods.vsetfield = JPEGVSetField; /* hook for codec tags */
  1686. tif->tif_tagmethods.printdir = JPEGPrintDir;   /* hook for codec tags */
  1687. /* Default values for codec-specific fields */
  1688. sp->jpegtables = NULL;
  1689. sp->jpegtables_length = 0;
  1690. sp->jpegquality = 75; /* Default IJG quality */
  1691. sp->jpegcolormode = JPEGCOLORMODE_RAW;
  1692. sp->jpegtablesmode = JPEGTABLESMODE_QUANT | JPEGTABLESMODE_HUFF;
  1693.         sp->recvparams = 0;
  1694.         sp->subaddress = NULL;
  1695.         sp->faxdcs = NULL;
  1696.         sp->ycbcrsampling_fetched = 0;
  1697. /*
  1698.  * Install codec methods.
  1699.  */
  1700. tif->tif_setupdecode = JPEGSetupDecode;
  1701. tif->tif_predecode = JPEGPreDecode;
  1702. tif->tif_decoderow = JPEGDecode;
  1703. tif->tif_decodestrip = JPEGDecode;
  1704. tif->tif_decodetile = JPEGDecode;
  1705. tif->tif_setupencode = JPEGSetupEncode;
  1706. tif->tif_preencode = JPEGPreEncode;
  1707. tif->tif_postencode = JPEGPostEncode;
  1708. tif->tif_encoderow = JPEGEncode;
  1709. tif->tif_encodestrip = JPEGEncode;
  1710. tif->tif_encodetile = JPEGEncode;
  1711. tif->tif_cleanup = JPEGCleanup;
  1712. sp->defsparent = tif->tif_defstripsize;
  1713. tif->tif_defstripsize = JPEGDefaultStripSize;
  1714. sp->deftparent = tif->tif_deftilesize;
  1715. tif->tif_deftilesize = JPEGDefaultTileSize;
  1716. tif->tif_flags |= TIFF_NOBITREV; /* no bit reversal, please */
  1717.         sp->cinfo_initialized = FALSE;
  1718. /*
  1719.         ** Create a JPEGTables field if no directory has yet been created. 
  1720.         ** We do this just to ensure that sufficient space is reserved for
  1721.         ** the JPEGTables field.  It will be properly created the right
  1722.         ** size later. 
  1723.         */
  1724.         if( tif->tif_diroff == 0 )
  1725.         {
  1726. #define SIZE_OF_JPEGTABLES 2000
  1727.             TIFFSetFieldBit(tif, FIELD_JPEGTABLES);
  1728.             sp->jpegtables_length = SIZE_OF_JPEGTABLES;
  1729.             sp->jpegtables = (void *) _TIFFmalloc(sp->jpegtables_length);
  1730.     _TIFFmemset(sp->jpegtables, 0, SIZE_OF_JPEGTABLES);
  1731. #undef SIZE_OF_JPEGTABLES
  1732.         }
  1733.         /*
  1734.          * Mark the TIFFTAG_YCBCRSAMPLES as present even if it is not
  1735.          * see: JPEGFixupTestSubsampling().
  1736.          */
  1737.         TIFFSetFieldBit( tif, FIELD_YCBCRSUBSAMPLING );
  1738. return 1;
  1739. }
  1740. #endif /* JPEG_SUPPORT */
  1741. /* vim: set ts=8 sts=8 sw=8 noet: */