ci "extra_high" for vuplus

This commit is contained in:
BPanther
2020-01-17 09:36:54 +01:00
committed by Thilo Graf
parent 32361d734e
commit a76f914d9b
2 changed files with 9 additions and 10 deletions

View File

@@ -1906,7 +1906,7 @@ void cCA::setCheckLiveSlot(int check)
checkLiveSlot = false; checkLiveSlot = false;
} }
void cCA::SetTSClock(u32 Speed) void cCA::SetTSClock(u32 Speed, int slot)
{ {
/* TODO: /* TODO:
* For now using the coolstream values from neutrino cam_menu * For now using the coolstream values from neutrino cam_menu
@@ -1919,19 +1919,18 @@ void cCA::SetTSClock(u32 Speed)
* On the other hand: or ci_clock will be set here for all ci slots ???? * On the other hand: or ci_clock will be set here for all ci slots ????
*/ */
char buf[64]; char buf[64];
snprintf(buf, 64, "/proc/stb/tsmux/ci%d_tsclk", 0); snprintf(buf, 64, "/proc/stb/tsmux/ci%d_tsclk", slot);
FILE *ci = fopen(buf, "wb"); FILE *ci = fopen(buf, "wb");
printf("%s -> %s to: %s\n", FILENAME, __func__, Speed > 6 * 1000000 ? "high" : "normal"); printf("%s -> %s to: %s\n", FILENAME, __func__, Speed > 9 * 1000000 ? "extra_high" : Speed > 6 * 1000000 ? "high" : "normal");
if (ci) if (ci)
{ {
if (Speed > 6 * 1000000) if (Speed > 9 * 1000000)
{ fprintf(ci, "extra_high");
fprintf(ci, "high"); else
} if (Speed > 6 * 1000000)
fprintf(ci, "high");
else else
{
fprintf(ci, "normal"); fprintf(ci, "normal");
}
fclose(ci); fclose(ci);
} }
} }

View File

@@ -327,7 +327,7 @@ public:
void SetInitMask(enum CA_INIT_MASK InitMask); void SetInitMask(enum CA_INIT_MASK InitMask);
/// Sets the frequency (in Hz) of the TS stream input (only valid for CI) /// Sets the frequency (in Hz) of the TS stream input (only valid for CI)
/// sh4 unused /// sh4 unused
void SetTSClock(u32 Speed); void SetTSClock(u32 Speed, int slot = 0);
/// Start the CA module /// Start the CA module
/// sh4 unused /// sh4 unused
bool Start(void); bool Start(void);