cec-setup: fix segfaults on non-ARM_HARDWARE

Origin commit data
------------------
Branch: ni/coolstream
Commit: d24455f732
Author: vanhofen <vanhofen@gmx.de>
Date: 2018-10-25 (Thu, 25 Oct 2018)

Origin message was:
------------------
- cec-setup: fix segfaults on non-ARM_HARDWARE

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

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2018-10-25 21:56:29 +02:00
parent 4fc61472dd
commit 3dff31a972

View File

@@ -133,7 +133,9 @@ bool CCECSetup::changeNotify(const neutrino_locale_t OptionName, void * /*data*/
printf("[neutrino CEC Settings] %s set CEC settings...\n", __FUNCTION__);
cec1->setActive(g_settings.hdmi_cec_mode != VIDEO_HDMI_CEC_MODE_OFF);
cec2->setActive(g_settings.hdmi_cec_mode != VIDEO_HDMI_CEC_MODE_OFF);
#if HAVE_ARM_HARDWARE
cec3->setActive(g_settings.hdmi_cec_mode != VIDEO_HDMI_CEC_MODE_OFF);
#endif
videoDecoder->SetCECMode((VIDEO_HDMI_CEC_MODE)g_settings.hdmi_cec_mode);
}
else if (ARE_LOCALES_EQUAL(OptionName, LOCALE_VIDEOMENU_HDMI_CEC_STANDBY))