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