OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rtp_state
(Results
1 - 9
of
9
) sorted by null
/external/webrtc/webrtc/modules/rtp_rtcp/include/
rtp_rtcp.h
206
const RtpState&
rtp_state
) = 0;
207
virtual bool GetRtpStateForSsrc(uint32_t ssrc, RtpState*
rtp_state
) = 0;
/external/webrtc/webrtc/modules/rtp_rtcp/mocks/
mock_rtp_rtcp.h
90
bool(uint32_t ssrc, const RtpState&
rtp_state
));
91
MOCK_METHOD2(GetRtpStateForSsrc, bool(uint32_t ssrc, RtpState*
rtp_state
));
/external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_rtcp_impl.h
75
bool SetRtpStateForSsrc(uint32_t ssrc, const RtpState&
rtp_state
) override;
76
bool GetRtpStateForSsrc(uint32_t ssrc, RtpState*
rtp_state
) override;
rtp_rtcp_impl.cc
289
const RtpState&
rtp_state
) {
291
rtp_sender_.SetRtpState(
rtp_state
);
295
rtp_sender_.SetRtxRtpState(
rtp_state
);
301
bool ModuleRtpRtcpImpl::GetRtpStateForSsrc(uint32_t ssrc, RtpState*
rtp_state
) {
303
*
rtp_state
= rtp_sender_.GetRtpState();
307
*
rtp_state
= rtp_sender_.GetRtxRtpState();
rtp_sender.cc
[
all
...]
rtp_sender.h
309
void SetRtpState(const RtpState&
rtp_state
);
311
void SetRtxRtpState(const RtpState&
rtp_state
);
/external/webrtc/webrtc/video/
vie_channel.cc
717
void ViEChannel::SetRtpStateForSsrc(uint32_t ssrc, const RtpState&
rtp_state
) {
720
if (rtp_rtcp->SetRtpStateForSsrc(ssrc,
rtp_state
))
727
RtpState
rtp_state
;
local
729
if (rtp_rtcp->GetRtpStateForSsrc(ssrc, &
rtp_state
))
730
return
rtp_state
;
733
return
rtp_state
;
[
all
...]
vie_channel.h
137
void SetRtpStateForSsrc(uint32_t ssrc, const RtpState&
rtp_state
);
/external/webrtc/webrtc/call/
call.cc
425
VideoSendStream::RtpStateMap
rtp_state
= send_stream_impl->GetRtpStates();
local
427
for (VideoSendStream::RtpStateMap::iterator it =
rtp_state
.begin();
428
it !=
rtp_state
.end();
Completed in 65 milliseconds