-
Notifications
You must be signed in to change notification settings - Fork 3
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
transport-wide-cc-extensions-01 の出力に合わせてテストを変更する #119
Conversation
c86d0bf
to
b37dad7
Compare
tests/test_macos.py
Outdated
@@ -89,7 +89,7 @@ def test_macos_simulcast(setup, video_codec_type, expected_implementation): | |||
) | |||
sendonly.connect(fake_video=True) | |||
|
|||
time.sleep(5) | |||
time.sleep(10) |
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.
すみません、これ 5 に戻して貰えれば。
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.
09d1d5b で対応しました
tests/test_openh264.py
Outdated
@@ -101,7 +101,7 @@ def test_openh264_simulcast(setup, video_codec_type, expected_implementation): | |||
) | |||
sendonly.connect(fake_video=True) | |||
|
|||
time.sleep(5) | |||
time.sleep(10) |
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.
こちらも 5 に戻して貰えれば。
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.
09d1d5b で対応しました
Sora 側の設定でトランスポートワイド輻輳制御を有効にしたところ、Stats の outbound-rtp の encoderImplementation が変わったため、テストが失敗しました。
Sora 側の設定は今後もトランスポートワイド輻輳制御を有効にするので設定に合わせてテスト結果の判定を修正します。
This pull request includes changes to the
tests/test_openh264.py
andtests/test_simulcast.py
files to update the expected implementation strings for various video codecs.Updates to expected implementation strings:
tests/test_openh264.py
: Modified the expected implementation string for the "H264" codec in thetest_openh264_simulcast
test case to use a single instance ofOpenH264
instead of three.tests/test_simulcast.py
: Updated the expected implementation strings for the "VP8", "VP9", and "AV1" codecs in thetest_simulcast
test case to use a single instance of the respective codec libraries instead of three.