forked from obsproject/obs-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser-client.hpp
176 lines (153 loc) · 5.56 KB
/
browser-client.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/******************************************************************************
Copyright (C) 2014 by John R. Bradley <[email protected]>
Copyright (C) 2018 by Hugh Bailey ("Jim") <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
******************************************************************************/
#pragma once
#include <graphics/graphics.h>
#include "cef-headers.hpp"
#include "browser-config.h"
#define USE_TEXTURE_COPY 0
struct BrowserSource;
class BrowserClient : public CefClient,
public CefDisplayHandler,
public CefLifeSpanHandler,
public CefContextMenuHandler,
public CefRenderHandler,
#if CHROME_VERSION_BUILD >= 3683
public CefAudioHandler,
#endif
public CefLoadHandler {
#ifdef SHARED_TEXTURE_SUPPORT_ENABLED
#if USE_TEXTURE_COPY
gs_texture_t *texture = nullptr;
#endif
#ifdef _WIN32
void *last_handle = INVALID_HANDLE_VALUE;
#elif defined(__APPLE__)
void *last_handle = nullptr;
#endif
#endif
bool sharing_available = false;
bool reroute_audio = true;
public:
BrowserSource *bs;
CefRect popupRect;
CefRect originalPopupRect;
#if CHROME_VERSION_BUILD >= 4103
int sample_rate;
int channels;
ChannelLayout channel_layout;
int frames_per_buffer;
#endif
inline BrowserClient(BrowserSource *bs_, bool sharing_avail,
bool reroute_audio_)
: sharing_available(sharing_avail),
reroute_audio(reroute_audio_),
bs(bs_)
{
}
virtual ~BrowserClient();
/* CefClient */
virtual CefRefPtr<CefLoadHandler> GetLoadHandler() override;
virtual CefRefPtr<CefRenderHandler> GetRenderHandler() override;
virtual CefRefPtr<CefDisplayHandler> GetDisplayHandler() override;
virtual CefRefPtr<CefLifeSpanHandler> GetLifeSpanHandler() override;
virtual CefRefPtr<CefContextMenuHandler>
GetContextMenuHandler() override;
#if CHROME_VERSION_BUILD >= 3683
virtual CefRefPtr<CefAudioHandler> GetAudioHandler() override;
#endif
virtual bool
OnProcessMessageReceived(CefRefPtr<CefBrowser> browser,
#if CHROME_VERSION_BUILD >= 3770
CefRefPtr<CefFrame> frame,
#endif
CefProcessId source_process,
CefRefPtr<CefProcessMessage> message) override;
/* CefDisplayHandler */
virtual bool OnConsoleMessage(CefRefPtr<CefBrowser> browser,
#if CHROME_VERSION_BUILD >= 3282
cef_log_severity_t level,
#endif
const CefString &message,
const CefString &source,
int line) override;
/* CefLifeSpanHandler */
virtual bool
OnBeforePopup(CefRefPtr<CefBrowser> browser, CefRefPtr<CefFrame> frame,
const CefString &target_url,
const CefString &target_frame_name,
WindowOpenDisposition target_disposition,
bool user_gesture, const CefPopupFeatures &popupFeatures,
CefWindowInfo &windowInfo, CefRefPtr<CefClient> &client,
CefBrowserSettings &settings,
#if CHROME_VERSION_BUILD >= 3770
CefRefPtr<CefDictionaryValue> &extra_info,
#endif
bool *no_javascript_access) override;
/* CefContextMenuHandler */
virtual void
OnBeforeContextMenu(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame,
CefRefPtr<CefContextMenuParams> params,
CefRefPtr<CefMenuModel> model) override;
/* CefRenderHandler */
#if CHROME_VERSION_BUILD >= 3578
virtual void GetViewRect(
#else
virtual bool GetViewRect(
#endif
CefRefPtr<CefBrowser> browser, CefRect &rect) override;
virtual void OnPaint(CefRefPtr<CefBrowser> browser,
PaintElementType type, const RectList &dirtyRects,
const void *buffer, int width,
int height) override;
#ifdef SHARED_TEXTURE_SUPPORT_ENABLED
virtual void OnAcceleratedPaint(CefRefPtr<CefBrowser> browser,
PaintElementType type,
const RectList &dirtyRects,
void *shared_handle) override;
#endif
#if CHROME_VERSION_BUILD >= 4103
virtual void OnAudioStreamPacket(CefRefPtr<CefBrowser> browser,
const float **data, int frames,
int64_t pts) override;
virtual void
OnAudioStreamStopped(CefRefPtr<CefBrowser> browser) override;
virtual void OnAudioStreamStarted(CefRefPtr<CefBrowser> browser,
const CefAudioParameters ¶ms,
int channels) override;
virtual void OnAudioStreamError(CefRefPtr<CefBrowser> browser,
const CefString &message) override;
const int kFramesPerBuffer = 1024;
virtual bool GetAudioParameters(CefRefPtr<CefBrowser> browser,
CefAudioParameters ¶ms) override;
#elif CHROME_VERSION_BUILD >= 3683
virtual void OnAudioStreamPacket(CefRefPtr<CefBrowser> browser,
int audio_stream_id,
const float **data, int frames,
int64_t pts) override;
virtual void OnAudioStreamStopped(CefRefPtr<CefBrowser> browser,
int audio_stream_id);
virtual void OnAudioStreamStarted(CefRefPtr<CefBrowser> browser,
int audio_stream_id, int channels,
ChannelLayout channel_layout,
int sample_rate,
int frames_per_buffer) override;
#endif
/* CefLoadHandler */
virtual void OnLoadEnd(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame,
int httpStatusCode) override;
IMPLEMENT_REFCOUNTING(BrowserClient);
};