From: Steinar H. Gunderson Date: Tue, 21 Feb 2017 17:28:53 +0000 (+0100) Subject: Yet more 1080p mode corrections. X-Git-Tag: 0.6.0~3 X-Git-Url: https://git.sesse.net/?p=bmusb;a=commitdiff_plain;h=f31dfa719b78c2f6d4710422f9ba6d66e7c70da3 Yet more 1080p mode corrections. --- diff --git a/bmusb.cpp b/bmusb.cpp index 4d52442..3d090d7 100644 --- 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) {