mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-16 16:27:59 +00:00
17 lines
419 B
C++
17 lines
419 B
C++
#pragma once
|
|
|
|
#include <Limelight.h>
|
|
|
|
#define MAX_CHANNELS 6
|
|
#define SAMPLES_PER_FRAME 240
|
|
|
|
class IAudioRenderer
|
|
{
|
|
public:
|
|
virtual ~IAudioRenderer() {}
|
|
|
|
virtual bool prepareForPlayback(const OPUS_MULTISTREAM_CONFIGURATION* opusConfig) = 0;
|
|
|
|
// Return false if an unrecoverable error has occurred and the renderer must be reinitialized
|
|
virtual bool submitAudio(short* audioBuffer, int audioSize) = 0;
|
|
};
|