sela
rice_decoded_data.hpp
Go to the documentation of this file.
1 #ifndef _RICE_DECODED_DATA_H_
2 #define _RICE_DECODED_DATA_H_
3 
4 #include <cstdint>
5 #include <vector>
6 
7 namespace data {
9 public:
10  const std::vector<int32_t> decodedData;
11  explicit RiceDecodedData(const std::vector<int32_t>&& decodedData) noexcept
12  : decodedData(decodedData)
13  {
14  }
15 };
16 }
17 
18 #endif
Definition: audio_packet.hpp:4
RiceDecodedData(const std::vector< int32_t > &&decodedData) noexcept
Definition: rice_decoded_data.hpp:11
const std::vector< int32_t > decodedData
Definition: rice_decoded_data.hpp:10
Definition: rice_decoded_data.hpp:8