From a992b1541747bc8cc20eab9baed41d3df1646fb8 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sat, 14 Apr 2012 10:56:36 +0200 Subject: [PATCH] spark: add 1080p50 videomode (needs neutrino fix) Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/75a4d2843bfb1e536ba3f600fd8ab6a09a76352e Author: Stefan Seyfried Date: 2012-04-14 (Sat, 14 Apr 2012) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- libspark/video.cpp | 3 ++- libspark/video_lib.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/libspark/video.cpp b/libspark/video.cpp index 6ec916e..4f1ac96 100644 --- a/libspark/video.cpp +++ b/libspark/video.cpp @@ -303,7 +303,8 @@ int cVideo::SetVideoSystem(int video_system, bool remember) "1080p30", // VIDEO_STD_1080P30 "1080p24", // VIDEO_STD_1080P24 "1080p25", // VIDEO_STD_1080P25 - "1080p50" // VIDEO_STD_1080P50 + "720p50", // VIDEO_STD_AUTO -> not implemented + "1080p50" // VIDEO_STD_1080P50 -> SPARK only }; if (video_system > VIDEO_STD_MAX) diff --git a/libspark/video_lib.h b/libspark/video_lib.h index 3636843..cd088f0 100644 --- a/libspark/video_lib.h +++ b/libspark/video_lib.h @@ -89,7 +89,8 @@ typedef enum { VIDEO_STD_1080P24, VIDEO_STD_1080P25, VIDEO_STD_AUTO, - VIDEO_STD_MAX = VIDEO_STD_AUTO + VIDEO_STD_1080P50, /* SPARK only */ + VIDEO_STD_MAX = VIDEO_STD_1080P50 } VIDEO_STD; /* not used, for dummy functions */