Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

obs-browser: Ensure saved source is alive #364

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion obs-browser-source.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ struct BrowserSource {
bool AudioMix(uint64_t *ts_out, struct audio_output_data *audio_output,
size_t channels, size_t sample_rate);
std::mutex audio_sources_mutex;
std::vector<obs_source_t *> audio_sources;
std::vector<OBSSource> audio_sources;
std::unordered_map<int, AudioStream> audio_streams;
#endif
void SendMouseClick(const struct obs_mouse_event *event, int32_t type,
Expand Down