/usr/include/gnash/GnashImageJpeg.h is in gnash-dev 0.8.11~git20160109-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 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 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | // GnashImageJpeg.h: Jpeg reader, for Gnash.
//
// Copyright (C) 2008, 2009, 2010, 2011, 2012
// Free Software Foundation, Inc.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
//
//
// Original version by Thatcher Ulrich <tu@tulrich.com> 2002
//
#ifndef GNASH_IMAGE_JPEG_H
#define GNASH_IMAGE_JPEG_H
#include <csetjmp>
#include "dsodefs.h"
#include "GnashImage.h"
// jpeglib.h redefines HAVE_STDLIB_H. This silences
// the warnings, but it's not good.
#undef HAVE_STDLIB_H
extern "C" {
#include <jpeglib.h>
}
#undef HAVE_STDLIB_H
// Forward declarations
namespace gnash { class IOChannel; }
namespace gnash {
namespace image {
/// Class for reading JPEG image data.
//
/// This uses the IJG jpeglib to implement the Input interface.
class DSOEXPORT JpegInput : public Input
{
private:
const char* _errorOccurred;
std::jmp_buf _jmpBuf;
// State needed for input.
jpeg_decompress_struct m_cinfo;
jpeg_error_mgr m_jerr;
bool _compressorOpened;
public:
/// Construct a JpegInput object to read from an IOChannel.
//
/// @param in The stream to read JPEG data from. Ownership is shared
/// between caller and JpegInput, so it is freed
/// automatically when the last owner is destroyed.
DSOEXPORT JpegInput(std::shared_ptr<IOChannel> in);
/// Read the JPEG header information only.
//
/// @param maxHeaderBytes The maximum number of bytes to read before
/// Stopping. If the header is shorter, we stop
/// early.
void DSOEXPORT readHeader(unsigned int maxHeaderBytes);
~JpegInput();
/// Begin processing the image data.
void read();
/// Discard any data sitting in our input buffer.
//
/// Use this before/after reading headers or partial image
/// data, to avoid screwing up future reads.
DSOEXPORT void discardPartialBuffer();
/// Complete processing the image and clean up.
//
/// This should close / free all resources from libjpeg.
void finishImage();
/// Get the image's height in pixels.
//
/// @return The height of the image in pixels.
size_t getHeight() const;
/// Get the image's width in pixels.
//
/// @return The width of the image in pixels.
size_t getWidth() const;
/// Get number of components (channels)
//
/// @return The number of components, e.g. 3 for RGB
size_t getComponents() const;
/// Read a scanline's worth of image data into the given buffer.
//
/// The amount of data read is getWidth() * getComponents().
///
/// @param rgbData The buffer for writing raw RGB data to.
void readScanline(unsigned char* rgbData);
/// Create a JpegInput and transfer ownership to the caller.
//
/// @param in The IOChannel to read JPEG data from.
static std::unique_ptr<Input> create(std::shared_ptr<IOChannel> in)
{
std::unique_ptr<Input> ret(new JpegInput(in));
// might throw an exception (I guess)
if (ret.get()) ret->read();
return ret;
}
/// \brief
/// For reading SWF JPEG2-style image data, using pre-loaded
/// headers stored in the given JpegInput object.
//
/// @param loader The JpegInput object to use for reading the
/// data. This should have been constructed with
/// createSWFJpeg2HeaderOnly().
DSOEXPORT static std::unique_ptr<GnashImage> readSWFJpeg2WithTables(
JpegInput& loader);
/// Create a JPEG 'loader' object by reading a JPEG header.
//
/// This is for reusing the header information for different JPEGs images.
//
/// @param in The channel to read JPEG header data from.
/// @param maxHeaderBytes The maximum number of bytes to read.
static std::unique_ptr<JpegInput> createSWFJpeg2HeaderOnly(
std::shared_ptr<IOChannel> in, unsigned int maxHeaderBytes)
{
std::unique_ptr<JpegInput> ret (new JpegInput(in));
// might throw an exception
if (ret.get()) ret->readHeader(maxHeaderBytes);
return ret;
}
/// This function is called when libjpeg encounters an error.
//
/// It is needed to avoid memory corruption during stack unwinding by
/// freeing libjpeg resources correctly before throwing an exception.
///
/// @param msg An error message for logging.
void errorOccurred(const char* msg);
};
// Class for writing JPEG image data.
class JpegOutput : public Output
{
public:
/// Constract a JpegOutput for writing to an IOChannel
//
/// @param out The gnash::IOChannel to write the image to
/// @param width The width of the resulting image
/// @param height The height of the resulting image.
/// @param quality The quality of the created image, from 1-100.
JpegOutput(std::shared_ptr<IOChannel> out, size_t width,
size_t height, int quality);
~JpegOutput();
/// Write RGB image data using the parameters supplied at construction.
//
/// @param rgbData The raw RGB image data to write as a JPEG.
virtual void writeImageRGB(const unsigned char* rgbData);
/// Write RGBA image data using the parameters supplied at construction.
//
/// Note: transparency is ignored because JPEG doesn't support it!
//
/// @param rgbaData The raw RGBA image data to write as a JPEG.
virtual void writeImageRGBA(const unsigned char* rgbaData);
/// Create a JpegOutput, transferring ownership to the caller.
//
/// @param out The gnash::IOChannel to write the image to
/// @param width The width of the resulting image
/// @param height The height of the resulting image.
/// @param quality The quality of the created image, from 1-100.
static std::unique_ptr<Output> create(std::shared_ptr<IOChannel> out,
size_t width, size_t height, int quality);
private:
jpeg_compress_struct m_cinfo;
jpeg_error_mgr m_jerr;
};
} // namespace image
} // namespace gnash
#endif // JPEG_H
// Local Variables:
// mode: C++
// c-basic-offset: 8
// tab-width: 8
// indent-tabs-mode: t
// End:
|