sela
lpc_decoded_data.hpp
Go to the documentation of this file.
1 #ifndef _LPC_DECODED_DATA_H_
2 #define _LPC_DECODED_DATA_H_
3 
4 #include <cstdint>
5 #include <vector>
6 
7 namespace data {
9 public:
10  uint8_t bitsPerSample;
11  const std::vector<int32_t> samples;
12  LpcDecodedData(uint8_t bitsPerSample, const std::vector<int32_t>&& samples) noexcept
13  : bitsPerSample(bitsPerSample)
14  , samples(samples)
15  {
16  }
17 };
18 }
19 
20 #endif
Definition: audio_packet.hpp:4
Definition: lpc_decoded_data.hpp:8
uint8_t bitsPerSample
Definition: lpc_decoded_data.hpp:10
const std::vector< int32_t > samples
Definition: lpc_decoded_data.hpp:11
LpcDecodedData(uint8_t bitsPerSample, const std::vector< int32_t > &&samples) noexcept
Definition: lpc_decoded_data.hpp:12