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

  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
remote_ntp_time_estimator_unittest.cc 71 EXPECT_CALL(rtp_rtcp_, RemoteNTP(_, _, _, _, _))
77 UpdateRtcpTimestamp(&rtp_rtcp_, true);
82 MockRtpRtcp rtp_rtcp_; member in class:webrtc::RemoteNtpTimeEstimatorTest
88 EXPECT_CALL(rtp_rtcp_, RemoteNTP(_, _, _, _, _)).WillOnce(Return(0));
89 UpdateRtcpTimestamp(&rtp_rtcp_, false);
nack_rtx_unittest.cc 55 TestRtpFeedback(RtpRtcp* rtp_rtcp) : rtp_rtcp_(rtp_rtcp) {}
60 rtp_rtcp_->SetRemoteSSRC(ssrc);
64 RtpRtcp* rtp_rtcp_; member in class:TestRtpFeedback
  /external/chromium_org/third_party/webrtc/video/
video_receive_stream.cc 49 rtp_rtcp_ = ViERTP_RTCP::GetInterface(video_engine);
50 assert(rtp_rtcp_ != NULL);
53 rtp_rtcp_->SetNACKStatus(channel_, config_.rtp.nack.rtp_history_ms > 0);
54 rtp_rtcp_->SetKeyFrameRequestMethod(channel_, kViEKeyFrameRequestPliRtcp);
57 rtp_rtcp_->SetRTCPStatus(channel_, kRtcpCompound_RFC4585);
60 rtp_rtcp_->SetRTCPStatus(channel_, kRtcpNonCompound_RFC5506);
69 rtp_rtcp_->SetLocalSSRC(channel_, config_.rtp.local_ssrc);
76 rtp_rtcp_->SetRemoteSSRCType(channel_, kViEStreamTypeRtx, it->second.ssrc);
77 rtp_rtcp_->SetRtxReceivePayloadType(channel_, it->second.payload_type);
80 rtp_rtcp_->SetRembStatus(channel_, false, config_.rtp.remb)
    [all...]
video_send_stream.cc 131 rtp_rtcp_ = ViERTP_RTCP::GetInterface(video_engine);
132 assert(rtp_rtcp_ != NULL);
137 rtp_rtcp_->SetMinTransmitBitrate(channel_,
144 if (rtp_rtcp_->SetSendTimestampOffsetStatus(channel_, true, id) != 0)
147 if (rtp_rtcp_->SetSendAbsoluteSendTimeStatus(channel_, true, id) != 0)
154 rtp_rtcp_->SetRembStatus(channel_, true, false);
160 rtp_rtcp_->SetHybridNACKFECStatus(
166 rtp_rtcp_->SetFECStatus(
173 rtp_rtcp_->SetNACKStatus(channel_, config_.rtp.nack.rtp_history_ms > 0);
181 rtp_rtcp_->SetRTCPCName(channel_, rtcp_cname)
    [all...]
receive_statistics_proxy.cc 27 rtp_rtcp_(rtp_rtcp),
54 if (rtp_rtcp_->GetRemoteRTCPCName(channel_, rtcp_cname) != 0)
rampup_tests.cc 77 rtp_rtcp_.reset(RtpRtcp::CreateRtpRtcp(config));
78 rtp_rtcp_->SetREMBStatus(true);
79 rtp_rtcp_->SetRTCPStatus(kRtcpNonCompound);
119 rtp_rtcp_->SetREMBData(
121 rtp_rtcp_->Process();
156 rtp_rtcp_->SetRemoteSSRC(header.ssrc);
190 scoped_ptr<RtpRtcp> rtp_rtcp_; member in class:webrtc::__anon20088::StreamObserver
236 rtp_rtcp_.reset(RtpRtcp::CreateRtpRtcp(config));
237 rtp_rtcp_->SetREMBStatus(true);
238 rtp_rtcp_->SetRTCPStatus(kRtcpNonCompound)
405 scoped_ptr<RtpRtcp> rtp_rtcp_; member in class:webrtc::__anon20088::LowRateStreamObserver
    [all...]
receive_statistics_proxy.h 79 ViERTP_RTCP* const rtp_rtcp_; member in class:webrtc::internal::ReceiveStatisticsProxy
video_receive_stream.h 80 ViERTP_RTCP* rtp_rtcp_; member in class:webrtc::internal::VideoReceiveStream
video_send_stream.h 85 ViERTP_RTCP* rtp_rtcp_; member in class:webrtc::internal::VideoSendStream
call.cc 114 ViERTP_RTCP* rtp_rtcp_; member in class:webrtc::internal::Call
151 rtp_rtcp_ = ViERTP_RTCP::GetInterface(video_engine_);
152 assert(rtp_rtcp_ != NULL);
170 rtp_rtcp_->Release();
video_send_stream_tests.cc 1191 scoped_ptr<RtpRtcp> rtp_rtcp_; member in class:webrtc::BitrateObserver
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/
vie_channel.cc 120 rtp_rtcp_.reset(RtpRtcp::CreateRtpRtcp(configuration));
121 vie_receiver_.SetRtpRtcpModule(rtp_rtcp_.get());
131 if (rtp_rtcp_->SetSendingMediaStatus(false) != 0) {
134 if (module_process_thread_.RegisterModule(rtp_rtcp_.get()) != 0) {
137 rtp_rtcp_->SetKeyFrameRequestMethod(kKeyFrameReqFirRtp);
138 rtp_rtcp_->SetRTCPStatus(kRtcpCompound);
140 rtp_rtcp_->SetStorePacketsStatus(true, nack_history_size_sender_);
161 rtp_rtcp_->RegisterSendPayload(video_codec);
168 rtp_rtcp_->MaxDataPayloadLength());
180 module_process_thread_.DeRegisterModule(rtp_rtcp_.get())
    [all...]
vie_receiver.cc 47 rtp_rtcp_(NULL),
116 rtp_rtcp_ = module;
334 assert(rtp_rtcp_); // Should be set by owner at construction time.
335 int ret = rtp_rtcp_->IncomingRtcpPacket(rtcp_packet, rtcp_packet_length);
340 ntp_estimator_->UpdateRtcpTimestamp(rtp_receiver_->SSRC(), rtp_rtcp_);
416 rtp_rtcp_->RTT(rtp_receiver_->SSRC(), NULL, NULL, &min_rtt, NULL);
vie_receiver.h 113 RtpRtcp* rtp_rtcp_; member in class:webrtc::ViEReceiver
vie_channel.h 389 scoped_ptr<RtpRtcp> rtp_rtcp_; member in class:webrtc::ViEChannel
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/testAPI/
test_api_rtcp.cc 75 TestRtpFeedback(RtpRtcp* rtp_rtcp) : rtp_rtcp_(rtp_rtcp) {}
80 rtp_rtcp_->SetRemoteSSRC(ssrc);
84 RtpRtcp* rtp_rtcp_; member in class:TestRtpFeedback

Completed in 58 milliseconds