X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=bmusb.h;fp=bmusb.h;h=935318c35cda00c91965ac076ba7102d4980a7ce;hb=b3aaee8df3039891d79f4f673e6a8050d3fb65b5;hp=04d867b009e49cabc4fdcd6cf63a3f3b46b88b1e;hpb=bb575c1ac8b1496394732800898c27a3a812f0a9;p=bmusb diff --git a/bmusb.h b/bmusb.h index 04d867b..935318c 100644 --- a/bmusb.h +++ b/bmusb.h @@ -63,6 +63,7 @@ struct VideoFormat { unsigned extra_lines_top = 0, extra_lines_bottom = 0; unsigned frame_rate_nom = 0, frame_rate_den = 0; bool interlaced = false; + bool has_signal = false; }; typedef std::function frame_callback_t; +class CaptureInterface { + public: + virtual ~CaptureInterface() {} + + // Does not take ownership. + virtual void set_video_frame_allocator(FrameAllocator *allocator) = 0; + + virtual FrameAllocator *get_video_frame_allocator() = 0; + + // Does not take ownership. + virtual void set_audio_frame_allocator(FrameAllocator *allocator) = 0; + + virtual FrameAllocator *get_audio_frame_allocator() = 0; + + virtual void set_frame_callback(frame_callback_t callback) = 0; + + // Needs to be run before configure_card(). + virtual void set_dequeue_thread_callbacks(std::function init, std::function cleanup) = 0; + + // Only valid after configure_card(). + virtual std::string get_description() const = 0; + + virtual void configure_card() = 0; + + virtual void start_bm_capture() = 0; + + virtual void stop_dequeue_thread() = 0; +}; + // The actual capturing class, representing capture from a single card. -class BMUSBCapture { +class BMUSBCapture : public CaptureInterface { public: BMUSBCapture(int card_index) : card_index(card_index) { } + ~BMUSBCapture() {} + // Does not take ownership. - void set_video_frame_allocator(FrameAllocator *allocator) + void set_video_frame_allocator(FrameAllocator *allocator) override { video_frame_allocator = allocator; } - FrameAllocator *get_video_frame_allocator() + FrameAllocator *get_video_frame_allocator() override { return video_frame_allocator; } // Does not take ownership. - void set_audio_frame_allocator(FrameAllocator *allocator) + void set_audio_frame_allocator(FrameAllocator *allocator) override { audio_frame_allocator = allocator; } - FrameAllocator *get_audio_frame_allocator() + FrameAllocator *get_audio_frame_allocator() override { return audio_frame_allocator; } - void set_frame_callback(frame_callback_t callback) + void set_frame_callback(frame_callback_t callback) override { frame_callback = callback; } // Needs to be run before configure_card(). - void set_dequeue_thread_callbacks(std::function init, std::function cleanup) + void set_dequeue_thread_callbacks(std::function init, std::function cleanup) override { dequeue_init_callback = init; dequeue_cleanup_callback = cleanup; @@ -114,14 +146,15 @@ class BMUSBCapture { } // Only valid after configure_card(). - std::string get_description() const { + std::string get_description() const override { return description; } - void configure_card(); - void start_bm_capture(); - void stop_dequeue_thread(); + void configure_card() override; + void start_bm_capture() override; + void stop_dequeue_thread() override; + // TODO: It's rather messy to have these outside the interface. static void start_bm_thread(); static void stop_bm_thread();