HomeSort by relevance Sort by last modified time
    Searched refs:nack (Results 1 - 23 of 23) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/neteq/
nack_unittest.cc 11 #include "webrtc/modules/audio_coding/neteq/nack.h"
58 rtc::scoped_ptr<Nack> nack(Nack::Create(kNackThreshold));
59 nack->UpdateSampleRate(kSampleRateHz);
66 nack->UpdateLastReceivedPacket(seq_num, timestamp);
67 nack_list = nack->GetNackList(kShortRoundTripTimeMs);
70 nack_list = nack->GetNackList(kShortRoundTripTimeMs);
76 rtc::scoped_ptr<Nack> nack(Nack::Create(kNackThreshold))
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
nack_unittest.cc 11 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h"
21 using webrtc::rtcp::Nack;
48 Nack nack; local
49 nack.From(kSenderSsrc);
50 nack.To(kRemoteSsrc);
51 nack.WithList(kList, kListLength);
53 rtc::scoped_ptr<RawPacket> packet = nack.Build();
63 Nack parsed;
67 const Nack& const_parsed = parsed
75 Nack nack; local
105 Nack nack; local
125 Nack nack; local
144 Nack nack; local
165 Nack nack; local
    [all...]
  /external/webrtc/webrtc/
video_receive_stream.h 112 NackConfig nack; member in struct:webrtc::VideoReceiveStream::Config::Rtp
video_send_stream.h 115 NackConfig nack; member in struct:webrtc::VideoSendStream::Config::Rtp
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtcp_sender.cc 28 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h"
47 void NACKStringBuilder::PushNACK(uint16_t nack) {
49 stream_ << nack; local
50 } else if (nack == prevNack_ + 1) {
57 stream_ << "," << nack; local
60 prevNack_ = nack;
702 rtcp::Nack* nack = new rtcp::Nack(); local
703 nack->From(ssrc_)
    [all...]
rtp_rtcp_impl_unittest.cc 21 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.h"
219 rtcp::Nack nack; local
223 nack.From(sender ? kReceiverSsrc : kSenderSsrc);
224 nack.To(sender ? kSenderSsrc : kReceiverSsrc);
225 nack.WithList(list, kListLength);
226 rtc::scoped_ptr<rtcp::RawPacket> packet(nack.Build());
380 // Receive module sends a NACK.
387 // Send module receives the NACK.
457 // Send module sends a NACK
    [all...]
rtcp_sender.h 44 void PushNACK(uint16_t nack);
rtcp_sender_unittest.cc 485 EXPECT_EQ(1, parser()->nack()->num_packets());
486 EXPECT_EQ(kSenderSsrc, parser()->nack()->Ssrc());
487 EXPECT_EQ(kRemoteSsrc, parser()->nack()->MediaSsrc());
  /external/webrtc/webrtc/video/
vie_encoder.cc 308 // TODO(pwestin): Workaround until nack is configured as a time and not
419 void ViEEncoder::SetProtectionMethod(bool nack, bool fec) {
424 nack ? webrtc::kProtectionNackFEC : kProtectionFEC;
426 protection_mode = nack ? kProtectionNack : kProtectionNone;
vie_encoder.h 102 void SetProtectionMethod(bool nack, bool fec);
end_to_end_tests.cc 306 send_config->rtp.nack.rtp_history_ms =
307 (*receive_configs)[0].rtp.nack.rtp_history_ms = kNackRtpHistoryMs;
439 send_config->rtp.nack.rtp_history_ms = kNackRtpHistoryMs;
440 (*receive_configs)[0].rtp.nack.rtp_history_ms = kNackRtpHistoryMs;
536 // TODO(pbos): Run this test with combined NACK/FEC enabled as well.
538 // (*receive_configs)[0].rtp.nack.rtp_history_ms = rtp_history_ms;
539 // send_config->rtp.nack.rtp_history_ms = rtp_history_ms;
641 // At low RTT (< kLowRttNackMs) -> NACK only, no FEC.
663 // Configure hybrid NACK/FEC.
664 send_config->rtp.nack.rtp_history_ms = kNackRtpHistoryMs
    [all...]
video_receive_stream.cc 84 ss << ", nack: {rtp_history_ms: " << nack.rtp_history_ms << '}';
174 vie_channel_->SetProtectionMode(config_.rtp.nack.rtp_history_ms > 0, false,
video_send_stream.cc 83 ss << ", nack: {rtp_history_ms: " << nack.rtp_history_ms << '}';
195 // Enable NACK, FEC or both.
196 const bool enable_protection_nack = config_.rtp.nack.rtp_history_ms > 0;
replay.cc 225 receive_config.rtp.nack.rtp_history_ms = 1000;
video_quality_test.cc 635 // use that feature with pack loss, since the NACK request would end up
800 video_send_config_.rtp.nack.rtp_history_ms = kNackRtpHistoryMs;
823 video_receive_configs_[i].rtp.nack.rtp_history_ms = kNackRtpHistoryMs;
    [all...]
video_send_stream_tests.cc 454 // Nack second packet after receiving the third one.
498 send_config->rtp.nack.rtp_history_ms = kNackRtpHistoryMs;
505 EXPECT_TRUE(Wait()) << "Timed out while waiting for NACK retransmission.";
844 send_config->rtp.nack.rtp_history_ms = kNackRtpHistoryMs;
    [all...]
  /external/webrtc/webrtc/call/
rampup_tests.cc 141 send_config->rtp.nack.rtp_history_ms = test::CallTest::kNackRtpHistoryMs;
160 recv_config.rtp.nack.rtp_history_ms = send_config->rtp.nack.rtp_history_ms;
call_perf_tests.cc 299 video_send_config_.rtp.nack.rtp_history_ms = kNackRtpHistoryMs;
306 video_receive_configs_[0].rtp.nack.rtp_history_ms = 1000;
  /external/webrtc/webrtc/test/
rtcp_packet_parser.h 336 class Nack : public PacketType {
338 Nack() {}
339 virtual ~Nack() {}
347 void Set(const RTCPUtility::RTCPPacketRTPFBNACK& nack) {
348 nack_ = nack;
652 Nack* nack() { return &nack_; }
687 Nack nack_;
  /external/webrtc/talk/media/webrtc/
fakewebrtcvoiceengine.h 157 nack(false),
178 bool nack; member in struct:cricket::FakeWebRtcVoiceEngine::Channel
251 return channels_[channel]->nack;
646 channels_[channel]->nack = enable;
webrtcvideoengine2_unittest.cc     [all...]
webrtcvideoengine2.cc 319 // This constant is really an on/off, lower-level configurable NACK history
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
tlan.c 1100 u8 nack; local
1128 nack = TLan_GetBit(TLAN_NET_SIO_MDATA, sio); /* Check for ACK */
1130 if (nack) { /* No ACK, so fake it */
    [all...]

Completed in 800 milliseconds