From 734bcc44fe4cfb20097dc8cc3ec06db19999a153 Mon Sep 17 00:00:00 2001 From: "[CST] Bas" Date: Wed, 9 Apr 2014 12:39:34 +0200 Subject: [PATCH] settings: implement 23.97hz and 29.97hz video modes. Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/e68a0c28f1f2e1b7642d1d02ce0a813101bcc173 Author: [CST] Bas Date: 2014-04-09 (Wed, 09 Apr 2014) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/videosettings.cpp | 4 +++- src/system/settings.h | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/gui/videosettings.cpp b/src/gui/videosettings.cpp index 7be331eba..67b17e33b 100644 --- a/src/gui/videosettings.cpp +++ b/src/gui/videosettings.cpp @@ -202,7 +202,9 @@ CMenuOptionChooser::keyval_ext VIDEOMENU_VIDEOMODE_OPTIONS[VIDEOMENU_VIDEOMODE_O { VIDEO_STD_720P60, NONEXISTANT_LOCALE, "720p 60Hz" }, { VIDEO_STD_1080I60, NONEXISTANT_LOCALE, "1080i 60Hz" }, #ifdef BOXMODEL_APOLLO - { VIDEO_STD_1080P60, NONEXISTANT_LOCALE, "1080p 60Hz" }, + { VIDEO_STD_1080P60, NONEXISTANT_LOCALE, "1080p 60Hz" }, + { VIDEO_STD_1080P2397, NONEXISTANT_LOCALE, "1080p 23.97Hz"}, + { VIDEO_STD_1080P2997, NONEXISTANT_LOCALE, "1080p 29.97Hz"}, #endif { VIDEO_STD_AUTO, NONEXISTANT_LOCALE, "Auto" } }; diff --git a/src/system/settings.h b/src/system/settings.h index 663093fc9..f16fcfaee 100644 --- a/src/system/settings.h +++ b/src/system/settings.h @@ -42,7 +42,7 @@ #include #ifdef BOXMODEL_APOLLO -#define VIDEOMENU_VIDEOMODE_OPTION_COUNT 14 +#define VIDEOMENU_VIDEOMODE_OPTION_COUNT 16 #else #define VIDEOMENU_VIDEOMODE_OPTION_COUNT 12 #endif