mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2025-03-05 15:17:20 +00:00
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
|
#pragma once
|
||
|
|
||
|
#include <portaudio.h>
|
||
|
|
||
|
#include "renderer.h"
|
||
|
|
||
|
#define CIRCULAR_BUFFER_SIZE 32
|
||
|
#define MAX_CHANNEL_COUNT 6
|
||
|
|
||
|
#define CIRCULAR_BUFFER_STRIDE (MAX_CHANNEL_COUNT * SAMPLES_PER_FRAME)
|
||
|
|
||
|
class PortAudioRenderer : public IAudioRenderer
|
||
|
{
|
||
|
public:
|
||
|
PortAudioRenderer();
|
||
|
|
||
|
virtual ~PortAudioRenderer();
|
||
|
|
||
|
virtual bool prepareForPlayback(const OPUS_MULTISTREAM_CONFIGURATION* opusConfig);
|
||
|
|
||
|
virtual void submitAudio(short* audioBuffer, int audioSize);
|
||
|
|
||
|
virtual bool testAudio(int audioConfiguration);
|
||
|
|
||
|
virtual int detectAudioConfiguration();
|
||
|
|
||
|
static int paStreamCallback(const void *input,
|
||
|
void *output,
|
||
|
unsigned long frameCount,
|
||
|
const PaStreamCallbackTimeInfo *timeInfo,
|
||
|
PaStreamCallbackFlags statusFlags,
|
||
|
void *userData);
|
||
|
|
||
|
private:
|
||
|
PaStream* m_Stream;
|
||
|
int m_ChannelCount;
|
||
|
int m_WriteIndex;
|
||
|
int m_ReadIndex;
|
||
|
short m_AudioBuffer[CIRCULAR_BUFFER_SIZE * CIRCULAR_BUFFER_STRIDE];
|
||
|
};
|
||
|
|