mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
neutrino.cpp: stop stream before pip start
This commit is contained in:
@@ -3878,8 +3878,11 @@ bool CNeutrinoApp::StartPip(const t_channel_id channel_id)
|
|||||||
if (!channel)
|
if (!channel)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
if (channel->getRecordDemux() == channel->getPipDemux())
|
||||||
|
CStreamManager::getInstance()->StopStream(channel_id);
|
||||||
|
|
||||||
int recmode = CRecordManager::getInstance()->GetRecordMode(channel_id);
|
int recmode = CRecordManager::getInstance()->GetRecordMode(channel_id);
|
||||||
if ((channel->getRecordDemux() != channel->getPipDemux()) || (recmode == CRecordManager::RECMODE_OFF)) {
|
if ((recmode == CRecordManager::RECMODE_OFF) || (channel->getRecordDemux() != channel->getPipDemux())) {
|
||||||
if (!g_Zapit->zapTo_pip(channel_id))
|
if (!g_Zapit->zapTo_pip(channel_id))
|
||||||
DisplayErrorMessage(g_Locale->getText(LOCALE_VIDEOMENU_PIP_ERROR));
|
DisplayErrorMessage(g_Locale->getText(LOCALE_VIDEOMENU_PIP_ERROR));
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user