1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-10-02 18:52:27 +02:00
doorlockd-mirror/doorlockd/client/wave.h

36 lines
532 B
C
Raw Normal View History

#ifndef WAVE_H
#define WAVE_H
#include <string>
#include <vector>
#include <memory>
#include <ao/ao.h>
class Wave {
public:
using Raw = std::vector<char>;
static Wave fromFile(const std::string &filename);
Wave(int bits,
int channels,
int rate,
Raw data);
Wave(const Wave &rhs);
~Wave();
Wave &operator=(const Wave &rhs);
void play() const;
private:
std::unique_ptr<ao_sample_format> _format;
ao_device* _device = { nullptr };
const Raw _data;
};
#endif