OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetRtpStateForSsrc
(Results
1 - 7
of
7
) sorted by null
/external/webrtc/webrtc/modules/rtp_rtcp/include/
rtp_rtcp.h
207
virtual bool
GetRtpStateForSsrc
(uint32_t ssrc, RtpState* rtp_state) = 0;
/external/webrtc/webrtc/video/
video_send_stream.cc
503
rtp_states[ssrc] = vie_channel_->
GetRtpStateForSsrc
(ssrc);
508
rtp_states[ssrc] = vie_channel_->
GetRtpStateForSsrc
(ssrc);
vie_channel.h
138
RtpState
GetRtpStateForSsrc
(uint32_t ssrc);
vie_channel.cc
725
RtpState ViEChannel::
GetRtpStateForSsrc
(uint32_t ssrc) {
729
if (rtp_rtcp->
GetRtpStateForSsrc
(ssrc, &rtp_state))
[
all
...]
/external/webrtc/webrtc/modules/rtp_rtcp/mocks/
mock_rtp_rtcp.h
91
MOCK_METHOD2(
GetRtpStateForSsrc
, bool(uint32_t ssrc, RtpState* rtp_state));
/external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_rtcp_impl.h
76
bool
GetRtpStateForSsrc
(uint32_t ssrc, RtpState* rtp_state) override;
rtp_rtcp_impl.cc
301
bool ModuleRtpRtcpImpl::
GetRtpStateForSsrc
(uint32_t ssrc, RtpState* rtp_state) {
Completed in 123 milliseconds