/* RawSpeed - RAW file decoder. Copyright (C) 2009-2014 Klaus Post Copyright (C) 2014 Pedro CĂ´rte-Real Copyright (C) 2016-2017 Roman Lebedev This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #pragma once #include "common/Common.h" // for uint32, BitOrder #include "common/RawImage.h" // for RawImage #include "decompressors/AbstractDecompressor.h" // for AbstractDecompressor #include "io/Buffer.h" // for Buffer, Buffer::size_type #include "io/ByteStream.h" // for ByteStream #include "io/Endianness.h" // for Endianness #include // for move namespace rawspeed { class iPoint2D; class UncompressedDecompressor final : public AbstractDecompressor { ByteStream input; RawImage mRaw; // check buffer size, throw, or compute minimal height that can be decoded void sanityCheck(const uint32* h, int bpl); // check buffer size, throw, or compute minimal height that can be decoded void sanityCheck(uint32 w, const uint32* h, int bpp); // for special packed formats int bytesPerLine(int w, bool skips); public: UncompressedDecompressor(ByteStream input_, const RawImage& img) : input(std::move(input_)), mRaw(img) {} UncompressedDecompressor(const Buffer& data, Buffer::size_type offset, Buffer::size_type size, const RawImage& img) : UncompressedDecompressor(ByteStream(data, offset, size), img) {} UncompressedDecompressor(const Buffer& data, Buffer::size_type offset, const RawImage& img) : UncompressedDecompressor(ByteStream(data, offset), img) {} UncompressedDecompressor(const Buffer& data, const RawImage& img) : UncompressedDecompressor(data, 0, img) {} /* Helper function for decoders, that will unpack uncompressed image data */ /* input: Input image, positioned at first pixel */ /* size: Size of the image to decode in pixels */ /* offset: offset to write the data into the final image */ /* inputPitch: Number of bytes between each line in the input image */ /* bitPerPixel: Number of bits to read for each input pixel. */ /* order: Order of the bits - see Common.h for possibilities. */ void readUncompressedRaw(const iPoint2D& size, const iPoint2D& offset, int inputPitch, int bitPerPixel, BitOrder order); /* Faster versions for unpacking 8 bit data */ template void decode8BitRaw(uint32 w, uint32 h); /* Faster version for unpacking 12 bit data */ /* interlaced - is data with interlaced lines ? */ /* skips - is there control byte every 10 pixels ? */ template void decode12BitRaw(uint32 w, uint32 h); /* Faster version for reading unpacked 12 bit data that is left aligned * (needs >> 4 shift) */ template void decode12BitRawUnpackedLeftAligned(uint32 w, uint32 h); /* Faster version for reading unpacked data */ template void decodeRawUnpacked(uint32 w, uint32 h); }; extern template void UncompressedDecompressor::decode8BitRaw(uint32 w, uint32 h); extern template void UncompressedDecompressor::decode8BitRaw(uint32 w, uint32 h); extern template void UncompressedDecompressor::decode12BitRaw( uint32 w, uint32 h); extern template void UncompressedDecompressor::decode12BitRaw( uint32 w, uint32 h); extern template void UncompressedDecompressor::decode12BitRaw( uint32 w, uint32 h); extern template void UncompressedDecompressor::decode12BitRaw( uint32 w, uint32 h); extern template void UncompressedDecompressor::decode12BitRaw( uint32 w, uint32 h); extern template void UncompressedDecompressor::decode12BitRawUnpackedLeftAligned( uint32 w, uint32 h); extern template void UncompressedDecompressor::decodeRawUnpacked<12, Endianness::little>(uint32 w, uint32 h); extern template void UncompressedDecompressor::decodeRawUnpacked<12, Endianness::big>(uint32 w, uint32 h); extern template void UncompressedDecompressor::decodeRawUnpacked<14, Endianness::big>(uint32 w, uint32 h); extern template void UncompressedDecompressor::decodeRawUnpacked<16, Endianness::little>(uint32 w, uint32 h); extern template void UncompressedDecompressor::decodeRawUnpacked<16, Endianness::big>(uint32 w, uint32 h); } // namespace rawspeed