mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 02:09:49 +00:00
18 lines
319 B
C++
18 lines
319 B
C++
#ifndef SUNSHINE_AUDIO_H
|
|
#define SUNSHINE_AUDIO_H
|
|
|
|
#include "utility.h"
|
|
#include "queue.h"
|
|
namespace audio {
|
|
struct config_t {
|
|
int packetDuration;
|
|
int channels;
|
|
int mask;
|
|
};
|
|
|
|
using packet_t = util::buffer_t<std::uint8_t>;
|
|
void capture(std::shared_ptr<safe::queue_t<packet_t>> packets, config_t config);
|
|
}
|
|
|
|
#endif
|