]> git.sesse.net Git - bmusb/commitdiff
Unbreak the test program.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 25 Jul 2016 11:40:36 +0000 (13:40 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 25 Jul 2016 11:40:52 +0000 (13:40 +0200)
main.cpp

index 7506962329d26e2e6e334db48c350ba09e3e0370..a7f63a12352bbab0fa39183ed8c1ad50432ba406 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -7,11 +7,11 @@ using namespace std;
 BMUSBCapture *usb;
 
 void check_frame_stability(uint16_t timecode,
-                           FrameAllocator::Frame video_frame, size_t video_offset, uint16_t video_format,
-                           FrameAllocator::Frame audio_frame, size_t audio_offset, uint16_t audio_format)
+                           FrameAllocator::Frame video_frame, size_t video_offset, VideoFormat video_format,
+                           FrameAllocator::Frame audio_frame, size_t audio_offset, AudioFormat audio_format)
 {
        //printf("0x%04x: %d video bytes (format 0x%04x), %d audio bytes (format 0x%04x)\n",
-       //      timecode, video_end - video_start, video_format, audio_end - audio_start, audio_format);
+       //      timecode, video_end - video_start, video_format.id, audio_end - audio_start, audio_format.id);
 
        static uint16_t last_timecode = 0;
        static size_t last_video_bytes = 0;
@@ -21,10 +21,10 @@ void check_frame_stability(uint16_t timecode,
                if (timecode != (uint16_t)(last_timecode + 1)) {
                        printf("0x%04x: Dropped %d frames\n", timecode, timecode - last_timecode - 1);
                } else if (last_video_bytes != video_frame.len - video_offset) {
-                       printf("0x%04x: Video frame size changed (old=%d, cur=%d)\n", timecode,
+                       printf("0x%04x: Video frame size changed (old=%ld, cur=%ld)\n", timecode,
                                last_video_bytes, video_frame.len - video_offset);
                } else if (last_audio_bytes != audio_frame.len - audio_offset) {
-                       printf("0x%04x: Audio block size changed (old=%d, cur=%d)\n", timecode,
+                       printf("0x%04x: Audio block size changed (old=%ld, cur=%ld)\n", timecode,
                                last_audio_bytes, audio_frame.len - audio_offset);
                }
        }
@@ -38,7 +38,7 @@ void check_frame_stability(uint16_t timecode,
 
 int main(int argc, char **argv)
 {
-       usb = new BMUSBCapture;
+       usb = new BMUSBCapture(0);  // First card.
        usb->set_frame_callback(check_frame_stability);
        usb->configure_card();
        BMUSBCapture::start_bm_thread();