mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 17:01:08 +02:00
nhttpd: fix switch tv<>radio in standby mode
Origin commit data
------------------
Branch: ni/coolstream
Commit: 0a97efe317
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-04-02 (Thu, 02 Apr 2015)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -332,17 +332,27 @@ void CControlAPI::SetModeCGI(CyhookHandler *hh)
|
|||||||
|
|
||||||
if (hh->ParamList["1"] == "radio") // switch to radio mode
|
if (hh->ParamList["1"] == "radio") // switch to radio mode
|
||||||
{
|
{
|
||||||
int mode = NeutrinoMessages::mode_radio;
|
if(CNeutrinoApp::getInstance()->getMode() != NeutrinoMessages::mode_standby){
|
||||||
NeutrinoAPI->EventServer->sendEvent(NeutrinoMessages::CHANGEMODE, CEventServer::INITID_HTTPD, (void *)&mode,sizeof(int));
|
int mode = NeutrinoMessages::mode_radio;
|
||||||
sleep(1);
|
NeutrinoAPI->EventServer->sendEvent(NeutrinoMessages::CHANGEMODE, CEventServer::INITID_HTTPD, (void *)&mode,sizeof(int));
|
||||||
NeutrinoAPI->UpdateBouquets();
|
sleep(1);
|
||||||
|
NeutrinoAPI->UpdateBouquets();
|
||||||
|
}else{
|
||||||
|
extern CRemoteControl * g_RemoteControl;
|
||||||
|
g_RemoteControl->radioMode();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (hh->ParamList["1"] == "tv") // switch to tv mode
|
else if (hh->ParamList["1"] == "tv") // switch to tv mode
|
||||||
{
|
{
|
||||||
int mode = NeutrinoMessages::mode_tv;
|
if(CNeutrinoApp::getInstance()->getMode() != NeutrinoMessages::mode_standby){
|
||||||
NeutrinoAPI->EventServer->sendEvent(NeutrinoMessages::CHANGEMODE, CEventServer::INITID_HTTPD, (void *)&mode,sizeof(int));
|
int mode = NeutrinoMessages::mode_tv;
|
||||||
sleep(1);
|
NeutrinoAPI->EventServer->sendEvent(NeutrinoMessages::CHANGEMODE, CEventServer::INITID_HTTPD, (void *)&mode,sizeof(int));
|
||||||
NeutrinoAPI->UpdateBouquets();
|
sleep(1);
|
||||||
|
NeutrinoAPI->UpdateBouquets();
|
||||||
|
}else{
|
||||||
|
extern CRemoteControl * g_RemoteControl;
|
||||||
|
g_RemoteControl->tvMode();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (hh->ParamList["record"] == "start") // start record mode
|
else if (hh->ParamList["record"] == "start") // start record mode
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user