-
Notifications
You must be signed in to change notification settings - Fork 8
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
libwebrtc を m124.6367.3.1 にあげる #98
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
90207d6
libwebrtc を m124.6367.3.1 にあげる
enm10k 4861e13
webrtc::VideoDecoderFactory 初期化時に webrtc::Environment の指定が必要になった
enm10k 01ad4ff
test のビルドが通るように修正する
enm10k ba5bb61
sora::SoraClientContext::Create に webrtc::Environment を渡す
enm10k 78843b9
webrtc::Environment を渡さない初期化方法を維持する
enm10k cac00ea
libwebrtc から examples/unityplugin が削除されたので追従する
enm10k 01f5ba6
試行錯誤した際のコメントを消す
enm10k 7e8622b
SoraClientContext で保持する webrtc::Environment は private で良かった
enm10k 3e789b1
SoraClientContext で webrtc::Environment を保持するのを止める
enm10k ba0da74
互換性を維持するために webrtc::Environment を最後の変数として追加し、デフォルト値を指定する
enm10k 9d5eb9b
最終的に webrtc::CreateEnvironment を実行する回数が変わらないので、 webrtc::Environment を…
enm10k ecec7db
不要な差分を元に戻す
enm10k d95ab15
CHANGES.md を更新する
enm10k 2ae98b7
参照でキャプチャーするのをやめる
enm10k fdb7947
CHANGES.md を修正する
enm10k 7a21aa4
Merge remote-tracking branch 'origin/develop' into feature/update-lib…
enm10k 35b1eb6
yaml のエラーを直す
melpon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Boost のバージョンが下がってる…?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
こちらですが、現在 Sora C++ SDK でリリースされている最新の Boost のバージョンが 1.84.0 なため、
--sora-dir .
を指定しない場合ビルドが落ちるようです (= develop のsサンプル BOOST_VERSION を誤ってあげてしまっている)この PR のマージにもう少し時間がかかるようであれば、 develop ブランチを直接修正します
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1fa19e0
あやまってあげてしまってるってのがよくわからんのだが。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
サンプルのビルド時は Sora C++ SDK のリリースに含まれる Boost のバイナリを取得してビルドする挙動がデフォルトとなっています。
そのため、 SDK とサンプルの Boost のバージョンを同時に上げられないようです。
(SDK の Boost のバージョンを上げてリリースした後、サンプルの Boost のバージョンをあげる必要がある)
0997648 でサンプルの BOOST_VERSION を 1.84.0 に戻しました