mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
fix quadpip, not only for vuplus4k
Origin commit data
------------------
Branch: master
Commit: db7f72c933
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2021-10-15 (Fri, 15 Oct 2021)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -149,7 +149,6 @@ static const char *VMPEG_dst_left[] =
|
|||||||
"/proc/stb/vmpeg/3/dst_left"
|
"/proc/stb/vmpeg/3/dst_left"
|
||||||
};
|
};
|
||||||
|
|
||||||
#if BOXMODEL_VUSOLO4K || BOXMODEL_VUDUO4K || BOXMODEL_VUDUO4KSE || BOXMODEL_VUULTIMO4K || BOXMODEL_VUUNO4KSE || BOXMODEL_VUUNO4K
|
|
||||||
static const char *VMPEG_dst_apply[] =
|
static const char *VMPEG_dst_apply[] =
|
||||||
{
|
{
|
||||||
"/proc/stb/vmpeg/0/dst_apply",
|
"/proc/stb/vmpeg/0/dst_apply",
|
||||||
@@ -157,7 +156,6 @@ static const char *VMPEG_dst_apply[] =
|
|||||||
"/proc/stb/vmpeg/2/dst_apply",
|
"/proc/stb/vmpeg/2/dst_apply",
|
||||||
"/proc/stb/vmpeg/3/dst_apply"
|
"/proc/stb/vmpeg/3/dst_apply"
|
||||||
};
|
};
|
||||||
#endif
|
|
||||||
|
|
||||||
static const char *VMPEG_framerate[] =
|
static const char *VMPEG_framerate[] =
|
||||||
{
|
{
|
||||||
@@ -899,13 +897,14 @@ int cVideo::getBlank(void)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#if BOXMODEL_VUSOLO4K || BOXMODEL_VUDUO4K || BOXMODEL_VUDUO4KSE || BOXMODEL_VUULTIMO4K || BOXMODEL_VUUNO4KSE || BOXMODEL_VUUNO4K
|
|
||||||
void cVideo::QuadPiP(bool active, int _x, int _y, int _w, int _h)
|
void cVideo::QuadPiP(bool active, int _x, int _y, int _w, int _h)
|
||||||
{
|
{
|
||||||
char buffer[64];
|
char buffer[64];
|
||||||
int _a = 1;
|
int _a = 1;
|
||||||
if (active) {
|
if (active) {
|
||||||
|
#if BOXMODEL_VUSOLO4K || BOXMODEL_VUDUO4K || BOXMODEL_VUDUO4KSE || BOXMODEL_VUULTIMO4K || BOXMODEL_VUUNO4KSE || BOXMODEL_VUUNO4K
|
||||||
proc_put("/proc/stb/video/decodermode", "mosaic", strlen("mosaic"));
|
proc_put("/proc/stb/video/decodermode", "mosaic", strlen("mosaic"));
|
||||||
|
#endif
|
||||||
for (unsigned int i = 0; i < 4; i++) {
|
for (unsigned int i = 0; i < 4; i++) {
|
||||||
sprintf(buffer, "%x", _x);
|
sprintf(buffer, "%x", _x);
|
||||||
proc_put(VMPEG_dst_left[i], buffer, strlen(buffer));
|
proc_put(VMPEG_dst_left[i], buffer, strlen(buffer));
|
||||||
@@ -931,10 +930,11 @@ void cVideo::QuadPiP(bool active, int _x, int _y, int _w, int _h)
|
|||||||
sprintf(buffer, "%x", _a);
|
sprintf(buffer, "%x", _a);
|
||||||
proc_put(VMPEG_dst_apply[i], buffer, strlen(buffer));
|
proc_put(VMPEG_dst_apply[i], buffer, strlen(buffer));
|
||||||
}
|
}
|
||||||
|
#if BOXMODEL_VUSOLO4K || BOXMODEL_VUDUO4K || BOXMODEL_VUDUO4KSE || BOXMODEL_VUULTIMO4K || BOXMODEL_VUUNO4KSE || BOXMODEL_VUUNO4K
|
||||||
proc_put("/proc/stb/video/decodermode", "normal", strlen("normal"));
|
proc_put("/proc/stb/video/decodermode", "normal", strlen("normal"));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
void cVideo::ShowPig(int _x)
|
void cVideo::ShowPig(int _x)
|
||||||
{
|
{
|
||||||
@@ -989,6 +989,9 @@ void cVideo::Pig(int x, int y, int w, int h, int osd_w, int osd_h, int startx, i
|
|||||||
|
|
||||||
sprintf(buffer, "%x", _h);
|
sprintf(buffer, "%x", _h);
|
||||||
proc_put(VMPEG_dst_height[devnum], buffer, strlen(buffer));
|
proc_put(VMPEG_dst_height[devnum], buffer, strlen(buffer));
|
||||||
|
|
||||||
|
sprintf(buffer, "%x", 1);
|
||||||
|
proc_put(VMPEG_dst_apply[i], buffer, strlen(buffer));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int rate2csapi(int rate)
|
static inline int rate2csapi(int rate)
|
||||||
|
@@ -273,11 +273,7 @@ class cVideo
|
|||||||
void SetControl(int, int);
|
void SetControl(int, int);
|
||||||
void setContrast(int val);
|
void setContrast(int val);
|
||||||
void SetVideoMode(analog_mode_t mode);
|
void SetVideoMode(analog_mode_t mode);
|
||||||
|
|
||||||
#if BOXMODEL_VUSOLO4K || BOXMODEL_VUDUO4K || BOXMODEL_VUDUO4KSE || BOXMODEL_VUULTIMO4K || BOXMODEL_VUUNO4KSE || BOXMODEL_VUUNO4K
|
|
||||||
void QuadPiP(bool active = false, int _x = 0, int _y = 0, int _w = 360, int _h = 288);
|
void QuadPiP(bool active = false, int _x = 0, int _y = 0, int _w = 360, int _h = 288);
|
||||||
#endif
|
|
||||||
|
|
||||||
void SetDBDR(int)
|
void SetDBDR(int)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user