Skip to content

Latest commit

 

History

History
702 lines (621 loc) · 22.5 KB

IMG_jpg.c

File metadata and controls

702 lines (621 loc) · 22.5 KB
 
Aug 10, 2000
Aug 10, 2000
1
/*
Dec 31, 2011
Dec 31, 2011
2
SDL_image: An example image loading library for use with SDL
Jan 2, 2017
Jan 2, 2017
3
Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
Dec 31, 2011
Dec 31, 2011
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Aug 10, 2000
Aug 10, 2000
20
21
*/
Nov 10, 2009
Nov 10, 2009
22
23
#if !defined(__APPLE__) || defined(SDL_IMAGE_USE_COMMON_BACKEND)
Aug 10, 2000
Aug 10, 2000
24
25
26
/* This is a JPEG image file loading framework */
#include <stdio.h>
Nov 29, 2000
Nov 29, 2000
27
#include <string.h>
Dec 29, 2001
Dec 29, 2001
28
#include <setjmp.h>
Aug 10, 2000
Aug 10, 2000
29
30
31
32
33
34
35
#include "SDL_image.h"
#ifdef LOAD_JPG
#include <jpeglib.h>
Dec 31, 2011
Dec 31, 2011
36
#ifdef JPEG_TRUE /* MinGW version of jpeg-8.x renamed TRUE to JPEG_TRUE etc. */
May 22, 2013
May 22, 2013
37
38
39
typedef JPEG_boolean boolean;
#define TRUE JPEG_TRUE
#define FALSE JPEG_FALSE
Apr 7, 2011
Apr 7, 2011
40
41
#endif
Aug 10, 2000
Aug 10, 2000
42
43
44
/* Define this for fast loading and not as good image quality */
/*#define FAST_JPEG*/
Apr 20, 2006
Apr 20, 2006
45
46
47
/* Define this for quicker (but less perfect) JPEG identification */
#define FAST_IS_JPEG
May 12, 2006
May 12, 2006
48
static struct {
May 22, 2013
May 22, 2013
49
50
51
52
53
54
55
56
57
58
int loaded;
void *handle;
void (*jpeg_calc_output_dimensions) (j_decompress_ptr cinfo);
void (*jpeg_CreateDecompress) (j_decompress_ptr cinfo, int version, size_t structsize);
void (*jpeg_destroy_decompress) (j_decompress_ptr cinfo);
boolean (*jpeg_finish_decompress) (j_decompress_ptr cinfo);
int (*jpeg_read_header) (j_decompress_ptr cinfo, boolean require_image);
JDIMENSION (*jpeg_read_scanlines) (j_decompress_ptr cinfo, JSAMPARRAY scanlines, JDIMENSION max_lines);
boolean (*jpeg_resync_to_restart) (j_decompress_ptr cinfo, int desired);
boolean (*jpeg_start_decompress) (j_decompress_ptr cinfo);
Sep 12, 2017
Sep 12, 2017
59
60
61
62
63
64
65
void (*jpeg_CreateCompress) (j_compress_ptr cinfo, int version, size_t structsize);
void (*jpeg_start_compress) (j_compress_ptr cinfo, boolean write_all_tables);
void (*jpeg_set_quality) (j_compress_ptr cinfo, int quality, boolean force_baseline);
void (*jpeg_set_defaults) (j_compress_ptr cinfo);
JDIMENSION (*jpeg_write_scanlines) (j_compress_ptr cinfo, JSAMPARRAY scanlines, JDIMENSION num_lines);
void (*jpeg_finish_compress) (j_compress_ptr cinfo);
void (*jpeg_destroy_compress) (j_compress_ptr cinfo);
May 22, 2013
May 22, 2013
66
struct jpeg_error_mgr * (*jpeg_std_error) (struct jpeg_error_mgr * err);
May 12, 2006
May 12, 2006
67
68
69
} lib;
#ifdef LOAD_JPG_DYNAMIC
Sep 26, 2009
Sep 26, 2009
70
int IMG_InitJPG()
May 12, 2006
May 12, 2006
71
{
May 22, 2013
May 22, 2013
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
if ( lib.loaded == 0 ) {
lib.handle = SDL_LoadObject(LOAD_JPG_DYNAMIC);
if ( lib.handle == NULL ) {
return -1;
}
lib.jpeg_calc_output_dimensions =
(void (*) (j_decompress_ptr))
SDL_LoadFunction(lib.handle, "jpeg_calc_output_dimensions");
if ( lib.jpeg_calc_output_dimensions == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.jpeg_CreateDecompress =
(void (*) (j_decompress_ptr, int, size_t))
SDL_LoadFunction(lib.handle, "jpeg_CreateDecompress");
if ( lib.jpeg_CreateDecompress == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.jpeg_destroy_decompress =
(void (*) (j_decompress_ptr))
SDL_LoadFunction(lib.handle, "jpeg_destroy_decompress");
if ( lib.jpeg_destroy_decompress == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.jpeg_finish_decompress =
(boolean (*) (j_decompress_ptr))
SDL_LoadFunction(lib.handle, "jpeg_finish_decompress");
if ( lib.jpeg_finish_decompress == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.jpeg_read_header =
(int (*) (j_decompress_ptr, boolean))
SDL_LoadFunction(lib.handle, "jpeg_read_header");
if ( lib.jpeg_read_header == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.jpeg_read_scanlines =
(JDIMENSION (*) (j_decompress_ptr, JSAMPARRAY, JDIMENSION))
SDL_LoadFunction(lib.handle, "jpeg_read_scanlines");
if ( lib.jpeg_read_scanlines == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.jpeg_resync_to_restart =
(boolean (*) (j_decompress_ptr, int))
SDL_LoadFunction(lib.handle, "jpeg_resync_to_restart");
if ( lib.jpeg_resync_to_restart == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.jpeg_start_decompress =
(boolean (*) (j_decompress_ptr))
SDL_LoadFunction(lib.handle, "jpeg_start_decompress");
if ( lib.jpeg_start_decompress == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
Sep 12, 2017
Sep 12, 2017
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
lib.jpeg_CreateCompress =
(void (*) (j_compress_ptr, int, size_t))
SDL_LoadFunction(lib.handle, "jpeg_CreateCompress");
if ( lib.jpeg_CreateCompress == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.jpeg_start_compress =
(void (*) (j_compress_ptr cinfo, boolean write_all_tables))
SDL_LoadFunction(lib.handle, "jpeg_start_compress");
if ( lib.jpeg_start_compress == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.jpeg_set_quality =
(void(*) (j_compress_ptr cinfo, int quality, boolean force_baseline))
SDL_LoadFunction(lib.handle, "jpeg_set_quality");
if ( lib.jpeg_set_quality == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.jpeg_set_defaults =
(void(*) (j_compress_ptr cinfo))
SDL_LoadFunction(lib.handle, "jpeg_set_defaults");
if ( lib.jpeg_set_defaults == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.jpeg_write_scanlines =
(JDIMENSION (*) (j_compress_ptr cinfo, JSAMPARRAY scanlines, JDIMENSION num_lines))
SDL_LoadFunction(lib.handle, "jpeg_write_scanlines");
if ( lib.jpeg_write_scanlines == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.jpeg_finish_compress =
(void (*) (j_compress_ptr cinfo))
SDL_LoadFunction(lib.handle, "jpeg_finish_compress");
if ( lib.jpeg_finish_compress == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
lib.jpeg_destroy_compress =
(void (*) (j_compress_ptr cinfo))
SDL_LoadFunction(lib.handle, "jpeg_destroy_compress");
if ( lib.jpeg_destroy_compress == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
May 22, 2013
May 22, 2013
182
183
184
185
186
187
188
189
190
191
192
lib.jpeg_std_error =
(struct jpeg_error_mgr * (*) (struct jpeg_error_mgr *))
SDL_LoadFunction(lib.handle, "jpeg_std_error");
if ( lib.jpeg_std_error == NULL ) {
SDL_UnloadObject(lib.handle);
return -1;
}
}
++lib.loaded;
return 0;
May 12, 2006
May 12, 2006
193
}
Sep 26, 2009
Sep 26, 2009
194
void IMG_QuitJPG()
May 12, 2006
May 12, 2006
195
{
May 22, 2013
May 22, 2013
196
197
198
199
200
201
202
if ( lib.loaded == 0 ) {
return;
}
if ( lib.loaded == 1 ) {
SDL_UnloadObject(lib.handle);
}
--lib.loaded;
May 12, 2006
May 12, 2006
203
204
}
#else
Sep 26, 2009
Sep 26, 2009
205
int IMG_InitJPG()
May 12, 2006
May 12, 2006
206
{
May 22, 2013
May 22, 2013
207
208
209
210
211
212
213
214
215
if ( lib.loaded == 0 ) {
lib.jpeg_calc_output_dimensions = jpeg_calc_output_dimensions;
lib.jpeg_CreateDecompress = jpeg_CreateDecompress;
lib.jpeg_destroy_decompress = jpeg_destroy_decompress;
lib.jpeg_finish_decompress = jpeg_finish_decompress;
lib.jpeg_read_header = jpeg_read_header;
lib.jpeg_read_scanlines = jpeg_read_scanlines;
lib.jpeg_resync_to_restart = jpeg_resync_to_restart;
lib.jpeg_start_decompress = jpeg_start_decompress;
Sep 12, 2017
Sep 12, 2017
216
217
218
219
220
221
222
lib.jpeg_CreateCompress = jpeg_CreateCompress;
lib.jpeg_start_compress = jpeg_start_compress;
lib.jpeg_set_quality = jpeg_set_quality;
lib.jpeg_set_defaults = jpeg_set_defaults;
lib.jpeg_write_scanlines = jpeg_write_scanlines;
lib.jpeg_finish_compress = jpeg_finish_compress;
lib.jpeg_destroy_compress = jpeg_destroy_compress;
May 22, 2013
May 22, 2013
223
224
225
226
227
lib.jpeg_std_error = jpeg_std_error;
}
++lib.loaded;
return 0;
May 12, 2006
May 12, 2006
228
}
Sep 26, 2009
Sep 26, 2009
229
void IMG_QuitJPG()
May 12, 2006
May 12, 2006
230
{
May 22, 2013
May 22, 2013
231
232
233
234
235
236
if ( lib.loaded == 0 ) {
return;
}
if ( lib.loaded == 1 ) {
}
--lib.loaded;
May 12, 2006
May 12, 2006
237
238
239
}
#endif /* LOAD_JPG_DYNAMIC */
Aug 10, 2000
Aug 10, 2000
240
241
242
/* See if an image is contained in a data source */
int IMG_isJPG(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
Sint64 start;
int is_JPG;
int in_scan;
Uint8 magic[4];
/* This detection code is by Steaphan Greene <stea@cs.binghamton.edu> */
/* Blame me, not Sam, if this doesn't work right. */
/* And don't forget to report the problem to the the sdl list too! */
if ( !src )
return 0;
start = SDL_RWtell(src);
is_JPG = 0;
in_scan = 0;
if ( SDL_RWread(src, magic, 2, 1) ) {
if ( (magic[0] == 0xFF) && (magic[1] == 0xD8) ) {
is_JPG = 1;
while (is_JPG == 1) {
if(SDL_RWread(src, magic, 1, 2) != 2) {
is_JPG = 0;
} else if( (magic[0] != 0xFF) && (in_scan == 0) ) {
is_JPG = 0;
} else if( (magic[0] != 0xFF) || (magic[1] == 0xFF) ) {
/* Extra padding in JPEG (legal) */
/* or this is data and we are scanning */
SDL_RWseek(src, -1, RW_SEEK_CUR);
} else if(magic[1] == 0xD9) {
/* Got to end of good JPEG */
break;
} else if( (in_scan == 1) && (magic[1] == 0x00) ) {
/* This is an encoded 0xFF within the data */
} else if( (magic[1] >= 0xD0) && (magic[1] < 0xD9) ) {
/* These have nothing else */
} else if(SDL_RWread(src, magic+2, 1, 2) != 2) {
is_JPG = 0;
} else {
/* Yes, it's big-endian */
Sint64 innerStart;
Uint32 size;
Sint64 end;
innerStart = SDL_RWtell(src);
size = (magic[2] << 8) + magic[3];
end = SDL_RWseek(src, size-2, RW_SEEK_CUR);
if ( end != innerStart + size - 2 ) is_JPG = 0;
if ( magic[1] == 0xDA ) {
/* Now comes the actual JPEG meat */
#ifdef FAST_IS_JPEG
/* Ok, I'm convinced. It is a JPEG. */
break;
Apr 20, 2006
Apr 20, 2006
292
#else
May 22, 2013
May 22, 2013
293
294
/* I'm not convinced. Prove it! */
in_scan = 1;
Apr 20, 2006
Apr 20, 2006
295
#endif
May 22, 2013
May 22, 2013
296
297
298
299
300
301
302
}
}
}
}
}
SDL_RWseek(src, start, RW_SEEK_SET);
return(is_JPG);
Aug 10, 2000
Aug 10, 2000
303
304
}
May 22, 2013
May 22, 2013
305
#define INPUT_BUFFER_SIZE 4096
Aug 10, 2000
Aug 10, 2000
306
typedef struct {
May 22, 2013
May 22, 2013
307
struct jpeg_source_mgr pub;
Aug 10, 2000
Aug 10, 2000
308
May 22, 2013
May 22, 2013
309
310
SDL_RWops *ctx;
Uint8 buffer[INPUT_BUFFER_SIZE];
Aug 10, 2000
Aug 10, 2000
311
312
313
314
315
316
} my_source_mgr;
/*
* Initialize source --- called by jpeg_read_header
* before any data is actually read.
*/
Mar 18, 2001
Mar 18, 2001
317
static void init_source (j_decompress_ptr cinfo)
Aug 10, 2000
Aug 10, 2000
318
{
May 22, 2013
May 22, 2013
319
320
/* We don't actually need to do anything */
return;
Aug 10, 2000
Aug 10, 2000
321
322
323
324
325
}
/*
* Fill the input buffer --- called whenever buffer is emptied.
*/
Jan 2, 2012
Jan 2, 2012
326
static boolean fill_input_buffer (j_decompress_ptr cinfo)
Aug 10, 2000
Aug 10, 2000
327
{
May 22, 2013
May 22, 2013
328
329
330
331
332
333
334
335
336
337
338
339
340
341
my_source_mgr * src = (my_source_mgr *) cinfo->src;
int nbytes;
nbytes = SDL_RWread(src->ctx, src->buffer, 1, INPUT_BUFFER_SIZE);
if (nbytes <= 0) {
/* Insert a fake EOI marker */
src->buffer[0] = (Uint8) 0xFF;
src->buffer[1] = (Uint8) JPEG_EOI;
nbytes = 2;
}
src->pub.next_input_byte = src->buffer;
src->pub.bytes_in_buffer = nbytes;
return TRUE;
Aug 10, 2000
Aug 10, 2000
342
343
344
345
346
347
348
349
350
351
352
353
354
355
}
/*
* Skip data --- used to skip over a potentially large amount of
* uninteresting data (such as an APPn marker).
*
* Writers of suspendable-input applications must note that skip_input_data
* is not granted the right to give a suspension return. If the skip extends
* beyond the data currently in the buffer, the buffer can be marked empty so
* that the next read will cause a fill_input_buffer call that can suspend.
* Arranging for additional bytes to be discarded before reloading the input
* buffer is the application writer's problem.
*/
Mar 18, 2001
Mar 18, 2001
356
static void skip_input_data (j_decompress_ptr cinfo, long num_bytes)
Aug 10, 2000
Aug 10, 2000
357
{
May 22, 2013
May 22, 2013
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
my_source_mgr * src = (my_source_mgr *) cinfo->src;
/* Just a dumb implementation for now. Could use fseek() except
* it doesn't work on pipes. Not clear that being smart is worth
* any trouble anyway --- large skips are infrequent.
*/
if (num_bytes > 0) {
while (num_bytes > (long) src->pub.bytes_in_buffer) {
num_bytes -= (long) src->pub.bytes_in_buffer;
(void) src->pub.fill_input_buffer(cinfo);
/* note we assume that fill_input_buffer will never
* return FALSE, so suspension need not be handled.
*/
}
src->pub.next_input_byte += (size_t) num_bytes;
src->pub.bytes_in_buffer -= (size_t) num_bytes;
}
Aug 10, 2000
Aug 10, 2000
375
376
377
378
379
380
}
/*
* Terminate source --- called by jpeg_finish_decompress
* after all data has been read.
*/
Mar 18, 2001
Mar 18, 2001
381
static void term_source (j_decompress_ptr cinfo)
Aug 10, 2000
Aug 10, 2000
382
{
May 22, 2013
May 22, 2013
383
384
/* We don't actually need to do anything */
return;
Aug 10, 2000
Aug 10, 2000
385
386
387
388
389
390
391
}
/*
* Prepare for input from a stdio stream.
* The caller must have already opened the stream, and is responsible
* for closing it after finishing decompression.
*/
Mar 18, 2001
Mar 18, 2001
392
static void jpeg_SDL_RW_src (j_decompress_ptr cinfo, SDL_RWops *ctx)
Aug 10, 2000
Aug 10, 2000
393
394
395
396
397
398
399
400
401
402
{
my_source_mgr *src;
/* The source object and input buffer are made permanent so that a series
* of JPEG images can be read from the same file by calling jpeg_stdio_src
* only before the first one. (If we discarded the buffer at the end of
* one image, we'd likely lose the start of the next one.)
* This makes it unsafe to use this manager and a different source
* manager serially with the same JPEG object. Caveat programmer.
*/
May 22, 2013
May 22, 2013
403
if (cinfo->src == NULL) { /* first time for this JPEG object? */
Aug 10, 2000
Aug 10, 2000
404
405
cinfo->src = (struct jpeg_source_mgr *)
(*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
May 22, 2013
May 22, 2013
406
sizeof(my_source_mgr));
Aug 10, 2000
Aug 10, 2000
407
408
409
410
src = (my_source_mgr *) cinfo->src;
}
src = (my_source_mgr *) cinfo->src;
Mar 18, 2001
Mar 18, 2001
411
412
413
src->pub.init_source = init_source;
src->pub.fill_input_buffer = fill_input_buffer;
src->pub.skip_input_data = skip_input_data;
May 12, 2006
May 12, 2006
414
src->pub.resync_to_restart = lib.jpeg_resync_to_restart; /* use default method */
Mar 18, 2001
Mar 18, 2001
415
src->pub.term_source = term_source;
Aug 10, 2000
Aug 10, 2000
416
417
418
419
420
src->ctx = ctx;
src->pub.bytes_in_buffer = 0; /* forces fill_input_buffer on first read */
src->pub.next_input_byte = NULL; /* until buffer loaded */
}
Dec 29, 2001
Dec 29, 2001
421
struct my_error_mgr {
May 22, 2013
May 22, 2013
422
423
struct jpeg_error_mgr errmgr;
jmp_buf escape;
Dec 29, 2001
Dec 29, 2001
424
425
426
427
};
static void my_error_exit(j_common_ptr cinfo)
{
May 22, 2013
May 22, 2013
428
429
struct my_error_mgr *err = (struct my_error_mgr *)cinfo->err;
longjmp(err->escape, 1);
Dec 29, 2001
Dec 29, 2001
430
431
432
433
}
static void output_no_message(j_common_ptr cinfo)
{
May 22, 2013
May 22, 2013
434
/* do nothing */
Dec 29, 2001
Dec 29, 2001
435
436
}
Aug 10, 2000
Aug 10, 2000
437
438
439
/* Load a JPEG type image from an SDL datasource */
SDL_Surface *IMG_LoadJPG_RW(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
440
441
442
443
444
445
446
447
448
449
450
451
Sint64 start;
struct jpeg_decompress_struct cinfo;
JSAMPROW rowptr[1];
SDL_Surface *volatile surface = NULL;
struct my_error_mgr jerr;
if ( !src ) {
/* The error message has been set in SDL_RWFromFile */
return NULL;
}
start = SDL_RWtell(src);
Feb 15, 2016
Feb 15, 2016
452
if ( (IMG_Init(IMG_INIT_JPG) & IMG_INIT_JPG) == 0 ) {
May 22, 2013
May 22, 2013
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
return NULL;
}
/* Create a decompression structure and load the JPEG header */
cinfo.err = lib.jpeg_std_error(&jerr.errmgr);
jerr.errmgr.error_exit = my_error_exit;
jerr.errmgr.output_message = output_no_message;
if(setjmp(jerr.escape)) {
/* If we get here, libjpeg found an error */
lib.jpeg_destroy_decompress(&cinfo);
if ( surface != NULL ) {
SDL_FreeSurface(surface);
}
SDL_RWseek(src, start, RW_SEEK_SET);
IMG_SetError("JPEG loading error");
return NULL;
}
lib.jpeg_create_decompress(&cinfo);
jpeg_SDL_RW_src(&cinfo, src);
lib.jpeg_read_header(&cinfo, TRUE);
if(cinfo.num_components == 4) {
/* Set 32-bit Raw output */
cinfo.out_color_space = JCS_CMYK;
cinfo.quantize_colors = FALSE;
lib.jpeg_calc_output_dimensions(&cinfo);
/* Allocate an output surface to hold the image */
surface = SDL_CreateRGBSurface(SDL_SWSURFACE,
cinfo.output_width, cinfo.output_height, 32,
Apr 20, 2006
Apr 20, 2006
484
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
May 22, 2013
May 22, 2013
485
0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000);
Apr 20, 2006
Apr 20, 2006
486
#else
May 22, 2013
May 22, 2013
487
0x0000FF00, 0x00FF0000, 0xFF000000, 0x000000FF);
Apr 20, 2006
Apr 20, 2006
488
#endif
May 22, 2013
May 22, 2013
489
490
491
492
} else {
/* Set 24-bit RGB output */
cinfo.out_color_space = JCS_RGB;
cinfo.quantize_colors = FALSE;
Aug 10, 2000
Aug 10, 2000
493
#ifdef FAST_JPEG
May 22, 2013
May 22, 2013
494
495
496
497
cinfo.scale_num = 1;
cinfo.scale_denom = 1;
cinfo.dct_method = JDCT_FASTEST;
cinfo.do_fancy_upsampling = FALSE;
Aug 10, 2000
Aug 10, 2000
498
#endif
May 22, 2013
May 22, 2013
499
lib.jpeg_calc_output_dimensions(&cinfo);
Aug 10, 2000
Aug 10, 2000
500
May 22, 2013
May 22, 2013
501
502
503
/* Allocate an output surface to hold the image */
surface = SDL_CreateRGBSurface(SDL_SWSURFACE,
cinfo.output_width, cinfo.output_height, 24,
Aug 10, 2000
Aug 10, 2000
504
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
May 22, 2013
May 22, 2013
505
0x0000FF, 0x00FF00, 0xFF0000,
Aug 10, 2000
Aug 10, 2000
506
#else
May 22, 2013
May 22, 2013
507
0xFF0000, 0x00FF00, 0x0000FF,
Aug 10, 2000
Aug 10, 2000
508
#endif
May 22, 2013
May 22, 2013
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
0);
}
if ( surface == NULL ) {
lib.jpeg_destroy_decompress(&cinfo);
SDL_RWseek(src, start, RW_SEEK_SET);
IMG_SetError("Out of memory");
return NULL;
}
/* Decompress the image */
lib.jpeg_start_decompress(&cinfo);
while ( cinfo.output_scanline < cinfo.output_height ) {
rowptr[0] = (JSAMPROW)(Uint8 *)surface->pixels +
cinfo.output_scanline * surface->pitch;
lib.jpeg_read_scanlines(&cinfo, rowptr, (JDIMENSION) 1);
}
lib.jpeg_finish_decompress(&cinfo);
lib.jpeg_destroy_decompress(&cinfo);
return(surface);
Aug 10, 2000
Aug 10, 2000
530
531
}
Sep 12, 2017
Sep 12, 2017
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
int IMG_SaveJPG(SDL_Surface *surface, const char *file, int quality)
{
SDL_RWops *dst = SDL_RWFromFile(file, "wb");
if (dst) {
return IMG_SaveJPG_RW(surface, dst, 1, quality);
} else {
return -1;
}
}
#define OUTPUT_BUFFER_SIZE 4096
typedef struct {
struct jpeg_destination_mgr pub;
SDL_RWops *ctx;
Uint8 buffer[OUTPUT_BUFFER_SIZE];
} my_destination_mgr;
static void init_destination(j_compress_ptr cinfo)
{
/* We don't actually need to do anything */
return;
}
static boolean empty_output_buffer(j_compress_ptr cinfo)
{
my_destination_mgr * dest = (my_destination_mgr *)cinfo->dest;
/* In typical applications, it should write out the *entire* buffer */
SDL_RWwrite(dest->ctx, dest->buffer, 1, OUTPUT_BUFFER_SIZE);
dest->pub.next_output_byte = dest->buffer;
dest->pub.free_in_buffer = OUTPUT_BUFFER_SIZE;
return SDL_TRUE;
}
static void term_destination(j_compress_ptr cinfo)
{
my_destination_mgr * dest = (my_destination_mgr *)cinfo->dest;
/* In most applications, this must flush any data remaining in the buffer */
SDL_RWwrite(dest->ctx, dest->buffer, 1, OUTPUT_BUFFER_SIZE - dest->pub.free_in_buffer);
}
static void jpeg_SDL_RW_dest(j_compress_ptr cinfo, SDL_RWops *ctx)
{
my_destination_mgr *dest;
if (cinfo->dest == NULL) {
cinfo->dest = (struct jpeg_destination_mgr *)
(*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_PERMANENT,
sizeof(my_destination_mgr));
dest = (my_destination_mgr *)cinfo->dest;
}
dest = (my_destination_mgr *)cinfo->dest;
dest->pub.init_destination = init_destination;
dest->pub.empty_output_buffer = empty_output_buffer;
dest->pub.term_destination = term_destination;
dest->ctx = ctx;
dest->pub.next_output_byte = dest->buffer;
dest->pub.free_in_buffer = OUTPUT_BUFFER_SIZE;
}
int IMG_SaveJPG_RW(SDL_Surface *surface, SDL_RWops *dst, int freedst, int quality)
{
struct jpeg_compress_struct cinfo;
struct my_error_mgr jerr;
JSAMPROW row_pointer[1];
SDL_Surface* jpeg_surface = surface;
int result = -1;
if (!dst) {
SDL_SetError("Passed NULL dst");
goto done;
}
if (!IMG_Init(IMG_INIT_JPG)) {
goto done;
}
/* Convert surface to format we can save */
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
static const Uint32 jpg_format = SDL_PIXELFORMAT_RGB24;
#else
static const Uint32 jpg_format = SDL_PIXELFORMAT_BGR24;
#endif
if (surface->format->format != jpg_format) {
jpeg_surface = SDL_ConvertSurfaceFormat(surface, jpg_format, 0);
if (!jpeg_surface) {
goto done;
}
}
/* Create a decompression structure and load the JPEG header */
cinfo.err = lib.jpeg_std_error(&jerr.errmgr);
jerr.errmgr.error_exit = my_error_exit;
jerr.errmgr.output_message = output_no_message;
lib.jpeg_create_compress(&cinfo);
jpeg_SDL_RW_dest(&cinfo, dst);
cinfo.image_width = surface->w;
cinfo.image_height = surface->h;
cinfo.in_color_space = JCS_RGB;
cinfo.input_components = 3;
lib.jpeg_set_defaults(&cinfo);
lib.jpeg_set_quality(&cinfo, quality, SDL_TRUE);
lib.jpeg_start_compress(&cinfo, SDL_TRUE);
while (cinfo.next_scanline < cinfo.image_height) {
int offset = cinfo.next_scanline * surface->pitch;
row_pointer[0] = ((Uint8*)jpeg_surface->pixels) + offset;
lib.jpeg_write_scanlines(&cinfo, row_pointer, 1);
}
lib.jpeg_finish_compress(&cinfo);
lib.jpeg_destroy_compress(&cinfo);
if (jpeg_surface != surface) {
SDL_FreeSurface(jpeg_surface);
}
result = 0;
done:
if (freedst) {
SDL_RWclose(dst);
}
return result;
}
Aug 10, 2000
Aug 10, 2000
666
667
#else
Sep 26, 2009
Sep 26, 2009
668
669
int IMG_InitJPG()
{
May 22, 2013
May 22, 2013
670
671
IMG_SetError("JPEG images are not supported");
return(-1);
Sep 26, 2009
Sep 26, 2009
672
673
674
675
676
677
}
void IMG_QuitJPG()
{
}
Aug 10, 2000
Aug 10, 2000
678
679
680
/* See if an image is contained in a data source */
int IMG_isJPG(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
681
return(0);
Aug 10, 2000
Aug 10, 2000
682
683
684
685
686
}
/* Load a JPEG type image from an SDL datasource */
SDL_Surface *IMG_LoadJPG_RW(SDL_RWops *src)
{
May 22, 2013
May 22, 2013
687
return(NULL);
Aug 10, 2000
Aug 10, 2000
688
689
}
Sep 12, 2017
Sep 12, 2017
690
691
692
693
694
695
696
697
698
699
int IMG_SaveJPG(SDL_Surface *surface, const char *file, int quality)
{
return IMG_SetError("JPEG images are not supported");
}
int IMG_SaveJPG_RW(SDL_Surface *surface, SDL_RWops *dst, int freedst, int quality)
{
return IMG_SetError("JPEG images are not supported");
}
Aug 10, 2000
Aug 10, 2000
700
#endif /* LOAD_JPG */
Nov 10, 2009
Nov 10, 2009
701
702
#endif /* !defined(__APPLE__) || defined(SDL_IMAGE_USE_COMMON_BACKEND) */