From a381c9373aaa58c1af35bfae7c431ac224e7841b Mon Sep 17 00:00:00 2001 From: voluntas Date: Mon, 30 Dec 2024 15:28:17 +0900 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E6=97=A6=E3=80=81=E3=83=AD=E3=83=BC?= =?UTF-8?q?=E3=82=AB=E3=83=AB=E3=81=A7=E9=80=9A=E3=81=A3=E3=81=9F=E7=92=B0?= =?UTF-8?q?=E5=A2=83=E3=81=A7=20push=20=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_macos.py | 4 ++-- tests/test_openh264.py | 2 +- tests/test_simulcast.py | 3 +-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/tests/test_macos.py b/tests/test_macos.py index cc7a579..f6d9255 100644 --- a/tests/test_macos.py +++ b/tests/test_macos.py @@ -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): diff --git a/tests/test_openh264.py b/tests/test_openh264.py index 752acef..594e9dc 100644 --- a/tests/test_openh264.py +++ b/tests/test_openh264.py @@ -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): diff --git a/tests/test_simulcast.py b/tests/test_simulcast.py index e41862d..27ebfdb 100644 --- a/tests/test_simulcast.py +++ b/tests/test_simulcast.py @@ -10,7 +10,7 @@ ("video_codec_type", "expected_implementation"), [ ("VP8", "SimulcastEncoderAdapter (libvpx)"), - ("VP9", "SimulcastEncoderAdapter (libvpx)"), + ("VP9", "SimulcastEncoderAdapter (libvpx, libvpx, libvpx)"), ("AV1", "SimulcastEncoderAdapter (libaom)"), ], ) @@ -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 -