]> git.sesse.net Git - bmusb/commitdiff
Yet more 1080p mode corrections.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 21 Feb 2017 17:28:53 +0000 (18:28 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 21 Feb 2017 17:28:53 +0000 (18:28 +0100)
bmusb.cpp

index 4d524422f944d4a8957a1046e4489a997a571f46..3d090d746d44effbdf25fc2ee75f528f3c4e919f 100644 (file)
--- a/bmusb.cpp
+++ b/bmusb.cpp
@@ -179,14 +179,14 @@ bool decode_video_format(uint16_t video_format, VideoFormat *decoded_video_forma
                { 0x0103, 1280,  720,   0, 25,  5,    60,    1, false },  // 720p60.
                { 0x0125, 1280,  720,   0, 25,  5,    60,    1, false },  // 720p60.
                { 0x0121, 1280,  720,   0, 25,  5, 60000, 1001, false },  // 720p59.94.
-               { 0x01c3, 1920, 1080,   0, 20, 25,    30,    1, false },  // 1080p30.
+               { 0x01c3, 1920, 1080,   0, 41,  4,    30,    1, false },  // 1080p30.
                { 0x0003, 1920, 1080, 583, 20, 25,    30,    1,  true },  // 1080i60.
-               { 0x01e1, 1920, 1080,   0, 20, 25, 30000, 1001, false },  // 1080p29.97.
+               { 0x01e1, 1920, 1080,   0, 41,  4, 30000, 1001, false },  // 1080p29.97.
                { 0x0021, 1920, 1080, 583, 20, 25, 30000, 1001,  true },  // 1080i59.94.
-               { 0x0063, 1920, 1080,   0, 20, 25,    25,    1, false },  // 1080p25.
+               { 0x0063, 1920, 1080,   0, 41,  4,    25,    1, false },  // 1080p25.
                { 0x0043, 1920, 1080, 583, 20, 25,    25,    1,  true },  // 1080i50.
-               { 0x0083, 1920, 1080,   0, 20, 25,    24,    1, false },  // 1080p24.
-               { 0x00a1, 1920, 1080,   0, 20, 25, 24000, 1001, false },  // 1080p23.98.
+               { 0x0083, 1920, 1080,   0, 41,  4,    24,    1, false },  // 1080p24.
+               { 0x00a1, 1920, 1080,   0, 41,  4, 24000, 1001, false },  // 1080p23.98.
        };
        for (const VideoFormatEntry &entry : entries) {
                if (normalized_video_format == entry.normalized_video_format) {