]> git.sesse.net Git - nageru/blobdiff - mixer.h
When switching output cards, do it from the mixer thread.
[nageru] / mixer.h
diff --git a/mixer.h b/mixer.h
index 28b190b531a1c86a6c617ffd274d16f2d024f3a0..9e4c4d52a222e0d16a38693479f6e91859061269 100644 (file)
--- a/mixer.h
+++ b/mixer.h
 #include "video_encoder.h"
 
 class ALSAOutput;
+class ChromaSubsampler;
+class DeckLinkOutput;
 class QSurface;
+class QSurfaceFormat;
 
 namespace movit {
 class Effect;
@@ -45,7 +48,6 @@ class EffectChain;
 class FlatInput;
 class ResourcePool;
 }  // namespace movit
-class QSurfaceFormat;
 
 // For any card that's not the master (where we pick out the frames as they
 // come, as fast as we can process), there's going to be a queue. The question
@@ -232,6 +234,25 @@ public:
                return cards[card_index].capture->get_description();
        }
 
+       // The difference between this and the previous function is that if a card
+       // is used as the current output, get_card_description() will return the
+       // fake card that's replacing it for input, whereas this function will return
+       // the card's actual name.
+       std::string get_output_card_description(unsigned card_index) const {
+               assert(card_can_be_used_as_output(card_index));
+               assert(card_index < num_cards);
+               if (cards[card_index].parked_capture) {
+                       return cards[card_index].parked_capture->get_description();
+               } else {
+                       return cards[card_index].capture->get_description();
+               }
+       }
+
+       bool card_can_be_used_as_output(unsigned card_index) const {
+               assert(card_index < num_cards);
+               return cards[card_index].output != nullptr;
+       }
+
        std::map<uint32_t, bmusb::VideoMode> get_available_video_modes(unsigned card_index) const {
                assert(card_index < num_cards);
                return cards[card_index].capture->get_available_video_modes();
@@ -283,8 +304,17 @@ public:
                video_encoder->change_x264_bitrate(rate_kbit);
        }
 
+       int get_output_card_index() const {  // -1 = no output, just stream.
+               return desired_output_card_index;
+       }
+
+       void set_output_card(int card_index) { // -1 = no output, just stream.
+               desired_output_card_index = card_index;
+       }
+
 private:
-       void configure_card(unsigned card_index, bmusb::CaptureInterface *capture, bool is_fake_capture);
+       void configure_card(unsigned card_index, bmusb::CaptureInterface *capture, bool is_fake_capture, DeckLinkOutput *output);
+       void set_output_card_internal(int card_index);  // Should only be called from the mixer thread.
        void bm_frame(unsigned card_index, uint16_t timecode,
                bmusb::FrameAllocator::Frame video_frame, size_t video_offset, bmusb::VideoFormat video_format,
                bmusb::FrameAllocator::Frame audio_frame, size_t audio_offset, bmusb::AudioFormat audio_format);
@@ -296,23 +326,28 @@ private:
        void schedule_audio_resampling_tasks(unsigned dropped_frames, int num_samples_per_frame, int length_per_frame);
        void render_one_frame(int64_t duration);
        void audio_thread_func();
-       void subsample_chroma(GLuint src_tex, GLuint dst_dst);
        void release_display_frame(DisplayFrame *frame);
        double pts() { return double(pts_int) / TIMEBASE; }
 
        HTTPD httpd;
        unsigned num_cards;
 
-       QSurface *mixer_surface, *h264_encoder_surface;
+       QSurface *mixer_surface, *h264_encoder_surface, *decklink_output_surface;
        std::unique_ptr<movit::ResourcePool> resource_pool;
        std::unique_ptr<Theme> theme;
        std::atomic<unsigned> audio_source_channel{0};
-       std::atomic<unsigned> master_clock_channel{0};
+       std::atomic<int> master_clock_channel{0};  // Gets overridden by <output_card_index> if set.
+       int output_card_index = -1;  // -1 for none.
+
+       // The mechanics of changing the output card are so intricately connected
+       // with the work the mixer thread is doing. Thus, we don't change it directly,
+       // we just set this variable instead, which signals to the mixer thread that
+       // it should do the change before the next frame. This simplifies locking
+       // considerations immensely.
+       std::atomic<int> desired_output_card_index{-1};
+
        std::unique_ptr<movit::EffectChain> display_chain;
-       GLuint cbcr_program_num;  // Owned by <resource_pool>.
-       GLuint cbcr_texture_sampler_uniform;
-       GLuint cbcr_vbo;  // Holds position and texcoord data.
-       GLuint cbcr_position_attribute_index, cbcr_texcoord_attribute_index;
+       std::unique_ptr<ChromaSubsampler> chroma_subsampler;
        std::unique_ptr<VideoEncoder> video_encoder;
 
        // Effects part of <display_chain>. Owned by <display_chain>.
@@ -324,11 +359,20 @@ private:
        // frame rate is integer, will always stay zero.
        unsigned fractional_samples = 0;
 
-       std::mutex bmusb_mutex;
+       std::mutex card_mutex;
        bool has_bmusb_thread = false;
        struct CaptureCard {
-               bmusb::CaptureInterface *capture = nullptr;
+               std::unique_ptr<bmusb::CaptureInterface> capture;
                bool is_fake_capture;
+               std::unique_ptr<DeckLinkOutput> output;
+
+               // If this card is used for output (ie., output_card_index points to it),
+               // it cannot simultaneously be uesd for capture, so <capture> gets replaced
+               // by a FakeCapture. However, since reconstructing the real capture object
+               // with all its state can be annoying, it is not being deleted, just stopped
+               // and moved here.
+               std::unique_ptr<bmusb::CaptureInterface> parked_capture;
+
                std::unique_ptr<PBOFrameAllocator> frame_allocator;
 
                // Stuff for the OpenGL context (for texture uploading).
@@ -351,14 +395,15 @@ private:
 
                int last_timecode = -1;  // Unwrapped.
        };
-       CaptureCard cards[MAX_VIDEO_CARDS];  // protected by <bmusb_mutex>
+       CaptureCard cards[MAX_VIDEO_CARDS];  // Protected by <card_mutex>.
        AudioMixer audio_mixer;  // Same as global_audio_mixer (see audio_mixer.h).
+       bool input_card_is_master_clock(unsigned card_index, unsigned master_card_index) const;
        struct OutputFrameInfo {
                int dropped_frames;  // Since last frame.
                int num_samples;  // Audio samples needed for this output frame.
                int64_t frame_duration;  // In TIMEBASE units.
        };
-       OutputFrameInfo get_one_frame_from_each_card(unsigned master_card_index, CaptureCard::NewFrame new_frames[MAX_VIDEO_CARDS], bool has_new_frame[MAX_VIDEO_CARDS]);
+       OutputFrameInfo get_one_frame_from_each_card(unsigned master_card_index, bool master_card_is_output, CaptureCard::NewFrame new_frames[MAX_VIDEO_CARDS], bool has_new_frame[MAX_VIDEO_CARDS]);
 
        InputState input_state;