OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RtpState
(Results
1 - 11
of
11
) sorted by null
/external/webrtc/webrtc/video/
video_send_stream.h
50
const std::map<uint32_t,
RtpState
>& suspended_ssrcs);
69
typedef std::map<uint32_t,
RtpState
> RtpStateMap;
84
std::map<uint32_t,
RtpState
> suspended_ssrcs_;
vie_channel.h
137
void SetRtpStateForSsrc(uint32_t ssrc, const
RtpState
& rtp_state);
138
RtpState
GetRtpStateForSsrc(uint32_t ssrc);
video_send_stream.cc
119
const std::map<uint32_t,
RtpState
>& suspended_ssrcs)
499
std::map<uint32_t,
RtpState
> VideoSendStream::GetRtpStates() const {
500
std::map<uint32_t,
RtpState
> rtp_states;
vie_channel.cc
717
void ViEChannel::SetRtpStateForSsrc(uint32_t ssrc, const
RtpState
& rtp_state) {
725
RtpState
ViEChannel::GetRtpStateForSsrc(uint32_t ssrc) {
727
RtpState
rtp_state;
[
all
...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_sender.h
309
void SetRtpState(const
RtpState
& rtp_state);
310
RtpState
GetRtpState() const;
311
void SetRtxRtpState(const
RtpState
& rtp_state);
312
RtpState
GetRtxRtpState() const;
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_sender.cc
[
all
...]
rtp_rtcp_impl.cc
289
const
RtpState
& rtp_state) {
301
bool ModuleRtpRtcpImpl::GetRtpStateForSsrc(uint32_t ssrc,
RtpState
* rtp_state) {
/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;
rtp_rtcp_defines.h
173
struct
RtpState
{
174
RtpState
()
/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));
Completed in 4243 milliseconds