OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kMaxMediaPackets
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/rtp_rtcp/source/
forward_error_correction.h
34
static const unsigned int
kMaxMediaPackets
= 48u;
forward_error_correction.cc
39
enum { kMaxFecPackets = ForwardErrorCorrection::
kMaxMediaPackets
};
87
: generated_fec_packets_(
kMaxMediaPackets
), fec_packet_received_(false) {}
121
if (num_media_packets >
kMaxMediaPackets
) {
123
<< " media packets per frame. Max is " <<
kMaxMediaPackets
;
[
all
...]
/external/webrtc/webrtc/modules/rtp_rtcp/test/testFec/
test_fec.cc
100
const uint16_t
kMaxMediaPackets
[] = {
104
ASSERT_EQ(12,
kMaxMediaPackets
[1]) << "Max media packets for bursty mode not "
147
const uint32_t packetMaskMax =
kMaxMediaPackets
[mask_type_idx];
test_packet_masks_metrics.cc
60
const uint16_t
kMaxMediaPackets
[] = {kMaxNumberMediaPackets, 12};
731
const int packet_mask_max =
kMaxMediaPackets
[fec_mask_type];
[
all
...]
Completed in 230 milliseconds