Clarify RGB Level Setting

This commit is contained in:
jojo61 2024-10-17 13:12:22 +02:00
parent e3fe68d7e6
commit 2c8e75e3ff
2 changed files with 4 additions and 4 deletions

View File

@ -251,8 +251,8 @@ Setup: /etc/vdr/setup.conf
(Red * 65536 + Green * 256 + Blue)
softhddevice.StudioLevels = 0
0 use studio levels (16-235) with vdpau.
1 use PC levels (0-255) with vdpau.
0 use limited RGB (16-235) with vdpau.
1 use full RGB (0-255) with vdpau.
softhddevice.Suspend.Close = 0
1 suspend closes x11 window, connection and audio device.

View File

@ -61,7 +61,7 @@ extern void ToggleLUT();
/// vdr-plugin version number.
/// Makefile extracts the version number for generating the file name
/// for the distribution archive.
static const char *const VERSION = "3.26"
static const char *const VERSION = "3.27"
#ifdef GIT_REV
"-GIT" GIT_REV
#endif
@ -1226,7 +1226,7 @@ void cMenuSetupSoft::Create(void) {
Add(new cMenuEditIntItem(tr("Video background color (Alpha)"), (int *)&BackgroundAlpha, 0, 0xFF));
#endif
#ifdef PLACEBO
Add(new cMenuEditBoolItem(tr("Use studio levels"), &StudioLevels, trVDR("no"), trVDR("yes")));
Add(new cMenuEditBoolItem(tr("RGB Level"), &StudioLevels, trVDR("limited RGB"), trVDR("Full RGB")));
#endif
Add(new cMenuEditBoolItem(tr("60hz display mode"), &_60HzMode, trVDR("no"), trVDR("yes")));
Add(new cMenuEditBoolItem(tr("Soft start a/v sync"), &SoftStartSync, trVDR("no"), trVDR("yes")));