]> git.sesse.net Git - bmusb/commitdiff
Fix (sort of) the dimensions for mode 0x0800.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 17 Nov 2015 00:25:11 +0000 (01:25 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 17 Nov 2015 00:25:11 +0000 (01:25 +0100)
bmusb.cpp

index 9c0d1d1a926af198d5389aa6d56fbef0b8e3e650..990a8ee280dcb7db944d0e023836fbaeb3e1a7b0 100644 (file)
--- 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;