Skip to content

Commit

Permalink
Merge pull request #241 from shiguredo/feature/fix-screen-capture
Browse files Browse the repository at this point in the history
ubuntu で画面キャプチャが動かない問題を修正
  • Loading branch information
voluntas authored Mar 6, 2022
2 parents bf6dee2 2a314dc commit 71a6c4b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 21,8 @@
- @voluntas
- [UPDATE] cmake を 3.22.2 に上げる
- @voluntas
- [FIX] スクリーンキャプチャが Linux で落ちるのを修正
- @tnoho
- [ADD] DataChannel を使うことになっていて Offer を行う際には DataChannel を作るように変更
- @tnoho

Expand Down
6 changes: 5 additions & 1 deletion src/rtc/screen_video_capturer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 31,11 @@ const std::string ScreenVideoCapturer::GetSourceListString() {
if (GetSourceList(&sources)) {
int i = 0;
for (webrtc::DesktopCapturer::Source& source : sources) {
oss << i << " : " << source.title << std::endl;
// ubuntu で画面キャプチャが動かない問題への対策
// 原因は正しくつかめていないが std::to_string をはさむことで
// セグメンテーション違反となる処理を回避できているのか、
// クリーンインストールされた環境においては問題なく動作する。
oss << std::to_string(i ) << " : " << source.title << std::endl;
}
}
return oss.str();
Expand Down

0 comments on commit 71a6c4b

Please sign in to comment.