mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 17:01:08 +02:00
Revert "zapit: improve the lockPlayBack "nonblank-Hack""
This reverts commit56f22a0a53
because previous changes are missing. Origin commit data ------------------ Commit:51a46646a8
Author: vanhofen <vanhofen@gmx.de> Date: 2014-01-13 (Mon, 13 Jan 2014)
This commit is contained in:
@@ -198,7 +198,7 @@ class CZapit : public OpenThreads::Thread
|
||||
void LoadVolumeMap();
|
||||
void SaveChannelPids(CZapitChannel* channel);
|
||||
virtual void ConfigFrontend();
|
||||
bool StopPlayBack(bool send_pmt, bool blank = true);
|
||||
bool StopPlayBack(bool send_pmt);
|
||||
virtual void leaveStandby();
|
||||
|
||||
static CZapit * zapit;
|
||||
|
@@ -1617,7 +1617,10 @@ bool CZapit::ParseCommand(CBasicMessage::Header &rmsg, int connfd)
|
||||
#endif
|
||||
|
||||
case CZapitMessages::CMD_SB_LOCK_PLAYBACK:
|
||||
StopPlayBack(msgBool.truefalse, false);
|
||||
/* hack. if standby true, dont blank video */
|
||||
standby = true;
|
||||
StopPlayBack(true);
|
||||
standby = false;
|
||||
playbackStopForced = true;
|
||||
lock_channel_id = live_channel_id;
|
||||
SendCmdReady(connfd);
|
||||
@@ -2100,7 +2103,7 @@ bool CZapit::StartPlayBack(CZapitChannel *thisChannel)
|
||||
return true;
|
||||
}
|
||||
|
||||
bool CZapit::StopPlayBack(bool send_pmt, bool blank)
|
||||
bool CZapit::StopPlayBack(bool send_pmt)
|
||||
{
|
||||
if(send_pmt)
|
||||
CCamManager::getInstance()->Stop(live_channel_id, CCamManager::PLAY);
|
||||
@@ -2119,7 +2122,7 @@ bool CZapit::StopPlayBack(bool send_pmt, bool blank)
|
||||
audioDecoder->Stop();
|
||||
|
||||
/* hack. if standby, dont blank video -> for paused timeshift */
|
||||
videoDecoder->Stop(standby ? false : blank);
|
||||
videoDecoder->Stop(standby ? false : true);
|
||||
#ifdef USE_VBI
|
||||
videoDecoder->StopVBI();
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user