- fix coolstream build

Conflicts:
	src/zapit/src/zapit.cpp

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2020-01-20 21:33:46 +01:00
committed by Thilo Graf
parent cf114aefae
commit 9019dc0e56
2 changed files with 22 additions and 13 deletions

View File

@@ -638,7 +638,11 @@ bool CCAMMenuHandler::changeNotify(const neutrino_locale_t OptionName, void * Da
if (ARE_LOCALES_EQUAL(OptionName, LOCALE_CI_CLOCK)) {
for (unsigned int i = 0; i < ca->GetNumberCISlots(); i++) {
printf("CCAMMenuHandler::changeNotify: ci_clock[%d] %d\n", i, g_settings.ci_clock[i]);
#if HAVE_LIBSTB_HAL
ca->SetTSClock(g_settings.ci_clock[i] * 1000000, i);
#else
ca->SetTSClock(g_settings.ci_clock[i] * 1000000);
#endif
}
return true;
}