Home
last modified time | relevance | path

Searched refs:ulpfec (Results 1 – 25 of 27) sorted by relevance

12

/external/webrtc/pc/
Drtp_parameters_conversion_unittest.cc547 cricket::VideoCodec ulpfec; in TEST() local
548 ulpfec.name = "ulpfec"; in TEST()
549 ulpfec.id = 103; in TEST()
550 ulpfec.clockrate = 90000; in TEST()
568 {vp8, ulpfec, rtx, rtx2}, {{"uri", 1}, {"uri2", 3}}); in TEST()
582 {vp8, red, ulpfec, rtx}, cricket::RtpHeaderExtensions()); in TEST()
606 cricket::VideoCodec ulpfec; in TEST() local
607 ulpfec.name = "ulpfec"; in TEST()
608 ulpfec.id = 103; in TEST()
609 ulpfec.clockrate = 90000; in TEST()
[all …]
/external/webrtc/call/
Drtp_video_sender.cc78 auto IsRedEnabled = [&]() { return rtp_config.ulpfec.red_payload_type >= 0; }; in ShouldDisableRedAndUlpfec()
80 return rtp_config.ulpfec.ulpfec_payload_type >= 0; in ShouldDisableRedAndUlpfec()
173 } else if (rtp.ulpfec.red_payload_type >= 0 && in MaybeCreateFecGenerator()
174 rtp.ulpfec.ulpfec_payload_type >= 0 && in MaybeCreateFecGenerator()
179 rtp.ulpfec.red_payload_type, rtp.ulpfec.ulpfec_payload_type, clock); in MaybeCreateFecGenerator()
281 rtp_config.ulpfec.red_payload_type != -1) { in CreateRtpStreamSenders()
282 video_config.red_payload_type = rtp_config.ulpfec.red_payload_type; in CreateRtpStreamSenders()
669 if (rtp_config_.ulpfec.red_payload_type != -1 && in ConfigureSsrcs()
670 rtp_config_.ulpfec.red_rtx_payload_type != -1) { in ConfigureSsrcs()
673 rtp_config_.ulpfec.red_rtx_payload_type, in ConfigureSsrcs()
[all …]
Drampup_tests.cc211 send_config->rtp.ulpfec.ulpfec_payload_type = in ModifyVideoConfigs()
213 send_config->rtp.ulpfec.red_payload_type = test::CallTest::kRedPayloadType; in ModifyVideoConfigs()
215 send_config->rtp.ulpfec.red_rtx_payload_type = in ModifyVideoConfigs()
234 send_config->rtp.ulpfec.red_payload_type; in ModifyVideoConfigs()
236 send_config->rtp.ulpfec.ulpfec_payload_type; in ModifyVideoConfigs()
239 [send_config->rtp.ulpfec.red_rtx_payload_type] = in ModifyVideoConfigs()
240 send_config->rtp.ulpfec.red_payload_type; in ModifyVideoConfigs()
Drtp_config.h124 UlpfecConfig ulpfec; member
Drtp_config.cc105 ss << ", ulpfec: " << ulpfec.ToString(); in ToString()
Dcall_perf_tests.cc262 GetVideoSendConfig()->rtp.ulpfec.red_payload_type = kRedPayloadType; in TestAudioVideoSync()
263 GetVideoSendConfig()->rtp.ulpfec.ulpfec_payload_type = kUlpfecPayloadType; in TestAudioVideoSync()
/external/webrtc/video/end_to_end_tests/
Dretransmission_tests.cc456 send_config->rtp.ulpfec.ulpfec_payload_type = kUlpfecPayloadType; in DecodesRetransmittedFrame()
457 send_config->rtp.ulpfec.red_payload_type = kRedPayloadType; in DecodesRetransmittedFrame()
459 send_config->rtp.ulpfec.red_rtx_payload_type = kRtxRedPayloadType; in DecodesRetransmittedFrame()
461 send_config->rtp.ulpfec.ulpfec_payload_type; in DecodesRetransmittedFrame()
463 send_config->rtp.ulpfec.red_payload_type; in DecodesRetransmittedFrame()
Dhistogram_tests.cc100 send_config->rtp.ulpfec.ulpfec_payload_type = kUlpfecPayloadType; in VerifyHistogramStats()
101 send_config->rtp.ulpfec.red_payload_type = kRedPayloadType; in VerifyHistogramStats()
118 send_config->rtp.ulpfec.red_rtx_payload_type = kRtxRedPayloadType; in VerifyHistogramStats()
Dfec_tests.cc128 send_config->rtp.ulpfec.red_payload_type = kRedPayloadType; in TEST_F()
129 send_config->rtp.ulpfec.ulpfec_payload_type = kUlpfecPayloadType; in TEST_F()
473 send_config->rtp.ulpfec.red_payload_type = kRedPayloadType; in TEST_F()
474 send_config->rtp.ulpfec.ulpfec_payload_type = kUlpfecPayloadType; in TEST_F()
Dconfig_tests.cc71 VerifyEmptyUlpfecConfig(default_send_config.rtp.ulpfec); in TEST_F()
/external/webrtc/video/
Dvideo_send_stream.cc50 if (config.ulpfec.ulpfec_payload_type >= 0) { in CalculateMaxHeaderSize()
55 if (config.ulpfec.red_payload_type >= 0) { in CalculateMaxHeaderSize()
Dvideo_loopback.cc396 params.video[0].ulpfec = absl::GetFlag(FLAGS_use_ulpfec); in Loopback()
Dsv_loopback.cc641 params.video[camera_idx].ulpfec = absl::GetFlag(FLAGS_use_ulpfec); in Loopback()
Dvideo_send_stream_tests.cc603 send_config->rtp.ulpfec.red_payload_type = in ModifyVideoConfigs()
605 send_config->rtp.ulpfec.ulpfec_payload_type = in ModifyVideoConfigs()
616 send_config->rtp.ulpfec.red_payload_type; in ModifyVideoConfigs()
618 send_config->rtp.ulpfec.ulpfec_payload_type; in ModifyVideoConfigs()
1207 send_config->rtp.ulpfec.red_payload_type = kRedPayloadType; in TestPacketFragmentationSize()
1208 send_config->rtp.ulpfec.ulpfec_payload_type = kUlpfecPayloadType; in TestPacketFragmentationSize()
Dvideo_quality_test.cc543 RTC_CHECK(!params_.video[video_idx].ulpfec || num_video_streams_ == 1); in CheckParamsAndInjectionComponents()
937 if (params_.video[0].ulpfec) { in SetupVideo()
/external/webrtc/api/test/
Dvideo_quality_test_fixture.h58 bool ulpfec = false; member
/external/webrtc/media/engine/
Dwebrtc_video_engine.cc1664 payload_type == codec.ulpfec.red_rtx_payload_type || in OnPacketReceived()
1665 payload_type == codec.ulpfec.ulpfec_payload_type) { in OnPacketReceived()
2105 parameters_.config.rtp.ulpfec = codec_settings.ulpfec; in SetCodec()
2791 config_.rtp.ulpfec_payload_type = codec.ulpfec.ulpfec_payload_type; in ConfigureCodecs()
2792 config_.rtp.red_payload_type = codec.ulpfec.red_payload_type; in ConfigureCodecs()
2797 if (codec.ulpfec.red_rtx_payload_type != -1) { in ConfigureCodecs()
2799 .rtx_associated_payload_types[codec.ulpfec.red_rtx_payload_type] = in ConfigureCodecs()
2800 codec.ulpfec.red_payload_type; in ConfigureCodecs()
3142 return codec == other.codec && ulpfec == other.ulpfec && in operator ==()
3150 return a.codec == b.codec && a.ulpfec == b.ulpfec && in EqualsDisregardingFlexfec()
[all …]
Dwebrtc_video_engine.h271 webrtc::UlpfecConfig ulpfec; member
Dwebrtc_video_engine_unittest.cc183 if (config.rtp.ulpfec.red_rtx_payload_type != -1) { in VerifySendStreamHasRtxTypes()
184 it = rtx_types.find(config.rtp.ulpfec.red_payload_type); in VerifySendStreamHasRtxTypes()
186 it->second == config.rtp.ulpfec.red_rtx_payload_type); in VerifySendStreamHasRtxTypes()
3918 EXPECT_EQ(GetEngineCodec("ulpfec").id, config.rtp.ulpfec.ulpfec_payload_type); in TEST_F()
3919 EXPECT_EQ(GetEngineCodec("red").id, config.rtp.ulpfec.red_payload_type); in TEST_F()
4164 EXPECT_EQ(-1, config.rtp.ulpfec.ulpfec_payload_type); in TEST_F()
4165 EXPECT_EQ(-1, config.rtp.ulpfec.red_payload_type); in TEST_F()
4335 EXPECT_EQ(GetEngineCodec("ulpfec").id, config.rtp.ulpfec.ulpfec_payload_type); in TEST_F()
4342 EXPECT_EQ(-1, config.rtp.ulpfec.ulpfec_payload_type) in TEST_F()
/external/webrtc/test/fuzzers/corpora/sdp-corpus/
Dopera-2.sdp58 a=rtpmap:117 ulpfec/90000
Dopera-1.sdp62 a=rtpmap:117 ulpfec/90000
/external/webrtc/test/scenario/
Dvideo_stream.cc148 send_config.rtp.ulpfec.red_payload_type = CallTest::kRedPayloadType; in CreateVideoSendStreamConfig()
149 send_config.rtp.ulpfec.ulpfec_payload_type = CallTest::kUlpfecPayloadType; in CreateVideoSendStreamConfig()
150 send_config.rtp.ulpfec.red_rtx_payload_type = CallTest::kRtxRedPayloadType; in CreateVideoSendStreamConfig()
/external/webrtc/test/
Dcall_test.cc306 send_config->rtp.ulpfec.red_payload_type = kRedPayloadType; in SetSendUlpFecConfig()
307 send_config->rtp.ulpfec.ulpfec_payload_type = kUlpfecPayloadType; in SetSendUlpFecConfig()
308 send_config->rtp.ulpfec.red_rtx_payload_type = kRtxRedPayloadType; in SetSendUlpFecConfig()
/external/webrtc/sdk/objc/unittests/
DRTCSessionDescriptionTest.mm115 "a=rtpmap:117 ulpfec/90000\r\n"
/external/python/cpython3/Lib/test/
Dmime.types235 application/ulpfec
1072 audio/ulpfec
1235 text/ulpfec
1298 video/ulpfec

12