You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
520 B
35 lines
520 B
2 years ago
|
#pragma once
|
||
|
|
||
|
#include <cstddef>
|
||
|
#include "ff.h"
|
||
|
|
||
|
namespace audio {
|
||
|
|
||
|
enum SampleRate {};
|
||
|
enum BitDepth {};
|
||
|
|
||
|
struct PcmStreamHeader {
|
||
|
SampleRate sample_rate;
|
||
|
BitDepth bit_depth;
|
||
|
bool configure_now;
|
||
|
};
|
||
|
|
||
|
class AudioDecoder {
|
||
|
public:
|
||
|
AudioDecoder();
|
||
|
~AudioDecoder();
|
||
|
|
||
|
auto SetSource(RingbufHandle_t& source) -> void;
|
||
|
|
||
|
enum Status {};
|
||
|
auto ProcessChunk() -> Status;
|
||
|
|
||
|
auto GetOutputStream() const -> RingbufHandle_t;
|
||
|
|
||
|
private:
|
||
|
RingbufHandle_t input_;
|
||
|
RingbufHandle_t output_;
|
||
|
};
|
||
|
|
||
|
} // namespace audio
|