OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Rtx
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/webrtc/
video_receive_stream.h
121
//
RTX
settings for incoming video payloads that may be received.
RTX
is
123
struct
Rtx
{
124
Rtx
() : ssrc(0), payload_type(0) {}
126
// SSRCs to use for the
RTX
streams.
129
// Payload type to use for the
RTX
stream.
133
// Map from video RTP payload type ->
RTX
config.
134
typedef std::map<int,
Rtx
> RtxMap;
135
RtxMap
rtx
;
member in struct:webrtc::VideoReceiveStream::Config::Rtp
video_send_stream.h
101
struct
Rtx
{
102
Rtx
() : payload_type(-1), pad_with_redundant_payloads(false) {}
104
// SSRCs to use for the
RTX
streams.
107
// Payload type to use for the
RTX
stream.
111
// the
RTX
stream.
113
}
rtx
;
member in struct:webrtc::VideoSendStream::Config::Rtp
/external/chromium_org/third_party/webrtc/video/
video_send_stream.cc
42
std::string VideoSendStream::Config::Rtp::
Rtx
::ToString()
84
if (
rtx
.payload_type != 0 || !
rtx
.ssrcs.empty())
85
ss << ",
rtx
: " <<
rtx
.ToString();
423
if (config_.rtp.
rtx
.ssrcs.empty()) {
424
assert(!config_.rtp.
rtx
.pad_with_redundant_payloads);
428
// Set up
RTX
.
429
assert(config_.rtp.
rtx
.ssrcs.size() == config_.rtp.ssrcs.size());
430
for (size_t i = 0; i < config_.rtp.
rtx
.ssrcs.size(); ++i)
[
all
...]
Completed in 145 milliseconds