From 3de5c65cd45ca5de25da4e91d46a890964598e23 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Tue, 1 Dec 2020 22:07:08 +0100 Subject: [PATCH] arm-hardware: set default video mode to 1080p50 Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/8b82e77c9222e2379cbd20117dcb3ac575c389c4 Author: vanhofen Date: 2020-12-01 (Tue, 01 Dec 2020) Origin message was: ------------------ - arm-hardware: set default video mode to 1080p50 ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/neutrino.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 43b660780..7ffcbc926 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -401,6 +401,9 @@ int CNeutrinoApp::loadSetup(const char * fname) // video int vid_Mode_default = VIDEO_STD_720P50; +#if HAVE_ARM_HARDWARE + vid_Mode_default = VIDEO_STD_1080P50; +#endif if (getenv("NEUTRINO_DEFAULT_SCART") != NULL) vid_Mode_default = VIDEO_STD_PAL;