]> git.sesse.net Git - bmusb/blobdiff - bmusb.cpp
Release v0.5.4.
[bmusb] / bmusb.cpp
index 9decbc9664d5c6931e94e4bd32a486ccdd0b941d..de895d9240a858243f532c6a52ae03d59649b3d4 100644 (file)
--- a/bmusb.cpp
+++ b/bmusb.cpp
@@ -1,4 +1,4 @@
-// Intensity Shuttle USB3 capture driver, v0.5.2
+// Intensity Shuttle USB3 capture driver, v0.5.4
 // Can download 8-bit and 10-bit UYVY/v210 frames from HDMI, quite stable
 // (can do captures for hours at a time with no drops), except during startup
 // 576p60/720p60/1080i60 works, 1080p60 does not work (firmware limitation)
@@ -174,14 +174,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,  0,  0,    30,    1, false },  // 1080p30.
+               { 0x01c3, 1920, 1080,   0, 20, 25,    30,    1, false },  // 1080p30.
                { 0x0003, 1920, 1080, 583, 20, 25,    30,    1,  true },  // 1080i60.
-               { 0x01e1, 1920, 1080,   0,  0,  0, 30000, 1001, false },  // 1080p29.97.
+               { 0x01e1, 1920, 1080,   0, 20, 25, 30000, 1001, false },  // 1080p29.97.
                { 0x0021, 1920, 1080, 583, 20, 25, 30000, 1001,  true },  // 1080i59.94.
-               { 0x0063, 1920, 1080,   0,  0,  0,    25,    1, false },  // 1080p25.
-               { 0x0043, 1920, 1080,   0,  0,  0,    25,    1,  true },  // 1080p50.
-               { 0x008e, 1920, 1080,   0,  0,  0,    24,    1, false },  // 1080p24.
-               { 0x00a1, 1920, 1080,   0,  0,  0, 24000, 1001, false },  // 1080p23.98.
+               { 0x0063, 1920, 1080,   0, 20, 25,    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.
        };
        for (const VideoFormatEntry &entry : entries) {
                if (normalized_video_format == entry.normalized_video_format) {