Skip to content

Commit

Permalink
一旦、ローカルで通った環境で push する
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Dec 30, 2024
1 parent 62e594f commit a381c93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/test_macos.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def test_macos_video_hwa_sendonly(setup, video_codec_type):
@pytest.mark.parametrize(
("video_codec_type", "expected_implementation"),
[
("H264", "SimulcastEncoderAdapter (VideoToolbox)"),
("H265", "SimulcastEncoderAdapter (VideoToolbox)"),
("H264", "SimulcastEncoderAdapter (VideoToolbox, VideoToolbox)"),
("H265", "SimulcastEncoderAdapter (VideoToolbox, VideoToolbox)"),
],
)
def test_macos_simulcast(setup, video_codec_type, expected_implementation):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_openh264.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_openh264_sendonly_recvonly(setup):
@pytest.mark.parametrize(
"video_codec_type,expected_implementation",
[
("H264", "SimulcastEncoderAdapter (OpenH264)"),
("H264", "SimulcastEncoderAdapter (OpenH264, OpenH264)"),
],
)
def test_openh264_simulcast(setup, video_codec_type, expected_implementation):
Expand Down
3 changes: 1 addition & 2 deletions tests/test_simulcast.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
("video_codec_type", "expected_implementation"),
[
("VP8", "SimulcastEncoderAdapter (libvpx)"),
("VP9", "SimulcastEncoderAdapter (libvpx)"),
("VP9", "SimulcastEncoderAdapter (libvpx, libvpx, libvpx)"),
("AV1", "SimulcastEncoderAdapter (libaom)"),
],
)
Expand Down Expand Up @@ -65,4 +65,3 @@ def test_simulcast(setup, video_codec_type, expected_implementation):
assert rtp_stat["encoderImplementation"] == expected_implementation
assert rtp_stat["bytesSent"] > 0
assert rtp_stat["packetsSent"] > 0

0 comments on commit a381c93

Please sign in to comment.