Home
last modified time | relevance | path

Searched refs:rtp_state (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
Drtp_sender.cc1688 void RTPSender::SetRtpState(const RtpState& rtp_state) { in SetRtpState() argument
1689 SetStartTimestamp(rtp_state.start_timestamp, true); in SetRtpState()
1691 sequence_number_ = rtp_state.sequence_number; in SetRtpState()
1693 timestamp_ = rtp_state.timestamp; in SetRtpState()
1694 capture_time_ms_ = rtp_state.capture_time_ms; in SetRtpState()
1695 last_timestamp_time_ms_ = rtp_state.last_timestamp_time_ms; in SetRtpState()
1696 media_has_been_sent_ = rtp_state.media_has_been_sent; in SetRtpState()
1713 void RTPSender::SetRtxRtpState(const RtpState& rtp_state) { in SetRtxRtpState() argument
1715 sequence_number_rtx_ = rtp_state.sequence_number; in SetRtxRtpState()
Drtp_rtcp_impl.cc341 const RtpState& rtp_state) { in SetRtpStateForSsrc() argument
343 rtp_sender_.SetRtpState(rtp_state); in SetRtpStateForSsrc()
347 rtp_sender_.SetRtxRtpState(rtp_state); in SetRtpStateForSsrc()
353 child_modules_[i]->SetRtpStateForSsrc(ssrc, rtp_state); in SetRtpStateForSsrc()
357 bool ModuleRtpRtcpImpl::GetRtpStateForSsrc(uint32_t ssrc, RtpState* rtp_state) { in GetRtpStateForSsrc() argument
359 *rtp_state = rtp_sender_.GetRtpState(); in GetRtpStateForSsrc()
364 *rtp_state = rtp_sender_.GetRtxRtpState(); in GetRtpStateForSsrc()
370 if (child_modules_[i]->GetRtpStateForSsrc(ssrc, rtp_state)) in GetRtpStateForSsrc()
Drtp_rtcp_impl.h77 const RtpState& rtp_state) OVERRIDE;
78 virtual bool GetRtpStateForSsrc(uint32_t ssrc, RtpState* rtp_state) OVERRIDE;
Drtp_sender.h281 void SetRtpState(const RtpState& rtp_state);
283 void SetRtxRtpState(const RtpState& rtp_state);
/external/chromium_org/third_party/webrtc/video/
Dcall.cc246 VideoSendStream::RtpStateMap rtp_state = send_stream_impl->GetRtpStates(); in DestroyVideoSendStream() local
248 for (VideoSendStream::RtpStateMap::iterator it = rtp_state.begin(); in DestroyVideoSendStream()
249 it != rtp_state.end(); in DestroyVideoSendStream()
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/interface/
Drtp_rtcp.h210 const RtpState& rtp_state) = 0;
211 virtual bool GetRtpStateForSsrc(uint32_t ssrc, RtpState* rtp_state) = 0;
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/mocks/
Dmock_rtp_rtcp.h89 void(uint32_t ssrc, const RtpState& rtp_state));
90 MOCK_METHOD2(GetRtpStateForSsrc, bool(uint32_t ssrc, RtpState* rtp_state));
/external/chromium_org/third_party/webrtc/video_engine/
Dvie_rtp_rtcp_impl.h51 const RtpState& rtp_state) OVERRIDE;
Dvie_channel.cc923 void ViEChannel::SetRtpStateForSsrc(uint32_t ssrc, const RtpState& rtp_state) { in SetRtpStateForSsrc() argument
925 default_rtp_rtcp_->SetRtpStateForSsrc(ssrc, rtp_state); in SetRtpStateForSsrc()
931 RtpState rtp_state; in GetRtpStateForSsrc() local
932 if (!default_rtp_rtcp_->GetRtpStateForSsrc(ssrc, &rtp_state)) { in GetRtpStateForSsrc()
935 return rtp_state; in GetRtpStateForSsrc()
Dvie_rtp_rtcp_impl.cc261 const RtpState& rtp_state) { in SetRtpStateForSsrc() argument
271 vie_channel->SetRtpStateForSsrc(ssrc, rtp_state); in SetRtpStateForSsrc()
Dvie_channel.h156 void SetRtpStateForSsrc(uint32_t ssrc, const RtpState& rtp_state);
/external/chromium_org/third_party/webrtc/video_engine/include/
Dvie_rtp_rtcp.h159 const RtpState& rtp_state) {} in SetRtpStateForSsrc() argument