mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-10 21:54:17 +00:00
125 lines
3.1 KiB
C++
125 lines
3.1 KiB
C++
#pragma once
|
|
|
|
#include <QSemaphore>
|
|
|
|
#include <Limelight.h>
|
|
#include <opus_multistream.h>
|
|
#include "backend/computermanager.h"
|
|
#include "settings/streamingpreferences.h"
|
|
#include "input.hpp"
|
|
#include "video/decoder.h"
|
|
|
|
class Session : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
friend class SdlInputHandler;
|
|
friend class DeferredSessionCleanupTask;
|
|
|
|
public:
|
|
explicit Session(NvComputer* computer, NvApp& app);
|
|
|
|
Q_INVOKABLE void exec();
|
|
|
|
static
|
|
bool isHardwareDecodeAvailable(StreamingPreferences::VideoDecoderSelection vds,
|
|
int videoFormat, int width, int height, int frameRate);
|
|
|
|
signals:
|
|
void stageStarting(QString stage);
|
|
|
|
void stageFailed(QString stage, long errorCode);
|
|
|
|
void connectionStarted();
|
|
|
|
void displayLaunchError(QString text);
|
|
|
|
void displayLaunchWarning(QString text);
|
|
|
|
private:
|
|
bool validateLaunch();
|
|
|
|
void emitLaunchWarning(QString text);
|
|
|
|
int getDecoderCapabilities();
|
|
|
|
int sdlDetermineAudioConfiguration();
|
|
|
|
void getWindowDimensions(bool fullScreen,
|
|
int& x, int& y,
|
|
int& width, int& height);
|
|
|
|
void toggleFullscreen();
|
|
|
|
static
|
|
bool chooseDecoder(StreamingPreferences::VideoDecoderSelection vds,
|
|
SDL_Window* window, int videoFormat, int width, int height,
|
|
int frameRate, IVideoDecoder*& chosenDecoder);
|
|
|
|
static
|
|
void clStageStarting(int stage);
|
|
|
|
static
|
|
void clStageFailed(int stage, long errorCode);
|
|
|
|
static
|
|
void clConnectionTerminated(long errorCode);
|
|
|
|
static
|
|
void clLogMessage(const char* format, ...);
|
|
|
|
static
|
|
int drSetup(int videoFormat, int width, int height, int frameRate, void*, int);
|
|
|
|
static
|
|
void drCleanup();
|
|
|
|
static
|
|
int drSubmitDecodeUnit(PDECODE_UNIT du);
|
|
|
|
static
|
|
int sdlAudioInit(int audioConfiguration,
|
|
POPUS_MULTISTREAM_CONFIGURATION opusConfig,
|
|
void* arContext, int arFlags);
|
|
|
|
static
|
|
void sdlAudioStart();
|
|
|
|
static
|
|
void sdlAudioStop();
|
|
|
|
static
|
|
void sdlAudioCleanup();
|
|
|
|
static
|
|
void sdlAudioDecodeAndPlaySample(char* sampleData, int sampleLength);
|
|
|
|
StreamingPreferences m_Preferences;
|
|
STREAM_CONFIGURATION m_StreamConfig;
|
|
DECODER_RENDERER_CALLBACKS m_VideoCallbacks;
|
|
NvComputer* m_Computer;
|
|
NvApp m_App;
|
|
SDL_Window* m_Window;
|
|
IVideoDecoder* m_VideoDecoder;
|
|
SDL_SpinLock m_DecoderLock;
|
|
bool m_NeedsIdr;
|
|
|
|
int m_ActiveVideoFormat;
|
|
int m_ActiveVideoWidth;
|
|
int m_ActiveVideoHeight;
|
|
int m_ActiveVideoFrameRate;
|
|
|
|
static SDL_AudioDeviceID s_AudioDevice;
|
|
static OpusMSDecoder* s_OpusDecoder;
|
|
static short s_OpusDecodeBuffer[];
|
|
static int s_ChannelCount;
|
|
static int s_PendingDrops;
|
|
static int s_PendingHardDrops;
|
|
static unsigned int s_SampleIndex;
|
|
static Uint32 s_BaselinePendingData;
|
|
|
|
static AUDIO_RENDERER_CALLBACKS k_AudioCallbacks;
|
|
static CONNECTION_LISTENER_CALLBACKS k_ConnCallbacks;
|
|
static Session* s_ActiveSession;
|
|
static QSemaphore s_ActiveSessionSemaphore;
|
|
};
|