vrshoot

annotate libs/libjpeg/jcapistd.c @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
rev   line source
nuclear@0 1 /*
nuclear@0 2 * jcapistd.c
nuclear@0 3 *
nuclear@0 4 * Copyright (C) 1994-1996, Thomas G. Lane.
nuclear@0 5 * This file is part of the Independent JPEG Group's software.
nuclear@0 6 * For conditions of distribution and use, see the accompanying README file.
nuclear@0 7 *
nuclear@0 8 * This file contains application interface code for the compression half
nuclear@0 9 * of the JPEG library. These are the "standard" API routines that are
nuclear@0 10 * used in the normal full-compression case. They are not used by a
nuclear@0 11 * transcoding-only application. Note that if an application links in
nuclear@0 12 * jpeg_start_compress, it will end up linking in the entire compressor.
nuclear@0 13 * We thus must separate this file from jcapimin.c to avoid linking the
nuclear@0 14 * whole compression library into a transcoder.
nuclear@0 15 */
nuclear@0 16
nuclear@0 17 #define JPEG_INTERNALS
nuclear@0 18 #include "jinclude.h"
nuclear@0 19 #include "jpeglib.h"
nuclear@0 20
nuclear@0 21
nuclear@0 22 /*
nuclear@0 23 * Compression initialization.
nuclear@0 24 * Before calling this, all parameters and a data destination must be set up.
nuclear@0 25 *
nuclear@0 26 * We require a write_all_tables parameter as a failsafe check when writing
nuclear@0 27 * multiple datastreams from the same compression object. Since prior runs
nuclear@0 28 * will have left all the tables marked sent_table=TRUE, a subsequent run
nuclear@0 29 * would emit an abbreviated stream (no tables) by default. This may be what
nuclear@0 30 * is wanted, but for safety's sake it should not be the default behavior:
nuclear@0 31 * programmers should have to make a deliberate choice to emit abbreviated
nuclear@0 32 * images. Therefore the documentation and examples should encourage people
nuclear@0 33 * to pass write_all_tables=TRUE; then it will take active thought to do the
nuclear@0 34 * wrong thing.
nuclear@0 35 */
nuclear@0 36
nuclear@0 37 GLOBAL(void)
nuclear@0 38 jpeg_start_compress (j_compress_ptr cinfo, boolean write_all_tables)
nuclear@0 39 {
nuclear@0 40 if (cinfo->global_state != CSTATE_START)
nuclear@0 41 ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
nuclear@0 42
nuclear@0 43 if (write_all_tables)
nuclear@0 44 jpeg_suppress_tables(cinfo, FALSE); /* mark all tables to be written */
nuclear@0 45
nuclear@0 46 /* (Re)initialize error mgr and destination modules */
nuclear@0 47 (*cinfo->err->reset_error_mgr) ((j_common_ptr) cinfo);
nuclear@0 48 (*cinfo->dest->init_destination) (cinfo);
nuclear@0 49 /* Perform master selection of active modules */
nuclear@0 50 jinit_compress_master(cinfo);
nuclear@0 51 /* Set up for the first pass */
nuclear@0 52 (*cinfo->master->prepare_for_pass) (cinfo);
nuclear@0 53 /* Ready for application to drive first pass through jpeg_write_scanlines
nuclear@0 54 * or jpeg_write_raw_data.
nuclear@0 55 */
nuclear@0 56 cinfo->next_scanline = 0;
nuclear@0 57 cinfo->global_state = (cinfo->raw_data_in ? CSTATE_RAW_OK : CSTATE_SCANNING);
nuclear@0 58 }
nuclear@0 59
nuclear@0 60
nuclear@0 61 /*
nuclear@0 62 * Write some scanlines of data to the JPEG compressor.
nuclear@0 63 *
nuclear@0 64 * The return value will be the number of lines actually written.
nuclear@0 65 * This should be less than the supplied num_lines only in case that
nuclear@0 66 * the data destination module has requested suspension of the compressor,
nuclear@0 67 * or if more than image_height scanlines are passed in.
nuclear@0 68 *
nuclear@0 69 * Note: we warn about excess calls to jpeg_write_scanlines() since
nuclear@0 70 * this likely signals an application programmer error. However,
nuclear@0 71 * excess scanlines passed in the last valid call are *silently* ignored,
nuclear@0 72 * so that the application need not adjust num_lines for end-of-image
nuclear@0 73 * when using a multiple-scanline buffer.
nuclear@0 74 */
nuclear@0 75
nuclear@0 76 GLOBAL(JDIMENSION)
nuclear@0 77 jpeg_write_scanlines (j_compress_ptr cinfo, JSAMPARRAY scanlines,
nuclear@0 78 JDIMENSION num_lines)
nuclear@0 79 {
nuclear@0 80 JDIMENSION row_ctr, rows_left;
nuclear@0 81
nuclear@0 82 if (cinfo->global_state != CSTATE_SCANNING)
nuclear@0 83 ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
nuclear@0 84 if (cinfo->next_scanline >= cinfo->image_height)
nuclear@0 85 WARNMS(cinfo, JWRN_TOO_MUCH_DATA);
nuclear@0 86
nuclear@0 87 /* Call progress monitor hook if present */
nuclear@0 88 if (cinfo->progress != NULL) {
nuclear@0 89 cinfo->progress->pass_counter = (long) cinfo->next_scanline;
nuclear@0 90 cinfo->progress->pass_limit = (long) cinfo->image_height;
nuclear@0 91 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
nuclear@0 92 }
nuclear@0 93
nuclear@0 94 /* Give master control module another chance if this is first call to
nuclear@0 95 * jpeg_write_scanlines. This lets output of the frame/scan headers be
nuclear@0 96 * delayed so that application can write COM, etc, markers between
nuclear@0 97 * jpeg_start_compress and jpeg_write_scanlines.
nuclear@0 98 */
nuclear@0 99 if (cinfo->master->call_pass_startup)
nuclear@0 100 (*cinfo->master->pass_startup) (cinfo);
nuclear@0 101
nuclear@0 102 /* Ignore any extra scanlines at bottom of image. */
nuclear@0 103 rows_left = cinfo->image_height - cinfo->next_scanline;
nuclear@0 104 if (num_lines > rows_left)
nuclear@0 105 num_lines = rows_left;
nuclear@0 106
nuclear@0 107 row_ctr = 0;
nuclear@0 108 (*cinfo->main->process_data) (cinfo, scanlines, &row_ctr, num_lines);
nuclear@0 109 cinfo->next_scanline += row_ctr;
nuclear@0 110 return row_ctr;
nuclear@0 111 }
nuclear@0 112
nuclear@0 113
nuclear@0 114 /*
nuclear@0 115 * Alternate entry point to write raw data.
nuclear@0 116 * Processes exactly one iMCU row per call, unless suspended.
nuclear@0 117 */
nuclear@0 118
nuclear@0 119 GLOBAL(JDIMENSION)
nuclear@0 120 jpeg_write_raw_data (j_compress_ptr cinfo, JSAMPIMAGE data,
nuclear@0 121 JDIMENSION num_lines)
nuclear@0 122 {
nuclear@0 123 JDIMENSION lines_per_iMCU_row;
nuclear@0 124
nuclear@0 125 if (cinfo->global_state != CSTATE_RAW_OK)
nuclear@0 126 ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
nuclear@0 127 if (cinfo->next_scanline >= cinfo->image_height) {
nuclear@0 128 WARNMS(cinfo, JWRN_TOO_MUCH_DATA);
nuclear@0 129 return 0;
nuclear@0 130 }
nuclear@0 131
nuclear@0 132 /* Call progress monitor hook if present */
nuclear@0 133 if (cinfo->progress != NULL) {
nuclear@0 134 cinfo->progress->pass_counter = (long) cinfo->next_scanline;
nuclear@0 135 cinfo->progress->pass_limit = (long) cinfo->image_height;
nuclear@0 136 (*cinfo->progress->progress_monitor) ((j_common_ptr) cinfo);
nuclear@0 137 }
nuclear@0 138
nuclear@0 139 /* Give master control module another chance if this is first call to
nuclear@0 140 * jpeg_write_raw_data. This lets output of the frame/scan headers be
nuclear@0 141 * delayed so that application can write COM, etc, markers between
nuclear@0 142 * jpeg_start_compress and jpeg_write_raw_data.
nuclear@0 143 */
nuclear@0 144 if (cinfo->master->call_pass_startup)
nuclear@0 145 (*cinfo->master->pass_startup) (cinfo);
nuclear@0 146
nuclear@0 147 /* Verify that at least one iMCU row has been passed. */
nuclear@0 148 lines_per_iMCU_row = cinfo->max_v_samp_factor * DCTSIZE;
nuclear@0 149 if (num_lines < lines_per_iMCU_row)
nuclear@0 150 ERREXIT(cinfo, JERR_BUFFER_SIZE);
nuclear@0 151
nuclear@0 152 /* Directly compress the row. */
nuclear@0 153 if (! (*cinfo->coef->compress_data) (cinfo, data)) {
nuclear@0 154 /* If compressor did not consume the whole row, suspend processing. */
nuclear@0 155 return 0;
nuclear@0 156 }
nuclear@0 157
nuclear@0 158 /* OK, we processed one iMCU row. */
nuclear@0 159 cinfo->next_scanline += lines_per_iMCU_row;
nuclear@0 160 return lines_per_iMCU_row;
nuclear@0 161 }