Remove redundant initializtion of SDL video

This commit is contained in:
Cameron Gutman
2019-03-23 14:26:08 -07:00
parent d2cff86c97
commit c0bf8b9c25
2 changed files with 13 additions and 20 deletions

View File

@@ -28,10 +28,6 @@ public:
bool isHardwareDecodeAvailable(StreamingPreferences::VideoDecoderSelection vds,
int videoFormat, int width, int height, int frameRate);
static
int getDecoderCapabilities(StreamingPreferences::VideoDecoderSelection vds,
int videoFormat, int width, int height, int frameRate);
static Session* get()
{
return s_ActiveSession;
@@ -64,7 +60,9 @@ private:
void emitLaunchWarning(QString text);
int getDecoderCapabilities();
static
int getDecoderCapabilities(StreamingPreferences::VideoDecoderSelection vds,
int videoFormat, int width, int height, int frameRate);
IAudioRenderer* createAudioRenderer();