diff options
author | Johns <johns98@gmx.net> | 2012-06-29 15:23:17 +0200 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-06-29 15:23:17 +0200 |
commit | 73d65968aeb78a31ba793923ce849ab5651e6e49 (patch) | |
tree | 977024de60af0fd4b501bdd8992ed10975f47711 | |
parent | 3be69730f01577a8470183e64036def44e5784cb (diff) | |
download | vdr-plugin-softhddevice-73d65968aeb78a31ba793923ce849ab5651e6e49.tar.gz vdr-plugin-softhddevice-73d65968aeb78a31ba793923ce849ab5651e6e49.tar.bz2 |
Remove video display format until it is working.
-rw-r--r-- | softhddevice.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/softhddevice.cpp b/softhddevice.cpp index 39c923d..09396be 100644 --- a/softhddevice.cpp +++ b/softhddevice.cpp @@ -580,12 +580,14 @@ void cMenuSetupSoft::Create(void) static const char *const osd_size[] = { "auto", "1920x1080", "1280x720", "custom", }; +#if 0 static const char *const video_display_formats_4_3[] = { "pan&scan", "letterbox", "center cut-out", }; static const char *const video_display_formats_16_9[] = { "pan&scan", "pillarbox", "center cut-out", }; +#endif static const char *const deinterlace[] = { "Bob", "Weave/None", "Temporal", "TemporalSpatial", "Software Bob", "Software Spatial", @@ -649,6 +651,7 @@ void cMenuSetupSoft::Create(void) // Add(CollapsedItem(tr("Video"), Video)); if (Video) { +#if 0 // disabled, not working as expected Add(new cMenuEditBoolItem(trVDR("Setup.DVB$Video format"), &VideoFormat, "4:3", "16:9")); if (VideoFormat) { @@ -658,6 +661,7 @@ void cMenuSetupSoft::Create(void) Add(new cMenuEditStraItem(trVDR("Setup.DVB$Video display format"), &VideoDisplayFormat, 3, video_display_formats_4_3)); } +#endif // FIXME: switch config gray/color configuration Add(new cMenuEditIntItem(tr("Video background color (RGB)"), |