/external/webrtc/pc/ |
D | rtp_parameters_conversion_unittest.cc | 547 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/ |
D | rtp_video_sender.cc | 78 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 …]
|
D | rampup_tests.cc | 211 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()
|
D | rtp_config.h | 124 UlpfecConfig ulpfec; member
|
D | rtp_config.cc | 105 ss << ", ulpfec: " << ulpfec.ToString(); in ToString()
|
D | call_perf_tests.cc | 262 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/ |
D | retransmission_tests.cc | 456 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()
|
D | histogram_tests.cc | 100 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()
|
D | fec_tests.cc | 128 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()
|
D | config_tests.cc | 71 VerifyEmptyUlpfecConfig(default_send_config.rtp.ulpfec); in TEST_F()
|
/external/webrtc/video/ |
D | video_send_stream.cc | 50 if (config.ulpfec.ulpfec_payload_type >= 0) { in CalculateMaxHeaderSize() 55 if (config.ulpfec.red_payload_type >= 0) { in CalculateMaxHeaderSize()
|
D | video_loopback.cc | 396 params.video[0].ulpfec = absl::GetFlag(FLAGS_use_ulpfec); in Loopback()
|
D | sv_loopback.cc | 641 params.video[camera_idx].ulpfec = absl::GetFlag(FLAGS_use_ulpfec); in Loopback()
|
D | video_send_stream_tests.cc | 603 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()
|
D | video_quality_test.cc | 543 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/ |
D | video_quality_test_fixture.h | 58 bool ulpfec = false; member
|
/external/webrtc/media/engine/ |
D | webrtc_video_engine.cc | 1664 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 …]
|
D | webrtc_video_engine.h | 271 webrtc::UlpfecConfig ulpfec; member
|
D | webrtc_video_engine_unittest.cc | 183 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/ |
D | opera-2.sdp | 58 a=rtpmap:117 ulpfec/90000
|
D | opera-1.sdp | 62 a=rtpmap:117 ulpfec/90000
|
/external/webrtc/test/scenario/ |
D | video_stream.cc | 148 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/ |
D | call_test.cc | 306 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/ |
D | RTCSessionDescriptionTest.mm | 115 "a=rtpmap:117 ulpfec/90000\r\n"
|
/external/python/cpython3/Lib/test/ |
D | mime.types | 235 application/ulpfec 1072 audio/ulpfec 1235 text/ulpfec 1298 video/ulpfec
|