1 Commits
V3.27 ... V3.26

Author SHA1 Message Date
jojo61
6805c4974c Cleanup Compiler Warnings 2024-10-15 09:51:27 +02:00
3 changed files with 6 additions and 6 deletions

View File

@@ -113,8 +113,8 @@ TMPDIR ?= /tmp
### The compiler options:
export CFLAGS = $(call PKGCFG,cflags) -fpermissive
export CXXFLAGS = $(call PKGCFG,cxxflags) -fpermissive
export CFLAGS = $(call PKGCFG,cflags)
export CXXFLAGS = $(call PKGCFG,cxxflags)
ifeq ($(CFLAGS),)
$(warning CFLAGS not set)

View File

@@ -251,8 +251,8 @@ Setup: /etc/vdr/setup.conf
(Red * 65536 + Green * 256 + Blue)
softhddevice.StudioLevels = 0
0 use limited RGB (16-235) with vdpau.
1 use full RGB (0-255) with vdpau.
0 use PC levels (0-255) with vdpau.
1 use studio levels (16-235) 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.27"
static const char *const VERSION = "3.26"
#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("RGB Level"), &StudioLevels, trVDR("limited RGB"), trVDR("Full RGB")));
Add(new cMenuEditBoolItem(tr("Use studio levels"), &StudioLevels, trVDR("no"), trVDR("yes")));
#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")));