]> git.sesse.net Git - nageru/blob - mixer.h
Prepare for multiple output channels from the mixer.
[nageru] / mixer.h
1 #ifndef _MIXER_H
2 #define _MIXER_H 1
3
4 // The actual video mixer, running in its own separate background thread.
5
6 #include <epoxy/gl.h>
7 #undef Success
8 #include <movit/effect_chain.h>
9 #include <functional>
10
11 #include "bmusb.h"
12 #include "h264encode.h"
13 #include "pbo_frame_allocator.h"
14 #include "ref_counted_gl_sync.h"
15
16 #define NUM_CARDS 2
17
18 namespace movit {
19 class YCbCrInput;
20 }
21 class QOpenGLContext;
22 class QSurfaceFormat;
23
24 class Mixer {
25 public:
26         // The surface format is used for offscreen destinations for OpenGL contexts we need.
27         Mixer(const QSurfaceFormat &format);
28         ~Mixer();
29         void start();
30         void quit();
31
32         enum Source {
33                 SOURCE_INPUT1,
34                 SOURCE_INPUT2,
35                 SOURCE_SBS,
36         };
37         void cut(Source source);
38
39         enum Output {
40                 OUTPUT_LIVE = 0,
41                 NUM_OUTPUTS
42         };
43
44         struct DisplayFrame {
45                 GLuint texnum;
46                 RefCountedGLsync ready_fence;  // Asserted when the texture is done rendering.
47         };
48         // Implicitly frees the previous one if there's a new frame available.
49         bool get_display_frame(Output output, DisplayFrame *frame) {
50                 return output_channel[output].get_display_frame(frame);
51         }
52
53         typedef std::function<void()> new_frame_ready_callback_t;
54         void set_frame_ready_callback(Output output, new_frame_ready_callback_t callback)
55         {
56                 output_channel[output].set_frame_ready_callback(callback);
57         }
58
59 private:
60         void bm_frame(int card_index, uint16_t timecode,
61                 FrameAllocator::Frame video_frame, size_t video_offset, uint16_t video_format,
62                 FrameAllocator::Frame audio_frame, size_t audio_offset, uint16_t audio_format);
63         void place_rectangle(movit::Effect *resample_effect, movit::Effect *padding_effect, float x0, float y0, float x1, float y1);
64         void thread_func();
65         void subsample_chroma(GLuint src_tex, GLuint dst_dst);
66         void release_display_frame(DisplayFrame *frame);
67
68         QSurface *mixer_surface, *h264_encoder_surface;
69         std::unique_ptr<movit::ResourcePool> resource_pool;
70         std::unique_ptr<movit::EffectChain> chain;
71         GLuint cbcr_program_num;  // Owned by <resource_pool>.
72         std::unique_ptr<H264Encoder> h264_encoder;
73
74         // Effects part of <chain>. Owned by <chain>.
75         movit::YCbCrInput *input[NUM_CARDS];
76         movit::Effect *resample_effect, *resample2_effect;
77         movit::Effect *padding_effect, *padding2_effect;
78
79         Source current_source = SOURCE_INPUT1;
80         int frame = 0;
81
82         std::mutex bmusb_mutex;
83         struct CaptureCard {
84                 BMUSBCapture *usb;
85                 std::unique_ptr<PBOFrameAllocator> frame_allocator;
86
87                 // Threading stuff
88                 bool thread_initialized = false;
89                 QSurface *surface;
90                 QOpenGLContext *context;
91
92                 bool new_data_ready = false;  // Whether new_frame contains anything.
93                 FrameAllocator::Frame new_frame;
94                 GLsync new_data_ready_fence;  // Whether new_frame is ready for rendering.
95                 std::condition_variable new_data_ready_changed;  // Set whenever new_data_ready is changed.
96         };
97         CaptureCard cards[NUM_CARDS];  // protected by <bmusb_mutex>
98
99         FrameAllocator::Frame bmusb_current_rendering_frame[NUM_CARDS];
100
101         class OutputChannel {
102         public:
103                 void output_frame(GLuint tex, RefCountedGLsync fence);
104                 bool get_display_frame(DisplayFrame *frame);
105                 void set_frame_ready_callback(new_frame_ready_callback_t callback);
106
107         private:
108                 friend class Mixer;
109
110                 Mixer *parent = nullptr;  // Not owned.
111                 std::mutex frame_mutex;
112                 DisplayFrame current_frame, ready_frame;  // protected by <frame_mutex>
113                 bool has_current_frame = false, has_ready_frame = false;  // protected by <frame_mutex>
114                 new_frame_ready_callback_t new_frame_ready_callback;
115                 bool has_new_frame_ready_callback = false;
116         };
117         OutputChannel output_channel[NUM_OUTPUTS];
118
119         std::thread mixer_thread;
120         bool should_quit = false;
121 };
122
123 extern Mixer *global_mixer;
124
125 #endif  // !defined(_MIXER_H)