From ec10aedf720f2356035255999827beb4158aa4a2 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Tue, 17 Nov 2015 01:25:11 +0100 Subject: [PATCH] Fix (sort of) the dimensions for mode 0x0800. --- bmusb.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bmusb.cpp b/bmusb.cpp index 9c0d1d1..990a8ee 100644 --- a/bmusb.cpp +++ b/bmusb.cpp @@ -1117,9 +1117,8 @@ bool decode_video_format(uint16_t video_format, int *width, int *height, int *fr if (video_format == 0x0800) { // No video signal. These green pseudo-frames seem to come at about 30.13 Hz. // It's a strange thing, but what can you do. - // FIXME: find the dimensions. *width = 720; - *height = 576; + *height = 525; *frame_rate_nom = 3013; *frame_rate_den = 100; return true; -- 2.39.2