remove hdmi_cec

Origin commit data
------------------
Branch: master
Commit: fe8a073584
Author: TangoCash <eric@loxat.de>
Date: 2022-11-19 (Sat, 19 Nov 2022)


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

------------------
This commit was generated by Migit
This commit is contained in:
TangoCash
2022-11-19 13:25:57 +01:00
committed by vanhofen
parent 50c6e34213
commit 756a409f2f
12 changed files with 0 additions and 2728 deletions

View File

@@ -36,7 +36,6 @@
#include <linux/fb.h>
#include "video_lib.h"
#include "hal_debug.h"
#include "hdmi_cec.h"
#include <hardware_caps.h>
#include <proc_tools.h>
@@ -556,8 +555,6 @@ cVideo::~cVideo(void)
if (fd >= 0)
setAVInput(AUX);
#endif
if (hdmi_cec::getInstance()->standby_cec_activ && fd >= 0)
hdmi_cec::getInstance()->SetCECState(true);
closeDevice();
}
@@ -899,7 +896,6 @@ void cVideo::Standby(unsigned int bOn)
#endif
}
video_standby = bOn;
hdmi_cec::getInstance()->SetCECState(video_standby);
}
int cVideo::getBlank(void)
@@ -1539,28 +1535,3 @@ bool cVideo::GetScreenImage(unsigned char *&out_data, int &xres, int &yres, bool
return true;
}
bool cVideo::SetCECMode(VIDEO_HDMI_CEC_MODE _deviceType)
{
return hdmi_cec::getInstance()->SetCECMode(_deviceType);
}
void cVideo::SetCECAutoStandby(bool state)
{
hdmi_cec::getInstance()->SetCECAutoStandby(state);
}
void cVideo::SetCECAutoView(bool state)
{
hdmi_cec::getInstance()->SetCECAutoView(state);
}
int cVideo::GetAudioDestination()
{
return (int)hdmi_cec::getInstance()->GetAudioDestination();
}
void cVideo::SetAudioDestination(int audio_dest)
{
hdmi_cec::getInstance()->SetAudioDestination(audio_dest);
}