/external/chromium_org/net/quic/ |
quic_fec_group_test.cc | 62 // If we're out of order, send the FEC packet in the position of the 63 // lost packet. Otherwise send all (non-missing) packets, then FEC. 65 // Update the FEC state for each non-lost packet. 69 QuicFecData fec; local 70 fec.fec_group = 0; 71 fec.redundancy = StringPiece(redundancy.get(), strlen(kData[0])); 73 fec)); 84 // Update the FEC state for each non-lost packet. 100 QuicFecData fec; local 101 fec.fec_group = 0 158 QuicFecData fec; local 207 QuicFecData fec; local 231 QuicFecData fec; local [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/opus/ |
opus_fec_test.cc | 28 bool fec; member in struct:webrtc::mode 178 if (mode_set[i].fec) { 182 printf("FEC is ON, target at packet loss rate %d percent.\n", 186 printf("FEC is OFF.\n"); 197 // Check if payload has FEC. 198 int16_t fec = WebRtcOpus_PacketHasFec(&bit_stream_[0], encoded_bytes_); local 200 // If FEC is disabled or the target packet loss rate is set to 0, there 201 // should be no FEC in the bit stream. 202 if (!mode_set[i].fec || mode_set[i].target_packet_loss_rate == 0) { 203 EXPECT_EQ(fec, 0) [all...] |
/external/chromium_org/third_party/webrtc/ |
video_send_stream.h | 97 FecConfig fec; member in struct:webrtc::VideoSendStream::Config::Rtp
|
video_receive_stream.h | 119 FecConfig fec; member in struct:webrtc::VideoReceiveStream::Config::Rtp
|
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtcvideoengine2.h | 285 webrtc::FecConfig fec; member in struct:cricket::WebRtcVideoChannel2::VideoCodecSettings
|
/external/chromium_org/third_party/opus/src/tests/ |
test_opus_decode.c | 55 int out_samples,fec; local 105 for(fec=0;fec<2;fec++) 109 out_samples = opus_decode(dec[t], 0, 0, outbuf, 120/factor, fec); 115 out_samples = opus_decode(dec[t], 0, 0, outbuf, 120/factor+2, fec); 119 out_samples = opus_decode(dec[t], 0, -1, outbuf, 120/factor, fec); 121 out_samples = opus_decode(dec[t], 0, 1, outbuf, 120/factor, fec); 123 out_samples = opus_decode(dec[t], 0, 10, outbuf, 120/factor, fec); 125 out_samples = opus_decode(dec[t], 0, fast_rand(), outbuf, 120/factor, fec); [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/ |
delay_test.cc | 39 DEFINE_bool(fec, false, "Use Forward Error Correction (FEC)."); 53 bool fec; member in struct:webrtc::__anon20462::AcmSettings 139 "ACM: DTX %s, FEC %s\n" 143 config.acm.fec ? "on" : "off", 164 ASSERT_EQ(0, acm_a_->SetREDStatus(config.fec)) << 264 test_setting.acm.fec = FLAGS_fec;
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
audio_decoder_impl.cc | 491 int fec; local 492 fec = WebRtcOpus_PacketHasFec(encoded, static_cast<int>(encoded_len)); 493 return (fec == 1);
|
/external/libopus/tests/ |
test_opus_decode.c | 55 int out_samples,fec; local 105 for(fec=0;fec<2;fec++) 109 out_samples = opus_decode(dec[t], 0, 0, outbuf, 120/factor, fec); 115 out_samples = opus_decode(dec[t], 0, 0, outbuf, 120/factor+2, fec); 119 out_samples = opus_decode(dec[t], 0, -1, outbuf, 120/factor, fec); 121 out_samples = opus_decode(dec[t], 0, 1, outbuf, 120/factor, fec); 123 out_samples = opus_decode(dec[t], 0, 10, outbuf, 120/factor, fec); 125 out_samples = opus_decode(dec[t], 0, fast_rand(), outbuf, 120/factor, fec); [all...] |
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/testFec/ |
test_fec.cc | 12 * Test application for core FEC algorithm. Calls encoding and decoding 93 // FEC mask types. 108 ForwardErrorCorrection fec; local 184 printf("%u media packets, %u FEC packets, %u numImpPackets, " 227 // Reset the sequence number here for each FEC code/mask tested 229 // old FEC packets in list are dropped if sequence number wrap 247 // FEC encoder. In fact the FEC decoder will set the 255 // FEC is applied to a whole frame. 259 // Only push one (fake) frame to the FEC [all...] |