neutrino osd timeouts: add extra setting for movieplayer timeout

timeout for movieplayer was set default to 6 sec,
now it's possible to set it's own timeout

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1509 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Branch: ni/coolstream
Commit: ac18822737
Author: Thilo Graf <dbt@novatux.de>
Date: 2011-06-04 (Sat, 04 Jun 2011)

Origin message was:
------------------
*neutrino osd timeouts: add extra setting for movieplayer timeout

timeout for movieplayer was set default to 6 sec,
now it's possible to set it's own timeout

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1509 e54a6e83-5905-42d5-8d5c-058d10e6a962


------------------
This commit was generated by Migit
This commit is contained in:
2011-06-04 20:52:13 +00:00
parent d1df6f36d8
commit 3ee0462f86
6 changed files with 11 additions and 4 deletions

View File

@@ -772,6 +772,9 @@ void CInfoViewer::loop(int fadeValue, bool show_dot ,bool fadeIn)
case NeutrinoMessages::mode_radio:
timeoutEnd = CRCInput::calcTimeoutEnd (g_settings.timing[SNeutrinoSettings::TIMING_INFOBAR_RADIO] == 0 ? 0xFFFF : g_settings.timing[SNeutrinoSettings::TIMING_INFOBAR_RADIO]);
break;
case NeutrinoMessages::mode_ts:
timeoutEnd = CRCInput::calcTimeoutEnd (g_settings.timing[SNeutrinoSettings::TIMING_INFOBAR_MOVIE] == 0 ? 0xFFFF : g_settings.timing[SNeutrinoSettings::TIMING_INFOBAR_MOVIE]);
break;
default:
timeoutEnd = CRCInput::calcTimeoutEnd(6);
break;