From 2a06d276da04a363f0a7d4043b319229b0a5fd7f Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Wed, 23 Dec 2015 14:32:13 +0100 Subject: [PATCH] Correct 1080i second field offset. --- bmusb.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bmusb.cpp b/bmusb.cpp index ddecb04..fc38520 100644 --- a/bmusb.cpp +++ b/bmusb.cpp @@ -1187,9 +1187,9 @@ bool decode_video_format(uint16_t video_format, unsigned *width, unsigned *heigh { 0x0103, 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. - { 0x0003, 1920, 1080, 582, 20, 25, 30, 1, true }, // 1080i60. + { 0x0003, 1920, 1080, 583, 20, 25, 30, 1, true }, // 1080i60. { 0x01e1, 1920, 1080, 0, 0, 0, 30000, 1001, false }, // 1080p29.97. - { 0x0021, 1920, 1080, 582, 20, 25, 30000, 1001, true }, // 1080i59.94. + { 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. -- 2.39.2