mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
introduce can_pip
Origin commit data
------------------
Branch: master
Commit: f198d19878
Author: TangoCash <eric@loxat.de>
Date: 2021-05-29 (Sat, 29 May 2021)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -30,6 +30,7 @@ typedef struct hw_caps
|
|||||||
int has_SCART;
|
int has_SCART;
|
||||||
int has_SCART_input;
|
int has_SCART_input;
|
||||||
int has_YUV_cinch;
|
int has_YUV_cinch;
|
||||||
|
int can_pip;
|
||||||
int can_cpufreq;
|
int can_cpufreq;
|
||||||
int can_shutdown;
|
int can_shutdown;
|
||||||
int can_cec;
|
int can_cec;
|
||||||
|
@@ -29,6 +29,9 @@ hw_caps_t *get_hwcaps(void)
|
|||||||
|
|
||||||
memset(&caps, 0, sizeof(hw_caps_t));
|
memset(&caps, 0, sizeof(hw_caps_t));
|
||||||
|
|
||||||
|
if (access("/dev/dvb/adapter0/video1", F_OK) != -1)
|
||||||
|
caps.can_pip = 1;
|
||||||
|
|
||||||
#if BOXMODEL_VUSOLO4K
|
#if BOXMODEL_VUSOLO4K
|
||||||
initialized = 1;
|
initialized = 1;
|
||||||
caps.has_CI = 1;
|
caps.has_CI = 1;
|
||||||
|
@@ -26,6 +26,9 @@ hw_caps_t *get_hwcaps(void)
|
|||||||
|
|
||||||
memset(&caps, 0, sizeof(hw_caps_t));
|
memset(&caps, 0, sizeof(hw_caps_t));
|
||||||
|
|
||||||
|
if (access("/dev/dvb/adapter0/video1", F_OK) != -1)
|
||||||
|
caps.can_pip = 1;
|
||||||
|
|
||||||
#if BOXMODEL_UFS910
|
#if BOXMODEL_UFS910
|
||||||
initialized = 1;
|
initialized = 1;
|
||||||
strcpy(caps.boxvendor, "KATHREIN");
|
strcpy(caps.boxvendor, "KATHREIN");
|
||||||
|
@@ -27,6 +27,9 @@ hw_caps_t *get_hwcaps(void)
|
|||||||
|
|
||||||
memset(&caps, 0, sizeof(hw_caps_t));
|
memset(&caps, 0, sizeof(hw_caps_t));
|
||||||
|
|
||||||
|
if (access("/dev/dvb/adapter0/video1", F_OK) != -1)
|
||||||
|
caps.can_pip = 1;
|
||||||
|
|
||||||
initialized = 1;
|
initialized = 1;
|
||||||
caps.can_cpufreq = 0;
|
caps.can_cpufreq = 0;
|
||||||
caps.can_shutdown = 1; /* for testing */
|
caps.can_shutdown = 1; /* for testing */
|
||||||
|
@@ -29,6 +29,9 @@ hw_caps_t *get_hwcaps(void)
|
|||||||
|
|
||||||
memset(&caps, 0, sizeof(hw_caps_t));
|
memset(&caps, 0, sizeof(hw_caps_t));
|
||||||
|
|
||||||
|
if (access("/dev/dvb/adapter0/video1", F_OK) != -1)
|
||||||
|
caps.can_pip = 1;
|
||||||
|
|
||||||
#if BOXMODEL_VUDUO
|
#if BOXMODEL_VUDUO
|
||||||
initialized = 1;
|
initialized = 1;
|
||||||
caps.has_CI = 2;
|
caps.has_CI = 2;
|
||||||
|
@@ -29,6 +29,9 @@ hw_caps_t *get_hwcaps(void)
|
|||||||
|
|
||||||
memset(&caps, 0, sizeof(hw_caps_t));
|
memset(&caps, 0, sizeof(hw_caps_t));
|
||||||
|
|
||||||
|
if (access("/dev/dvb/adapter0/video1", F_OK) != -1)
|
||||||
|
caps.can_pip = 1;
|
||||||
|
|
||||||
initialized = 1;
|
initialized = 1;
|
||||||
caps.has_CI = 0;
|
caps.has_CI = 0;
|
||||||
caps.can_cec = 1;
|
caps.can_cec = 1;
|
||||||
|
Reference in New Issue
Block a user