Origin commit data
------------------
Branch: ni/coolstream
Commit: 4279ed9522
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2024-01-02 (Tue, 02 Jan 2024)


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

------------------
This commit was generated by Migit
This commit is contained in:
BPanther
2024-01-02 00:43:08 +01:00
committed by vanhofen
parent 1bfea1fc9c
commit d934e91478

View File

@@ -4961,6 +4961,12 @@ void CNeutrinoApp::tvMode( bool rezap )
videoDecoder->Standby(false); videoDecoder->Standby(false);
} }
#ifdef ENABLE_PIP
if (g_info.hw_caps->can_pip)
if (pipVideoDecoder[0])
pipVideoDecoder[0]->Pig(g_settings.pip_x, g_settings.pip_y, g_settings.pip_width, g_settings.pip_height, frameBuffer->getScreenWidth(true), frameBuffer->getScreenHeight(true));
#endif
#if 0 #if 0
if(mode != NeutrinoModes::mode_ts /*&& autoshift*/) { if(mode != NeutrinoModes::mode_ts /*&& autoshift*/) {
//printf("standby on: autoshift ! stopping ...\n"); //printf("standby on: autoshift ! stopping ...\n");
@@ -5237,6 +5243,12 @@ void CNeutrinoApp::radioMode( bool rezap)
videoDecoder->Standby(false); videoDecoder->Standby(false);
} }
#ifdef ENABLE_PIP
if (g_info.hw_caps->can_pip)
if (pipVideoDecoder[0])
pipVideoDecoder[0]->Pig(g_settings.pip_radio_x, g_settings.pip_radio_y, g_settings.pip_radio_width, g_settings.pip_radio_height, frameBuffer->getScreenWidth(true), frameBuffer->getScreenHeight(true));
#endif
CRecordManager::getInstance()->StopAutoRecord(); CRecordManager::getInstance()->StopAutoRecord();
if (mode != NeutrinoModes::mode_webtv && mode != NeutrinoModes::mode_webradio) { if (mode != NeutrinoModes::mode_webtv && mode != NeutrinoModes::mode_webradio) {