-
Notifications
You must be signed in to change notification settings - Fork 7
liwebrtc のバージョンを m142.7444.2.0 に上げる #258
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
Conversation
|
!sonnet レビューをお願い |
This comment was marked as resolved.
This comment was marked as resolved.
|
!sonnet リリースするまで libwebrtc への追従は一つの変更履歴項目とするので変更する予定はありません。 |
|
Claude finished @miosakuma's task —— View job 了解しましたリリースまでは libwebrtc への追従を一つの変更履歴項目としてまとめる方針とのこと、承知しました。 CHANGES.md の記載方法についての指摘は取り下げます。リリース時の運用方針に従った記載であることを確認しました。 |
src/android/android_capturer.cpp
Outdated
| webrtc::ScopedJavaLocalRef<jclass> camcls = | ||
| webrtc::ScopedJavaLocalRef<jclass>::Adopt( | ||
| env, env->GetObjectClass(camera2enumerator.obj())); |
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.
webrtc::ScopedJavaLocalRef<jclass> が何度も発生してて冗長なので Adopt() 使ってる場所の変数の宣言は全部 auto にして下さい。
auto camcls =
webrtc::ScopedJavaLocalRef<jclass>::Adopt(
env, env->GetObjectClass(camera2enumerator.obj()));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.
ffd6a7d で対応しました
torikizi
left a comment
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.
修正ありがとうございます。
melpon
left a comment
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.
よさそう
|
確認ありがとうございました、マージします |
libwebrtc m142 の変更へ追従し以下の対応を行っています。
PeerConnectionFactoryのコンストラクタにenvの引数を追加ScopedJavaLocalRef<jobject>(env, obj)からScopedJavaLocalRef<jobject>::Adopt(env, obj)を使うように変更