1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/* Copyright (C) 2001-2021 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 1305 Grant Avenue - Suite 200, Novato,
CA 94945, U.S.A., +1(415)492-9861, for further information.
*/
/* Interface routines for IJG encoding code. */
#include "stdio_.h"
#include "string_.h"
#include "jpeglib_.h"
#include "jerror_.h"
#include "gx.h"
#include "strimpl.h"
#include "sdct.h"
#include "sjpeg.h"
/*
* Interface routines. This layer of routines exists solely to limit
* side-effects from using setjmp.
*/
int
gs_jpeg_create_compress(stream_DCT_state * st)
{ /* Initialize error handling */
gs_jpeg_error_setup(st);
/* Establish the setjmp return context for gs_jpeg_error_exit to use. */
if (setjmp(find_jmp_buf(st->data.common->exit_jmpbuf)))
return_error(gs_jpeg_log_error(st));
jpeg_stream_data_common_init(st->data.compress);
if (gs_jpeg_mem_init (st->memory, (j_common_ptr)&st->data.compress->cinfo) < 0)
return_error(gs_error_VMerror);
jpeg_create_compress(&st->data.compress->cinfo);
return 0;
}
int
gs_jpeg_set_defaults(stream_DCT_state * st)
{
if (setjmp(find_jmp_buf(st->data.common->exit_jmpbuf)))
return_error(gs_jpeg_log_error(st));
jpeg_set_defaults(&st->data.compress->cinfo);
return 0;
}
int
gs_jpeg_set_colorspace(stream_DCT_state * st,
J_COLOR_SPACE colorspace)
{
if (setjmp(find_jmp_buf(st->data.common->exit_jmpbuf)))
return_error(gs_jpeg_log_error(st));
jpeg_set_colorspace(&st->data.compress->cinfo, colorspace);
return 0;
}
int
gs_jpeg_set_linear_quality(stream_DCT_state * st,
int scale_factor, boolean force_baseline)
{
if (setjmp(find_jmp_buf(st->data.common->exit_jmpbuf)))
return_error(gs_jpeg_log_error(st));
jpeg_set_linear_quality(&st->data.compress->cinfo,
scale_factor, force_baseline);
return 0;
}
int
gs_jpeg_set_quality(stream_DCT_state * st,
int quality, boolean force_baseline)
{
if (setjmp(find_jmp_buf(st->data.common->exit_jmpbuf)))
return_error(gs_jpeg_log_error(st));
jpeg_set_quality(&st->data.compress->cinfo,
quality, force_baseline);
return 0;
}
int
gs_jpeg_start_compress(stream_DCT_state * st,
boolean write_all_tables)
{
if (setjmp(find_jmp_buf(st->data.common->exit_jmpbuf)))
return_error(gs_jpeg_log_error(st));
jpeg_start_compress(&st->data.compress->cinfo, write_all_tables);
return 0;
}
int
gs_jpeg_write_scanlines(stream_DCT_state * st,
JSAMPARRAY scanlines,
int num_lines)
{
if (setjmp(find_jmp_buf(st->data.common->exit_jmpbuf)))
return_error(gs_jpeg_log_error(st));
return (int)jpeg_write_scanlines(&st->data.compress->cinfo,
scanlines, (JDIMENSION) num_lines);
}
int
gs_jpeg_finish_compress(stream_DCT_state * st)
{
if (setjmp(find_jmp_buf(st->data.common->exit_jmpbuf)))
return_error(gs_jpeg_log_error(st));
jpeg_finish_compress(&st->data.compress->cinfo);
return 0;
}
|