eqemu

view libs/libimago/src/file_jpeg.c @ 10:819c7ebb1bec

added libimago to avoid the external dependency
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 18 Jul 2014 05:07:40 +0300
parents
children
line source
1 /*
2 libimago - a multi-format image file input/output library.
3 Copyright (C) 2010 John Tsiombikas <nuclear@member.fsf.org>
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published
7 by the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
19 /* -- JPEG module -- */
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
25 #ifdef WIN32
26 #include <windows.h>
27 #define HAVE_BOOLEAN
28 #endif
30 #include <jpeglib.h>
31 #include "imago2.h"
32 #include "ftype_module.h"
34 #define INPUT_BUF_SIZE 512
35 #define OUTPUT_BUF_SIZE 512
37 /* data source manager: adapted from jdatasrc.c */
38 struct src_mgr {
39 struct jpeg_source_mgr pub;
41 struct img_io *io;
42 unsigned char buffer[INPUT_BUF_SIZE];
43 int start_of_file;
44 };
46 /* data destination manager: adapted from jdatadst.c */
47 struct dst_mgr {
48 struct jpeg_destination_mgr pub;
50 struct img_io *io;
51 unsigned char buffer[OUTPUT_BUF_SIZE];
52 };
54 static int check(struct img_io *io);
55 static int read(struct img_pixmap *img, struct img_io *io);
56 static int write(struct img_pixmap *img, struct img_io *io);
58 /* read source functions */
59 static void init_source(j_decompress_ptr jd);
60 static boolean fill_input_buffer(j_decompress_ptr jd);
61 static void skip_input_data(j_decompress_ptr jd, long num_bytes);
62 static void term_source(j_decompress_ptr jd);
64 /* write destination functions */
65 static void init_destination(j_compress_ptr jc);
66 static boolean empty_output_buffer(j_compress_ptr jc);
67 static void term_destination(j_compress_ptr jc);
69 int img_register_jpeg(void)
70 {
71 static struct ftype_module mod = {".jpg", check, read, write};
72 return img_register_module(&mod);
73 }
76 static int check(struct img_io *io)
77 {
78 unsigned char sig[10];
80 long pos = io->seek(0, SEEK_CUR, io->uptr);
82 if(io->read(sig, 10, io->uptr) < 10) {
83 io->seek(pos, SEEK_SET, io->uptr);
84 return -1;
85 }
87 if(memcmp(sig, "\xff\xd8\xff\xe0", 4) != 0 && memcmp(sig, "\xff\xd8\xff\xe1", 4) != 0
88 && memcmp(sig + 6, "JFIF", 4) != 0) {
89 io->seek(pos, SEEK_SET, io->uptr);
90 return -1;
91 }
92 io->seek(pos, SEEK_SET, io->uptr);
93 return 0;
94 }
96 static int read(struct img_pixmap *img, struct img_io *io)
97 {
98 int i, nlines = 0;
99 struct jpeg_decompress_struct cinfo;
100 struct jpeg_error_mgr jerr;
101 struct src_mgr src;
102 unsigned char **scanlines;
104 io->seek(0, SEEK_CUR, io->uptr);
106 cinfo.err = jpeg_std_error(&jerr); /* XXX change... */
107 jpeg_create_decompress(&cinfo);
109 src.pub.init_source = init_source;
110 src.pub.fill_input_buffer = fill_input_buffer;
111 src.pub.skip_input_data = skip_input_data;
112 src.pub.resync_to_restart = jpeg_resync_to_restart;
113 src.pub.term_source = term_source;
114 src.pub.next_input_byte = 0;
115 src.pub.bytes_in_buffer = 0;
116 src.io = io;
117 cinfo.src = (struct jpeg_source_mgr*)&src;
119 jpeg_read_header(&cinfo, 1);
120 cinfo.out_color_space = JCS_RGB;
122 if(img_set_pixels(img, cinfo.image_width, cinfo.image_height, IMG_FMT_RGB24, 0) == -1) {
123 jpeg_destroy_decompress(&cinfo);
124 return -1;
125 }
127 if(!(scanlines = malloc(img->height * sizeof *scanlines))) {
128 jpeg_destroy_decompress(&cinfo);
129 return -1;
130 }
131 scanlines[0] = img->pixels;
132 for(i=1; i<img->height; i++) {
133 scanlines[i] = scanlines[i - 1] + img->width * img->pixelsz;
134 }
136 jpeg_start_decompress(&cinfo);
137 while(nlines < img->height) {
138 int res = jpeg_read_scanlines(&cinfo, scanlines + nlines, img->height - nlines);
139 nlines += res;
140 }
141 jpeg_finish_decompress(&cinfo);
142 jpeg_destroy_decompress(&cinfo);
144 free(scanlines);
145 return 0;
146 }
148 static int write(struct img_pixmap *img, struct img_io *io)
149 {
150 int i, nlines = 0;
151 struct jpeg_compress_struct cinfo;
152 struct jpeg_error_mgr jerr;
153 struct dst_mgr dest;
154 struct img_pixmap tmpimg;
155 unsigned char **scanlines;
157 img_init(&tmpimg);
159 if(img->fmt != IMG_FMT_RGB24) {
160 if(img_copy(&tmpimg, img) == -1) {
161 return -1;
162 }
163 if(img_convert(&tmpimg, IMG_FMT_RGB24) == -1) {
164 img_destroy(&tmpimg);
165 return -1;
166 }
167 img = &tmpimg;
168 }
170 if(!(scanlines = malloc(img->height * sizeof *scanlines))) {
171 img_destroy(&tmpimg);
172 return -1;
173 }
174 scanlines[0] = img->pixels;
175 for(i=1; i<img->height; i++) {
176 scanlines[i] = scanlines[i - 1] + img->width * img->pixelsz;
177 }
179 cinfo.err = jpeg_std_error(&jerr); /* XXX */
180 jpeg_create_compress(&cinfo);
182 dest.pub.init_destination = init_destination;
183 dest.pub.empty_output_buffer = empty_output_buffer;
184 dest.pub.term_destination = term_destination;
185 dest.io = io;
186 cinfo.dest = (struct jpeg_destination_mgr*)&dest;
188 cinfo.image_width = img->width;
189 cinfo.image_height = img->height;
190 cinfo.input_components = 3;
191 cinfo.in_color_space = JCS_RGB;
193 jpeg_set_defaults(&cinfo);
195 jpeg_start_compress(&cinfo, 1);
196 while(nlines < img->height) {
197 int res = jpeg_write_scanlines(&cinfo, scanlines + nlines, img->height - nlines);
198 nlines += res;
199 }
200 jpeg_finish_compress(&cinfo);
201 jpeg_destroy_compress(&cinfo);
203 free(scanlines);
204 img_destroy(&tmpimg);
205 return 0;
206 }
208 /* -- read source functions --
209 * the following functions are adapted from jdatasrc.c in jpeglib
210 */
211 static void init_source(j_decompress_ptr jd)
212 {
213 struct src_mgr *src = (struct src_mgr*)jd->src;
214 src->start_of_file = 1;
215 }
217 static boolean fill_input_buffer(j_decompress_ptr jd)
218 {
219 struct src_mgr *src = (struct src_mgr*)jd->src;
220 size_t nbytes;
222 nbytes = src->io->read(src->buffer, INPUT_BUF_SIZE, src->io->uptr);
224 if(nbytes <= 0) {
225 if(src->start_of_file) {
226 return 0;
227 }
228 /* insert a fake EOI marker */
229 src->buffer[0] = 0xff;
230 src->buffer[1] = JPEG_EOI;
231 nbytes = 2;
232 }
234 src->pub.next_input_byte = src->buffer;
235 src->pub.bytes_in_buffer = nbytes;
236 src->start_of_file = 0;
237 return 1;
238 }
240 static void skip_input_data(j_decompress_ptr jd, long num_bytes)
241 {
242 struct src_mgr *src = (struct src_mgr*)jd->src;
244 if(num_bytes > 0) {
245 while(num_bytes > (long)src->pub.bytes_in_buffer) {
246 num_bytes -= (long)src->pub.bytes_in_buffer;
247 fill_input_buffer(jd);
248 }
249 src->pub.next_input_byte += (size_t)num_bytes;
250 src->pub.bytes_in_buffer -= (size_t)num_bytes;
251 }
252 }
254 static void term_source(j_decompress_ptr jd)
255 {
256 /* nothing to see here, move along */
257 }
260 /* -- write destination functions --
261 * the following functions are adapted from jdatadst.c in jpeglib
262 */
263 static void init_destination(j_compress_ptr jc)
264 {
265 struct dst_mgr *dest = (struct dst_mgr*)jc->dest;
267 dest->pub.next_output_byte = dest->buffer;
268 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
269 }
271 static boolean empty_output_buffer(j_compress_ptr jc)
272 {
273 struct dst_mgr *dest = (struct dst_mgr*)jc->dest;
275 if(dest->io->write(dest->buffer, OUTPUT_BUF_SIZE, dest->io->uptr) != OUTPUT_BUF_SIZE) {
276 return 0;
277 }
279 dest->pub.next_output_byte = dest->buffer;
280 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE;
281 return 1;
282 }
284 static void term_destination(j_compress_ptr jc)
285 {
286 struct dst_mgr *dest = (struct dst_mgr*)jc->dest;
287 size_t datacount = OUTPUT_BUF_SIZE - dest->pub.free_in_buffer;
289 /* write any remaining data in the buffer */
290 if(datacount > 0) {
291 dest->io->write(dest->buffer, datacount, dest->io->uptr);
292 }
293 /* XXX flush? ... */
294 }