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