Line data Source code
1 :
2 : /* Copyright (c) 2010, Cedric Stalder <cedric.stalder@gmail.com>
3 : * 2010-2013, Stefan Eilemann <eile@eyescale.ch>
4 : *
5 : * This library is free software; you can redistribute it and/or modify it under
6 : * the terms of the GNU Lesser General Public License version 2.1 as published
7 : * by the Free Software Foundation.
8 : *
9 : * This library is distributed in the hope that it will be useful, but WITHOUT
10 : * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11 : * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12 : * details.
13 : *
14 : * You should have received a copy of the GNU Lesser General Public License
15 : * along with this library; if not, write to the Free Software Foundation, Inc.,
16 : * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 : */
18 :
19 : #ifndef LUNCHBOX_PLUGIN_COMPRESSORRLEYUV
20 : #define LUNCHBOX_PLUGIN_COMPRESSORRLEYUV
21 :
22 : #include "compressor.h"
23 :
24 : namespace lunchbox
25 : {
26 : namespace plugin
27 : {
28 :
29 : class CompressorRLEYUV : public Compressor
30 : {
31 : public:
32 0 : CompressorRLEYUV(): Compressor() {}
33 0 : virtual ~CompressorRLEYUV() {}
34 :
35 : void compress( const void* const inData, const eq_uint64_t nPixels,
36 : const bool useAlpha ) override;
37 :
38 : static void decompress( const void* const* inData,
39 : const eq_uint64_t* const inSizes,
40 : const unsigned nInputs, void* const outData,
41 : eq_uint64_t* const outDims, const eq_uint64_t flags,
42 : void* const );
43 :
44 0 : static Compressor* getNewCompressor( const unsigned /*name*/ )
45 0 : { return new CompressorRLEYUV; }
46 : };
47 :
48 : class CompressorDiffRLEYUV : public CompressorRLEYUV
49 : {
50 : public:
51 0 : CompressorDiffRLEYUV() : CompressorRLEYUV() {}
52 0 : virtual ~CompressorDiffRLEYUV() {}
53 :
54 0 : static Compressor* getNewCompressor( const unsigned /*name*/ )
55 0 : { return new CompressorDiffRLEYUV; }
56 :
57 : void compress( const void* const inData, const eq_uint64_t nPixels,
58 : const bool useAlpha ) override;
59 :
60 : static void decompress( const void* const* inData,
61 : const eq_uint64_t* const inSizes,
62 : const unsigned nInputs, void* const outData,
63 : eq_uint64_t* const outDims, const eq_uint64_t flags,
64 : void* const );
65 : };
66 : }
67 : }
68 : #endif // LUNCHBOX_PLUGIN_COMPRESSORRLEYUV
|