From b37dad72b41acce724bb07b573f3ef754221b758 Mon Sep 17 00:00:00 2001 From: miosakuma Date: Mon, 30 Dec 2024 13:16:49 +0900 Subject: [PATCH] =?UTF-8?q?transport-wide-cc-extensions-01=20=E3=81=AE?= =?UTF-8?q?=E5=87=BA=E5=8A=9B=E3=81=AB=E5=90=88=E3=82=8F=E3=81=9B=E3=81=A6?= =?UTF-8?q?=E3=83=86=E3=82=B9=E3=83=88=E3=82=92=E5=A4=89=E6=9B=B4=E3=81=99?= =?UTF-8?q?=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 | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/test_macos.py b/tests/test_macos.py index 0095402..cc7a579 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, VideoToolbox, VideoToolbox)"), - ("H265", "SimulcastEncoderAdapter (VideoToolbox, VideoToolbox, VideoToolbox)"), + ("H264", "SimulcastEncoderAdapter (VideoToolbox)"), + ("H265", "SimulcastEncoderAdapter (VideoToolbox)"), ], ) def test_macos_simulcast(setup, video_codec_type, expected_implementation): diff --git a/tests/test_openh264.py b/tests/test_openh264.py index 73b0c51..752acef 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, OpenH264, OpenH264)"), + ("H264", "SimulcastEncoderAdapter (OpenH264)"), ], ) def test_openh264_simulcast(setup, video_codec_type, expected_implementation): diff --git a/tests/test_simulcast.py b/tests/test_simulcast.py index 292c388..e41862d 100644 --- a/tests/test_simulcast.py +++ b/tests/test_simulcast.py @@ -9,9 +9,9 @@ @pytest.mark.parametrize( ("video_codec_type", "expected_implementation"), [ - ("VP8", "SimulcastEncoderAdapter (libvpx, libvpx, libvpx)"), - ("VP9", "SimulcastEncoderAdapter (libvpx, libvpx, libvpx)"), - ("AV1", "SimulcastEncoderAdapter (libaom, libaom, libaom)"), + ("VP8", "SimulcastEncoderAdapter (libvpx)"), + ("VP9", "SimulcastEncoderAdapter (libvpx)"), + ("AV1", "SimulcastEncoderAdapter (libaom)"), ], ) def test_simulcast(setup, video_codec_type, expected_implementation):