RawSpeed
fast raw decoding library
Loading...
Searching...
No Matches
BitStreamerMSB32Test.cpp
Go to the documentation of this file.
1/*
2 RawSpeed - RAW file decoder.
3
4 Copyright (C) 2018 Roman Lebedev
5
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2 of the License, or (at your option) any later version.
10
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
17 License along with this library; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19*/
20
23#include <array>
24#include <cstdint>
25#include <gtest/gtest.h>
26
28
29namespace rawspeed_test {
30
31namespace {
32
33struct InvOnesTag;
34struct OnesTag;
35
36template <>
37const std::array<uint8_t, 8> Pattern<BitStreamerMSB32, OnesTag>::Data = {
38 {/* [Byte3 Byte2 Byte1 Byte0] */
39 /* Byte: [Bit0 .. Bit7] */
40 0b00011111, 0b00001000, 0b01000010, 0b10100100}};
41template <> uint32_t Pattern<BitStreamerMSB32, OnesTag>::data(int index) {
42 const auto set = GenOnesBE(1, 0);
43 return set[index];
44}
45
46template <>
47const std::array<uint8_t, 8> Pattern<BitStreamerMSB32, InvOnesTag>::Data = {
48 {0b00001111, 0b00000100, 0b00100001, 0b11010010}};
49template <> uint32_t Pattern<BitStreamerMSB32, InvOnesTag>::data(int index) {
50 const auto set = GenOnesBE(0, -1);
51 return set[index];
52}
53
54INSTANTIATE_TYPED_TEST_SUITE_P(MSB32, BitStreamerTest,
55 Patterns<BitStreamerMSB32>);
56
57} // namespace
58
59} // namespace rawspeed_test
INSTANTIATE_TYPED_TEST_SUITE_P(MSB32, BitStreamerTest, Patterns< BitStreamerMSB32 >)