Sunshine/sunshine/audio.h

19 lines
434 B
C
Raw Normal View History

#ifndef SUNSHINE_AUDIO_H
#define SUNSHINE_AUDIO_H
#include "utility.h"
2019-12-11 18:06:52 +00:00
#include "thread_safe.h"
namespace audio {
struct config_t {
int packetDuration;
int channels;
int mask;
};
using packet_t = util::buffer_t<std::uint8_t>;
2020-02-08 15:26:38 +00:00
using packet_queue_t = std::shared_ptr<safe::queue_t<std::pair<void*, packet_t>>>;
2020-02-09 23:33:12 +00:00
void capture(safe::signal_t *shutdown_event, packet_queue_t packets, config_t config, void *channel_data);
}
#endif