]> git.sesse.net Git - nageru/blob - nageru/cef_capture.cpp
Unify all the FRAME_SIZE #defines.
[nageru] / nageru / cef_capture.cpp
1 #include <assert.h>
2 #include <stdio.h>
3 #include <string.h>
4 #include <chrono>
5 #include <memory>
6 #include <string>
7
8 #include "cef_capture.h"
9 #include "nageru_cef_app.h"
10
11 #undef CHECK
12 #include <cef_app.h>
13 #include <cef_browser.h>
14 #include <cef_client.h>
15
16 #include "bmusb/bmusb.h"
17
18 using namespace std;
19 using namespace std::chrono;
20 using namespace bmusb;
21
22 extern CefRefPtr<NageruCefApp> cef_app;
23
24 CEFCapture::CEFCapture(const string &url, unsigned width, unsigned height)
25         : cef_client(new NageruCEFClient(this)),
26           width(width),
27           height(height),
28           start_url(url)
29 {
30         char buf[256];
31         snprintf(buf, sizeof(buf), "CEF card %d", card_index + 1);
32         description = buf;
33 }
34
35 CEFCapture::~CEFCapture()
36 {
37         if (has_dequeue_callbacks) {
38                 dequeue_cleanup_callback();
39         }
40 }
41
42 void CEFCapture::post_to_cef_ui_thread(std::function<void()> &&func, int64_t delay_ms)
43 {
44         lock_guard<recursive_mutex> lock(browser_mutex);
45         if (browser != nullptr) {
46                 if (delay_ms <= 0) {
47                         CefPostTask(TID_UI, new CEFTaskAdapter(std::move(func)));
48                 } else {
49                         CefPostDelayedTask(TID_UI, new CEFTaskAdapter(std::move(func)), delay_ms);
50                 }
51         } else {
52                 deferred_tasks.push_back(std::move(func));
53         }
54 }
55
56 void CEFCapture::set_url(const string &url)
57 {
58         post_to_cef_ui_thread([this, url] {
59                 loaded = false;
60                 browser->GetMainFrame()->LoadURL(url);
61         });
62 }
63
64 void CEFCapture::reload()
65 {
66         post_to_cef_ui_thread([this] {
67                 loaded = false;
68                 browser->Reload();
69         });
70 }
71
72 void CEFCapture::set_max_fps(int max_fps)
73 {
74         post_to_cef_ui_thread([this, max_fps] {
75                 browser->GetHost()->SetWindowlessFrameRate(max_fps);
76                 this->max_fps = max_fps;
77         });
78 }
79
80 void CEFCapture::execute_javascript_async(const string &js)
81 {
82         post_to_cef_ui_thread([this, js] {
83                 if (loaded) {
84                         CefString script_url("<theme eval>");
85                         int start_line = 1;
86                         browser->GetMainFrame()->ExecuteJavaScript(js, script_url, start_line);
87                 } else {
88                         deferred_javascript.push_back(js);
89                 }
90         });
91 }
92
93 void CEFCapture::resize(unsigned width, unsigned height)
94 {
95         lock_guard<mutex> lock(resolution_mutex);
96         this->width = width;
97         this->height = height;
98 }
99
100 void CEFCapture::request_new_frame(bool ignore_if_locked)
101 {
102         unique_lock<recursive_mutex> outer_lock(browser_mutex, defer_lock);
103         if (ignore_if_locked && !outer_lock.try_lock()) {
104                 // If the caller is holding card_mutex, we need to abort here
105                 // if we can't get browser_mutex, since otherwise, the UI thread
106                 // might hold browser_mutex (blocking post_to_cef_ui_thread())
107                 // and be waiting for card_mutex.
108                 return;
109         }
110
111         // By adding a delay, we make sure we don't get a new frame
112         // delivered immediately (we probably already are on the UI thread),
113         // where we couldn't really deal with it.
114         post_to_cef_ui_thread([this] {
115                 lock_guard<recursive_mutex> lock(browser_mutex);
116                 if (browser != nullptr) {  // Could happen if we are shutting down.
117                         browser->GetHost()->Invalidate(PET_VIEW);
118                 }
119         }, 16);
120 }
121
122 void CEFCapture::OnPaint(const void *buffer, int width, int height)
123 {
124         steady_clock::time_point timestamp = steady_clock::now();
125
126         VideoFormat video_format;
127         video_format.width = width;
128         video_format.height = height;
129         video_format.stride = width * 4;
130         video_format.frame_rate_nom = max_fps;
131         video_format.frame_rate_den = 1;
132         video_format.has_signal = true;
133         video_format.is_connected = true;
134
135         FrameAllocator::Frame video_frame = video_frame_allocator->alloc_frame();
136         if (video_frame.data == nullptr) {
137                 // We lost a frame, so we need to invalidate the entire thing.
138                 // (CEF only sends OnPaint when there are actual changes,
139                 // so we need to do this explicitly, or we could be stuck on an
140                 // old frame forever if the image doesn't change.)
141                 request_new_frame(/*ignore_if_locked=*/false);
142                 ++timecode;
143         } else {
144                 assert(video_frame.size >= unsigned(width * height * 4));
145                 assert(!video_frame.interleaved);
146                 memcpy(video_frame.data, buffer, width * height * 4);
147                 video_frame.len = video_format.stride * height;
148                 video_frame.received_timestamp = timestamp;
149                 frame_callback(timecode++,
150                         video_frame, 0, video_format,
151                         FrameAllocator::Frame(), 0, AudioFormat());
152         }
153 }
154
155 void CEFCapture::OnLoadEnd()
156 {
157         post_to_cef_ui_thread([this] {
158                 loaded = true;
159                 for (const string &js : deferred_javascript) {
160                         CefString script_url("<theme eval>");
161                         int start_line = 1;
162                         browser->GetMainFrame()->ExecuteJavaScript(js, script_url, start_line);
163                 }
164                 deferred_javascript.clear();
165         });
166 }
167
168 void CEFCapture::configure_card()
169 {
170         if (video_frame_allocator == nullptr) {
171                 owned_video_frame_allocator.reset(new MallocFrameAllocator(FRAME_SIZE, NUM_QUEUED_VIDEO_FRAMES));
172                 set_video_frame_allocator(owned_video_frame_allocator.get());
173         }
174 }
175
176 void CEFCapture::start_bm_capture()
177 {
178         cef_app->initialize_cef();
179
180         CefPostTask(TID_UI, new CEFTaskAdapter([this]{
181                 lock_guard<recursive_mutex> lock(browser_mutex);
182
183                 CefBrowserSettings browser_settings;
184                 browser_settings.webgl = cef_state_t::STATE_ENABLED;
185                 browser_settings.windowless_frame_rate = max_fps;
186
187                 CefWindowInfo window_info;
188                 window_info.SetAsWindowless(0);
189                 browser = CefBrowserHost::CreateBrowserSync(window_info, cef_client, start_url, browser_settings, nullptr, nullptr);
190                 for (function<void()> &task : deferred_tasks) {
191                         task();
192                 }
193                 deferred_tasks.clear();
194         }));
195 }
196
197 void CEFCapture::stop_dequeue_thread()
198 {
199         {
200                 lock_guard<recursive_mutex> lock(browser_mutex);
201                 cef_app->close_browser(browser);
202                 browser = nullptr;  // Or unref_cef() will be sad.
203         }
204         cef_app->unref_cef();
205 }
206
207 std::map<uint32_t, VideoMode> CEFCapture::get_available_video_modes() const
208 {
209         VideoMode mode;
210
211         char buf[256];
212         snprintf(buf, sizeof(buf), "%ux%u", width, height);
213         mode.name = buf;
214
215         mode.autodetect = false;
216         mode.width = width;
217         mode.height = height;
218         mode.frame_rate_num = max_fps;
219         mode.frame_rate_den = 1;
220         mode.interlaced = false;
221
222         return {{ 0, mode }};
223 }
224
225 std::map<uint32_t, std::string> CEFCapture::get_available_video_inputs() const
226 {
227         return {{ 0, "HTML video input" }};
228 }
229
230 std::map<uint32_t, std::string> CEFCapture::get_available_audio_inputs() const
231 {
232         return {{ 0, "Fake HTML audio input (silence)" }};
233 }
234
235 void CEFCapture::set_video_mode(uint32_t video_mode_id)
236 {
237         assert(video_mode_id == 0);
238 }
239
240 void CEFCapture::set_video_input(uint32_t video_input_id)
241 {
242         assert(video_input_id == 0);
243 }
244
245 void CEFCapture::set_audio_input(uint32_t audio_input_id)
246 {
247         assert(audio_input_id == 0);
248 }
249
250 void NageruCEFClient::OnPaint(CefRefPtr<CefBrowser> browser, PaintElementType type, const RectList &dirtyRects, const void *buffer, int width, int height)
251 {
252         parent->OnPaint(buffer, width, height);
253 }
254
255 void NageruCEFClient::GetViewRect(CefRefPtr<CefBrowser> browser, CefRect &rect)
256 {
257         parent->GetViewRect(rect);
258 }
259
260 void CEFCapture::GetViewRect(CefRect &rect)
261 {
262         lock_guard<mutex> lock(resolution_mutex);
263         rect = CefRect(0, 0, width, height);
264 }
265
266 void NageruCEFClient::OnLoadEnd(CefRefPtr<CefBrowser> browser, CefRefPtr<CefFrame> frame, int httpStatusCode)
267 {
268         parent->OnLoadEnd();
269 }