movieplayer.cpp: initialize static members in CMoviePlayerGui class

Origin commit data
------------------
Branch: ni/coolstream
Commit: 32233595ea
Author: GetAway <get-away@t-online.de>
Date: 2023-08-14 (Mon, 14 Aug 2023)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
GetAway
2023-08-14 22:59:47 +02:00
committed by vanhofen
parent 169ef8d585
commit 636eda8634

View File

@@ -109,10 +109,10 @@ OpenThreads::Mutex CMoviePlayerGui::mutex;
OpenThreads::Mutex CMoviePlayerGui::bgmutex; OpenThreads::Mutex CMoviePlayerGui::bgmutex;
OpenThreads::Condition CMoviePlayerGui::cond; OpenThreads::Condition CMoviePlayerGui::cond;
pthread_t CMoviePlayerGui::bgThread; pthread_t CMoviePlayerGui::bgThread;
cPlayback *CMoviePlayerGui::playback; cPlayback *CMoviePlayerGui::playback = NULL;
bool CMoviePlayerGui::webtv_started; bool CMoviePlayerGui::webtv_started = false;
CMovieBrowser* CMoviePlayerGui::moviebrowser; CMovieBrowser* CMoviePlayerGui::moviebrowser = NULL;
CBookmarkManager * CMoviePlayerGui::bookmarkmanager; CBookmarkManager * CMoviePlayerGui::bookmarkmanager = NULL;
CMoviePlayerGui& CMoviePlayerGui::getInstance(bool background) CMoviePlayerGui& CMoviePlayerGui::getInstance(bool background)
{ {