X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=bmusb.cpp;h=cd4e59c4302b5d6cdba09080cd4b36c7337e7c2a;hb=d51fd416b5c2784b03ae50bda59cd01a881bf7df;hp=3aac81e5e34e5de7459585630635eab8a460d25a;hpb=653fb04b1f7fd18a3361524aeb4877efca032cdb;p=bmusb diff --git a/bmusb.cpp b/bmusb.cpp index 3aac81e..cd4e59c 100644 --- a/bmusb.cpp +++ b/bmusb.cpp @@ -1,22 +1,27 @@ -// Intensity Shuttle USB3 prototype capture driver, v0.3 +// Intensity Shuttle USB3 capture driver, v0.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) // Audio comes out as 8-channel 24-bit raw audio. +#if (defined(__i386__) || defined(__x86_64__)) && defined(__GNUC__) +#define HAS_MULTIVERSIONING 1 +#endif + #include #include #include +#include #include #include #include #include #include #include -#ifdef __SSE4_1__ +#if HAS_MULTIVERSIONING #include #endif -#include "bmusb.h" +#include "bmusb/bmusb.h" #include #include @@ -34,6 +39,7 @@ using namespace std; using namespace std::placeholders; +#define USB_VENDOR_BLACKMAGIC 0x1edb #define MIN_WIDTH 640 #define HEADER_SIZE 44 //#define HEADER_SIZE 0 @@ -42,6 +48,11 @@ using namespace std::placeholders; #define FRAME_SIZE (8 << 20) // 8 MB. #define USB_VIDEO_TRANSFER_SIZE (128 << 10) // 128 kB. +namespace bmusb { + +card_connected_callback_t BMUSBCapture::card_connected_callback = nullptr; +bool BMUSBCapture::hotplug_existing_devices = false; + namespace { FILE *audiofp; @@ -76,6 +87,122 @@ void change_xfer_size_for_width(int width, libusb_transfer *xfr) } } +struct VideoFormatEntry { + uint16_t normalized_video_format; + unsigned width, height, second_field_start; + unsigned extra_lines_top, extra_lines_bottom; + unsigned frame_rate_nom, frame_rate_den; + bool interlaced; +}; + +// Get details for the given video format; returns false if detection was incomplete. +bool decode_video_format(uint16_t video_format, VideoFormat *decoded_video_format) +{ + decoded_video_format->id = video_format; + decoded_video_format->interlaced = false; + + // TODO: Add these for all formats as we find them. + decoded_video_format->extra_lines_top = decoded_video_format->extra_lines_bottom = decoded_video_format->second_field_start = 0; + + 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. + decoded_video_format->width = 720; + decoded_video_format->height = 525; + decoded_video_format->extra_lines_top = 0; + decoded_video_format->extra_lines_bottom = 0; + decoded_video_format->frame_rate_nom = 3013; + decoded_video_format->frame_rate_den = 100; + decoded_video_format->has_signal = false; + return true; + } + if ((video_format & 0xe800) != 0xe800) { + printf("Video format 0x%04x does not appear to be a video format. Assuming 60 Hz.\n", + video_format); + decoded_video_format->width = 0; + decoded_video_format->height = 0; + decoded_video_format->extra_lines_top = 0; + decoded_video_format->extra_lines_bottom = 0; + decoded_video_format->frame_rate_nom = 60; + decoded_video_format->frame_rate_den = 1; + decoded_video_format->has_signal = false; + return false; + } + + decoded_video_format->has_signal = true; + + // NTSC (480i59.94, I suppose). A special case, see below. + if (video_format == 0xe901 || video_format == 0xe9c1 || video_format == 0xe801) { + decoded_video_format->width = 720; + decoded_video_format->height = 480; + decoded_video_format->extra_lines_top = 17; + decoded_video_format->extra_lines_bottom = 28; + decoded_video_format->frame_rate_nom = 30000; + decoded_video_format->frame_rate_den = 1001; + decoded_video_format->second_field_start = 280; + decoded_video_format->interlaced = true; + return true; + } + + // PAL (576i50, I suppose). A special case, see below. + if (video_format == 0xe909 || video_format == 0xe9c9 || video_format == 0xe809 || video_format == 0xebe9 || video_format == 0xebe1) { + decoded_video_format->width = 720; + decoded_video_format->height = 576; + decoded_video_format->extra_lines_top = 22; + decoded_video_format->extra_lines_bottom = 27; + decoded_video_format->frame_rate_nom = 25; + decoded_video_format->frame_rate_den = 1; + decoded_video_format->second_field_start = 335; + decoded_video_format->interlaced = true; + return true; + } + + // 0x8 seems to be a flag about availability of deep color on the input, + // except when it's not (e.g. it's the only difference between NTSC + // and PAL). Rather confusing. But we clear it here nevertheless, because + // usually it doesn't mean anything. + // + // 0x4 is a flag I've only seen from the D4. I don't know what it is. + uint16_t normalized_video_format = video_format & ~0xe80c; + constexpr VideoFormatEntry entries[] = { + { 0x01f1, 720, 480, 0, 40, 5, 60000, 1001, false }, // 480p59.94 (believed). + { 0x0131, 720, 576, 0, 44, 5, 50, 1, false }, // 576p50. + { 0x0011, 720, 576, 0, 44, 5, 50, 1, false }, // 576p50 (5:4). + { 0x0143, 1280, 720, 0, 25, 5, 50, 1, false }, // 720p50. + { 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. + { 0x0003, 1920, 1080, 583, 20, 25, 30, 1, true }, // 1080i60. + { 0x01e1, 1920, 1080, 0, 0, 0, 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. + }; + for (const VideoFormatEntry &entry : entries) { + if (normalized_video_format == entry.normalized_video_format) { + decoded_video_format->width = entry.width; + decoded_video_format->height = entry.height; + decoded_video_format->second_field_start = entry.second_field_start; + decoded_video_format->extra_lines_top = entry.extra_lines_top; + decoded_video_format->extra_lines_bottom = entry.extra_lines_bottom; + decoded_video_format->frame_rate_nom = entry.frame_rate_nom; + decoded_video_format->frame_rate_den = entry.frame_rate_den; + decoded_video_format->interlaced = entry.interlaced; + return true; + } + } + + printf("Unknown video format 0x%04x (normalized 0x%04x). Assuming 720p60.\n", video_format, normalized_video_format); + decoded_video_format->width = 1280; + decoded_video_format->height = 720; + decoded_video_format->frame_rate_nom = 60; + decoded_video_format->frame_rate_den = 1; + return false; +} + } // namespace FrameAllocator::~FrameAllocator() {} @@ -356,8 +483,6 @@ void add_to_frame(FrameAllocator::Frame *current_frame, const char *frame_type_n } } -#ifdef __SSE4_1__ - #if 0 void avx2_dump(const char *name, __m256i n) { @@ -401,6 +526,18 @@ void avx2_dump(const char *name, __m256i n) } #endif +#ifndef HAS_MULTIVERSIONING + +const uint8_t *add_to_frame_fastpath(FrameAllocator::Frame *current_frame, const uint8_t *start, const uint8_t *limit, const char sync_char) +{ + // No fast path possible unless we have multiversioning. + return start; +} + +#else // defined(HAS_MULTIVERSIONING) + +const uint8_t *add_to_frame_fastpath_core(FrameAllocator::Frame *current_frame, const uint8_t *aligned_start, const uint8_t *limit, const char sync_char); + // Does a memcpy and memchr in one to reduce processing time. // Note that the benefit is somewhat limited if your L3 cache is small, // as you'll (unfortunately) spend most of the time loading the data @@ -410,6 +547,14 @@ void avx2_dump(const char *name, __m256i n) // up until the first instance of "sync_char" (usually a bit before, actually). // This is fine, since 0x00 bytes shouldn't really show up in normal picture // data, and what we really need this for is the 00 00 ff ff marker in video data. +__attribute__((target("default"))) +const uint8_t *add_to_frame_fastpath(FrameAllocator::Frame *current_frame, const uint8_t *start, const uint8_t *limit, const char sync_char) +{ + // No fast path possible unless we have SSE 4.1 or higher. + return start; +} + +__attribute__((target("sse4.1", "avx2"))) const uint8_t *add_to_frame_fastpath(FrameAllocator::Frame *current_frame, const uint8_t *start, const uint8_t *limit, const char sync_char) { if (current_frame->data == nullptr || @@ -453,7 +598,12 @@ const uint8_t *add_to_frame_fastpath(FrameAllocator::Frame *current_frame, const assert(((limit - aligned_start) % 64) == 0); } -#if __AVX2__ + return add_to_frame_fastpath_core(current_frame, aligned_start, limit, sync_char); +} + +__attribute__((target("avx2"))) +const uint8_t *add_to_frame_fastpath_core(FrameAllocator::Frame *current_frame, const uint8_t *aligned_start, const uint8_t *limit, const char sync_char) +{ const __m256i needle = _mm256_set1_epi8(sync_char); const __restrict __m256i *in = (const __m256i *)aligned_start; @@ -512,7 +662,14 @@ const uint8_t *add_to_frame_fastpath(FrameAllocator::Frame *current_frame, const } current_frame->len = (uint8_t *)out - current_frame->data; } -#else + + //printf("managed to fastpath %ld/%ld bytes\n", (const uint8_t *)in - (const uint8_t *)aligned_start, orig_bytes); + return (const uint8_t *)in; +} + +__attribute__((target("sse4.1"))) +const uint8_t *add_to_frame_fastpath_core(FrameAllocator::Frame *current_frame, const uint8_t *aligned_start, const uint8_t *limit, const char sync_char) +{ const __m128i needle = _mm_set1_epi8(sync_char); const __m128i *in = (const __m128i *)aligned_start; @@ -562,13 +719,12 @@ const uint8_t *add_to_frame_fastpath(FrameAllocator::Frame *current_frame, const } current_frame->len = (uint8_t *)out - current_frame->data; } -#endif //printf("managed to fastpath %ld/%ld bytes\n", (const uint8_t *)in - (const uint8_t *)aligned_start, orig_bytes); - return (const uint8_t *)in; } -#endif + +#endif // defined(HAS_MULTIVERSIONING) void decode_packs(const libusb_transfer *xfr, const char *sync_pattern, @@ -590,11 +746,9 @@ void decode_packs(const libusb_transfer *xfr, const uint8_t *start = xfr->buffer + offset; const uint8_t *limit = start + pack->actual_length; while (start < limit) { // Usually runs only one iteration. -#ifdef __SSE4_1__ start = add_to_frame_fastpath(current_frame, start, limit, sync_pattern[0]); if (start == limit) break; assert(start < limit); -#endif const unsigned char* start_next_frame = (const unsigned char *)memmem(start, limit - start, sync_pattern, sync_length); if (start_next_frame == nullptr) { @@ -616,8 +770,9 @@ void decode_packs(const libusb_transfer *xfr, void BMUSBCapture::cb_xfr(struct libusb_transfer *xfr) { - if (xfr->status != LIBUSB_TRANSFER_COMPLETED) { - fprintf(stderr, "transfer status %d\n", xfr->status); + if (xfr->status != LIBUSB_TRANSFER_COMPLETED && + xfr->status != LIBUSB_TRANSFER_NO_DEVICE) { + fprintf(stderr, "error: transfer status %d\n", xfr->status); libusb_free_transfer(xfr); exit(3); } @@ -625,6 +780,18 @@ void BMUSBCapture::cb_xfr(struct libusb_transfer *xfr) assert(xfr->user_data != nullptr); BMUSBCapture *usb = static_cast(xfr->user_data); + if (xfr->status == LIBUSB_TRANSFER_NO_DEVICE) { + if (!usb->disconnected) { + fprintf(stderr, "Device went away, stopping transfers.\n"); + usb->disconnected = true; + if (usb->card_disconnected_callback) { + usb->card_disconnected_callback(); + } + } + // Don't reschedule the transfer; the loop will stop by itself. + return; + } + if (xfr->type == LIBUSB_TRANSFER_TYPE_ISOCHRONOUS) { if (xfr->endpoint == 0x84) { decode_packs(xfr, "DeckLinkAudioResyncT", 20, &usb->current_audio_frame, "audio", bind(&BMUSBCapture::start_new_audio_block, usb, _1)); @@ -682,6 +849,26 @@ void BMUSBCapture::cb_xfr(struct libusb_transfer *xfr) } } +int BMUSBCapture::cb_hotplug(libusb_context *ctx, libusb_device *dev, libusb_hotplug_event event, void *user_data) +{ + if (card_connected_callback != nullptr) { + libusb_device_descriptor desc; + if (libusb_get_device_descriptor(dev, &desc) < 0) { + fprintf(stderr, "Error getting device descriptor for hotplugged device %p, killing hotplug\n", dev); + libusb_unref_device(dev); + return 1; + } + + if ((desc.idVendor == USB_VENDOR_BLACKMAGIC && desc.idProduct == 0xbd3b) || + (desc.idVendor == USB_VENDOR_BLACKMAGIC && desc.idProduct == 0xbd4f)) { + card_connected_callback(dev); // Callback takes ownership. + return 0; + } + } + libusb_unref_device(dev); + return 0; +} + void BMUSBCapture::usb_thread_func() { sched_param param; @@ -691,20 +878,45 @@ void BMUSBCapture::usb_thread_func() printf("couldn't set realtime priority for USB thread: %s\n", strerror(errno)); } while (!should_quit) { - int rc = libusb_handle_events(nullptr); + timeval sec { 1, 0 }; + int rc = libusb_handle_events_timeout(nullptr, &sec); if (rc != LIBUSB_SUCCESS) break; } } +namespace { + struct USBCardDevice { uint16_t product; uint8_t bus, port; libusb_device *device; }; -libusb_device_handle *open_card(int card_index, string *description) -{ +const char *get_product_name(uint16_t product) +{ + if (product == 0xbd3b) { + return "Intensity Shuttle"; + } else if (product == 0xbd4f) { + return "UltraStudio SDI"; + } else { + assert(false); + return nullptr; + } +} + +string get_card_description(int id, uint8_t bus, uint8_t port, uint16_t product) +{ + const char *product_name = get_product_name(product); + + char buf[256]; + snprintf(buf, sizeof(buf), "USB card %d: Bus %03u Device %03u %s", + id, bus, port, product_name); + return buf; +} + +vector find_all_cards() +{ libusb_device **devices; ssize_t num_devices = libusb_get_device_list(nullptr, &devices); if (num_devices == -1) { @@ -722,8 +934,8 @@ libusb_device_handle *open_card(int card_index, string *description) uint8_t bus = libusb_get_bus_number(devices[i]); uint8_t port = libusb_get_port_number(devices[i]); - if (!(desc.idVendor == 0x1edb && desc.idProduct == 0xbd3b) && - !(desc.idVendor == 0x1edb && desc.idProduct == 0xbd4f)) { + if (!(desc.idVendor == USB_VENDOR_BLACKMAGIC && desc.idProduct == 0xbd3b) && + !(desc.idVendor == USB_VENDOR_BLACKMAGIC && desc.idProduct == 0xbd4f)) { libusb_unref_device(devices[i]); continue; } @@ -741,23 +953,19 @@ libusb_device_handle *open_card(int card_index, string *description) return a.port < b.port; }); - for (size_t i = 0; i < found_cards.size(); ++i) { - const char *product_name = nullptr; - if (found_cards[i].product == 0xbd3b) { - product_name = "Intensity Shuttle"; - } else if (found_cards[i].product == 0xbd4f) { - product_name = "UltraStudio SDI"; - } else { - assert(false); - } + return found_cards; +} - char buf[256]; - snprintf(buf, sizeof(buf), "USB card %d: Bus %03u Device %03u %s", - int(i), found_cards[i].bus, found_cards[i].port, product_name); +libusb_device_handle *open_card(int card_index, string *description) +{ + vector found_cards = find_all_cards(); + + for (size_t i = 0; i < found_cards.size(); ++i) { + string tmp_description = get_card_description(i, found_cards[i].bus, found_cards[i].port, found_cards[i].product); + fprintf(stderr, "%s\n", tmp_description.c_str()); if (i == size_t(card_index)) { - *description = buf; + *description = tmp_description; } - fprintf(stderr, "%s\n", buf); } if (size_t(card_index) >= found_cards.size()) { @@ -779,6 +987,47 @@ libusb_device_handle *open_card(int card_index, string *description) return devh; } +libusb_device_handle *open_card(unsigned card_index, libusb_device *dev, string *description) +{ + uint8_t bus = libusb_get_bus_number(dev); + uint8_t port = libusb_get_port_number(dev); + + libusb_device_descriptor desc; + if (libusb_get_device_descriptor(dev, &desc) < 0) { + fprintf(stderr, "Error getting device descriptor for device %p\n", dev); + exit(1); + } + + *description = get_card_description(card_index, bus, port, desc.idProduct); + + libusb_device_handle *devh; + int rc = libusb_open(dev, &devh); + if (rc < 0) { + fprintf(stderr, "Error opening card %p: %s\n", dev, libusb_error_name(rc)); + exit(1); + } + + return devh; +} + +} // namespace + +unsigned BMUSBCapture::num_cards() +{ + int rc = libusb_init(nullptr); + if (rc < 0) { + fprintf(stderr, "Error initializing libusb: %s\n", libusb_error_name(rc)); + exit(1); + } + + vector found_cards = find_all_cards(); + unsigned ret = found_cards.size(); + for (size_t i = 0; i < found_cards.size(); ++i) { + libusb_unref_device(found_cards[i].device); + } + return ret; +} + void BMUSBCapture::configure_card() { if (video_frame_allocator == nullptr) { @@ -801,7 +1050,12 @@ void BMUSBCapture::configure_card() exit(1); } - devh = open_card(card_index, &description); + if (dev == nullptr) { + devh = open_card(card_index, &description); + } else { + devh = open_card(card_index, dev, &description); + libusb_unref_device(dev); + } if (!devh) { fprintf(stderr, "Error finding USB device\n"); exit(1); @@ -1028,7 +1282,7 @@ void BMUSBCapture::configure_card() // set up isochronous transfers for audio and video for (int e = 3; e <= 4; ++e) { //int num_transfers = (e == 3) ? 6 : 6; - int num_transfers = 10; + int num_transfers = 6; for (int i = 0; i < num_transfers; ++i) { size_t buf_size; int num_iso_pack, size; @@ -1044,8 +1298,23 @@ void BMUSBCapture::configure_card() num_iso_pack = 80; buf_size = num_iso_pack * size; } - assert(size_t(num_iso_pack * size) <= buf_size); - uint8_t *buf = new uint8_t[buf_size]; + int num_bytes = num_iso_pack * size; + assert(size_t(num_bytes) <= buf_size); +#if LIBUSB_API_VERSION >= 0x01000105 + uint8_t *buf = libusb_dev_mem_alloc(devh, num_bytes); +#else + uint8_t *buf = nullptr; +#endif + if (buf == nullptr) { + fprintf(stderr, "Failed to allocate persistent DMA memory "); +#if LIBUSB_API_VERSION >= 0x01000105 + fprintf(stderr, "(probably too old kernel; use 4.6.0 or newer).\n"); +#else + fprintf(stderr, "(compiled against too old libusb-1.0).\n"); +#endif + fprintf(stderr, "Will go slower, and likely fail due to memory fragmentation after a few hours.\n"); + buf = new uint8_t[num_bytes]; + } xfr = libusb_alloc_transfer(num_iso_pack); if (!xfr) { @@ -1102,6 +1371,18 @@ void BMUSBCapture::stop_dequeue_thread() void BMUSBCapture::start_bm_thread() { + // Devices leaving are discovered by seeing the isochronous packets + // coming back with errors, so only care about devices joining. + if (card_connected_callback != nullptr) { + if (libusb_hotplug_register_callback( + nullptr, LIBUSB_HOTPLUG_EVENT_DEVICE_ARRIVED, hotplug_existing_devices ? LIBUSB_HOTPLUG_ENUMERATE : LIBUSB_HOTPLUG_NO_FLAGS, + USB_VENDOR_BLACKMAGIC, LIBUSB_HOTPLUG_MATCH_ANY, LIBUSB_HOTPLUG_MATCH_ANY, + &BMUSBCapture::cb_hotplug, nullptr, nullptr) < 0) { + fprintf(stderr, "libusb_hotplug_register_callback() failed\n"); + exit(1); + } + } + should_quit = false; usb_thread = thread(&BMUSBCapture::usb_thread_func); } @@ -1112,121 +1393,6 @@ void BMUSBCapture::stop_bm_thread() usb_thread.join(); } -struct VideoFormatEntry { - uint16_t normalized_video_format; - unsigned width, height, second_field_start; - unsigned extra_lines_top, extra_lines_bottom; - unsigned frame_rate_nom, frame_rate_den; - bool interlaced; -}; - -bool decode_video_format(uint16_t video_format, VideoFormat *decoded_video_format) -{ - decoded_video_format->id = video_format; - decoded_video_format->interlaced = false; - - // TODO: Add these for all formats as we find them. - decoded_video_format->extra_lines_top = decoded_video_format->extra_lines_bottom = decoded_video_format->second_field_start = 0; - - 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. - decoded_video_format->width = 720; - decoded_video_format->height = 525; - decoded_video_format->extra_lines_top = 0; - decoded_video_format->extra_lines_bottom = 0; - decoded_video_format->frame_rate_nom = 3013; - decoded_video_format->frame_rate_den = 100; - decoded_video_format->has_signal = false; - return true; - } - if ((video_format & 0xe800) != 0xe800) { - printf("Video format 0x%04x does not appear to be a video format. Assuming 60 Hz.\n", - video_format); - decoded_video_format->width = 0; - decoded_video_format->height = 0; - decoded_video_format->extra_lines_top = 0; - decoded_video_format->extra_lines_bottom = 0; - decoded_video_format->frame_rate_nom = 60; - decoded_video_format->frame_rate_den = 1; - decoded_video_format->has_signal = false; - return false; - } - - decoded_video_format->has_signal = true; - - // NTSC (480i59.94, I suppose). A special case, see below. - if (video_format == 0xe901 || video_format == 0xe9c1 || video_format == 0xe801) { - decoded_video_format->width = 720; - decoded_video_format->height = 480; - decoded_video_format->extra_lines_top = 17; - decoded_video_format->extra_lines_bottom = 28; - decoded_video_format->frame_rate_nom = 30000; - decoded_video_format->frame_rate_den = 1001; - decoded_video_format->second_field_start = 280; - decoded_video_format->interlaced = true; - return true; - } - - // PAL (576i50, I suppose). A special case, see below. - if (video_format == 0xe909 || video_format == 0xe9c9 || video_format == 0xe809 || video_format == 0xebe9 || video_format == 0xebe1) { - decoded_video_format->width = 720; - decoded_video_format->height = 576; - decoded_video_format->extra_lines_top = 22; - decoded_video_format->extra_lines_bottom = 27; - decoded_video_format->frame_rate_nom = 25; - decoded_video_format->frame_rate_den = 1; - decoded_video_format->second_field_start = 335; - decoded_video_format->interlaced = true; - return true; - } - - // 0x8 seems to be a flag about availability of deep color on the input, - // except when it's not (e.g. it's the only difference between NTSC - // and PAL). Rather confusing. But we clear it here nevertheless, because - // usually it doesn't mean anything. - // - // 0x4 is a flag I've only seen from the D4. I don't know what it is. - uint16_t normalized_video_format = video_format & ~0xe80c; - constexpr VideoFormatEntry entries[] = { - { 0x01f1, 720, 480, 0, 40, 5, 60000, 1001, false }, // 480p59.94 (believed). - { 0x0131, 720, 576, 0, 44, 5, 50, 1, false }, // 576p50. - { 0x0011, 720, 576, 0, 44, 5, 50, 1, false }, // 576p50 (5:4). - { 0x0143, 1280, 720, 0, 25, 5, 50, 1, false }, // 720p50. - { 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. - { 0x0003, 1920, 1080, 583, 20, 25, 30, 1, true }, // 1080i60. - { 0x01e1, 1920, 1080, 0, 0, 0, 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. - }; - for (const VideoFormatEntry &entry : entries) { - if (normalized_video_format == entry.normalized_video_format) { - decoded_video_format->width = entry.width; - decoded_video_format->height = entry.height; - decoded_video_format->second_field_start = entry.second_field_start; - decoded_video_format->extra_lines_top = entry.extra_lines_top; - decoded_video_format->extra_lines_bottom = entry.extra_lines_bottom; - decoded_video_format->frame_rate_nom = entry.frame_rate_nom; - decoded_video_format->frame_rate_den = entry.frame_rate_den; - decoded_video_format->interlaced = entry.interlaced; - return true; - } - } - - printf("Unknown video format 0x%04x (normalized 0x%04x). Assuming 720p60.\n", video_format, normalized_video_format); - decoded_video_format->width = 1280; - decoded_video_format->height = 720; - decoded_video_format->frame_rate_nom = 60; - decoded_video_format->frame_rate_den = 1; - return false; -} - map BMUSBCapture::get_available_video_modes() const { // The USB3 cards autodetect, and seem to have no provision for forcing modes. @@ -1291,3 +1457,5 @@ void BMUSBCapture::update_capture_mode() exit(1); } } + +} // namespace bmusb