![]() |
Shadowrun: Awakened 29 September 2011 - Build 871
|
00001 /* 00002 Copyright 2005-2010 Intel Corporation. All Rights Reserved. 00003 00004 This file is part of Threading Building Blocks. 00005 00006 Threading Building Blocks is free software; you can redistribute it 00007 and/or modify it under the terms of the GNU General Public License 00008 version 2 as published by the Free Software Foundation. 00009 00010 Threading Building Blocks is distributed in the hope that it will be 00011 useful, but WITHOUT ANY WARRANTY; without even the implied warranty 00012 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with Threading Building Blocks; if not, write to the Free Software 00017 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00018 00019 As a special exception, you may use this file as part of a free software 00020 library without restriction. Specifically, if other files instantiate 00021 templates or use macros or inline functions from this file, or you compile 00022 this file and link it with other files to produce an executable, this 00023 file does not by itself cause the resulting executable to be covered by 00024 the GNU General Public License. This exception does not however 00025 invalidate any other reasons why the executable file might be covered by 00026 the GNU General Public License. 00027 */ 00028 00029 /* 00030 The original source for this example is 00031 Copyright (c) 1994-2008 John E. Stone 00032 All rights reserved. 00033 00034 Redistribution and use in source and binary forms, with or without 00035 modification, are permitted provided that the following conditions 00036 are met: 00037 1. Redistributions of source code must retain the above copyright 00038 notice, this list of conditions and the following disclaimer. 00039 2. Redistributions in binary form must reproduce the above copyright 00040 notice, this list of conditions and the following disclaimer in the 00041 documentation and/or other materials provided with the distribution. 00042 3. The name of the author may not be used to endorse or promote products 00043 derived from this software without specific prior written permission. 00044 00045 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS 00046 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 00047 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00048 ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 00049 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00050 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 00051 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00052 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00053 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00054 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00055 SUCH DAMAGE. 00056 */ 00057 00058 /* 00059 * jpeg.c - This file deals with JPEG format image files (reading/writing) 00060 * 00061 * $Id: jpeg.cpp,v 1.2 2007-02-22 17:54:15 dpoulsen Exp $ 00062 */ 00063 00064 /* 00065 * This code requires support from the Independent JPEG Group's libjpeg. 00066 * For our puposes, we're interested only in the 3 byte per pixel 24 bit 00067 * RGB output. Probably won't implement any decent checking at this point. 00068 */ 00069 00070 #include <stdio.h> 00071 #include "machine.h" 00072 #include "types.h" 00073 #include "util.h" 00074 #include "imageio.h" /* error codes etc */ 00075 #include "jpeg.h" /* the protos for this file */ 00076 00077 #if !defined(USEJPEG) 00078 00079 int readjpeg(char * name, int * xres, int * yres, unsigned char **imgdata) { 00080 return IMAGEUNSUP; 00081 } 00082 00083 #else 00084 00085 #include "jpeglib.h" /* the IJG jpeg library headers */ 00086 00087 int readjpeg(char * name, int * xres, int * yres, unsigned char **imgdata) { 00088 FILE * ifp; 00089 struct jpeg_decompress_struct cinfo; /* JPEG decompression struct */ 00090 struct jpeg_error_mgr jerr; /* JPEG Error handler */ 00091 JSAMPROW row_pointer[1]; /* output row buffer */ 00092 int row_stride; /* physical row width in output buf */ 00093 00094 /* open input file before doing any JPEG decompression setup */ 00095 if ((ifp = fopen(name, "rb")) == NULL) 00096 return IMAGEBADFILE; /* Could not open image, return error */ 00097 00098 /* 00099 * Note: The Independent JPEG Group's library does not have a way 00100 * of returning errors without the use of setjmp/longjmp. 00101 * This is a problem in multi-threaded environment, since setjmp 00102 * and longjmp are declared thread-unsafe by many vendors currently. 00103 * For now, JPEG decompression errors will result in the "default" 00104 * error handling provided by the JPEG library, which is an error 00105 * message and a fatal call to exit(). I'll have to work around this 00106 * or find a reasonably thread-safe way of doing setjmp/longjmp.. 00107 */ 00108 00109 cinfo.err = jpeg_std_error(&jerr); /* Set JPEG error handler to default */ 00110 00111 jpeg_create_decompress(&cinfo); /* Create decompression context */ 00112 jpeg_stdio_src(&cinfo, ifp); /* Set input mechanism to stdio type */ 00113 jpeg_read_header(&cinfo, TRUE); /* Read the JPEG header for info */ 00114 jpeg_start_decompress(&cinfo); /* Prepare for actual decompression */ 00115 00116 *xres = cinfo.output_width; /* set returned image width */ 00117 *yres = cinfo.output_height; /* set returned image height */ 00118 00119 /* Calculate the size of a row in the image */ 00120 row_stride = cinfo.output_width * cinfo.output_components; 00121 00122 /* Allocate the image buffer which will be returned to the ray tracer */ 00123 *imgdata = (unsigned char *) malloc(row_stride * cinfo.output_height); 00124 00125 /* decompress the JPEG, one scanline at a time into the buffer */ 00126 while (cinfo.output_scanline < cinfo.output_height) { 00127 row_pointer[0] = &((*imgdata)[(cinfo.output_scanline)*row_stride]); 00128 jpeg_read_scanlines(&cinfo, row_pointer, 1); 00129 } 00130 00131 jpeg_finish_decompress(&cinfo); /* Tell the JPEG library to cleanup */ 00132 jpeg_destroy_decompress(&cinfo); /* Destroy JPEG decompression context */ 00133 00134 fclose(ifp); /* Close the input file */ 00135 00136 return IMAGENOERR; /* No fatal errors */ 00137 } 00138 00139 #endif
Copyright © 2007-2010 by The Shadowrun: Awakened Team. This work is licensed under the GNU Lesser General Public License 3.