/external/webrtc/webrtc/modules/audio_coding/codecs/opus/ |
audio_decoder_opus.cc | 85 int fec; local 86 fec = WebRtcOpus_PacketHasFec(encoded, encoded_len); 87 return (fec == 1);
|
opus_fec_test.cc | 29 bool fec; member in struct:webrtc::mode 181 if (mode_set[i].fec) { 185 printf("FEC is ON, target at packet loss rate %d percent.\n", 189 printf("FEC is OFF.\n"); 200 // Check if payload has FEC. 201 int fec = WebRtcOpus_PacketHasFec(&bit_stream_[0], encoded_bytes_); local 203 // If FEC is disabled or the target packet loss rate is set to 0, there 204 // should be no FEC in the bit stream. 205 if (!mode_set[i].fec || mode_set[i].target_packet_loss_rate == 0) { 206 EXPECT_EQ(fec, 0) [all...] |
/external/webrtc/webrtc/test/fuzzers/ |
producer_fec_fuzzer.cc | 18 ForwardErrorCorrection fec; local 19 ProducerFec producer(&fec);
|
/system/extras/verity/fec/ |
image.h | 23 #include <fec/io.h> 24 #include <fec/ecc.h> 62 uint8_t *fec; member in struct:image
|
/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/webrtc/webrtc/modules/audio_coding/test/ |
delay_test.cc | 38 DEFINE_bool(fec, false, "Use Forward Error Correction (FEC)."); 52 bool fec; member in struct:webrtc::__anon27811::AcmSettings 134 "ACM: DTX %s, FEC %s\n" 138 config.acm.fec ? "on" : "off", 159 ASSERT_EQ(0, acm_a_->SetREDStatus(config.fec)) << 258 test_setting.acm.fec = FLAGS_fec;
|
/external/webrtc/webrtc/ |
video_receive_stream.h | 115 FecConfig fec; member in struct:webrtc::VideoReceiveStream::Config::Rtp
|
video_send_stream.h | 118 FecConfig fec; member in struct:webrtc::VideoSendStream::Config::Rtp
|
common_types.h | 863 fec.Add(other.fec); 877 // RTP headers, padding, retransmissions and fec packets are excluded). 881 fec.payload_bytes; 887 RtpPacketCounter fec; // Number of redundancy packets/bytes. member in struct:webrtc::StreamDataCounters
|
/system/extras/libfec/include/fec/ |
io.h | 118 namespace fec { namespace
|
/external/webrtc/talk/media/webrtc/ |
webrtcvideoengine2.h | 228 webrtc::FecConfig fec; member in struct:cricket::WebRtcVideoChannel2::VideoCodecSettings
|
/external/webrtc/webrtc/modules/rtp_rtcp/test/testFec/ |
test_fec.cc | 12 * Test application for core FEC algorithm. Calls encoding and decoding 95 // FEC mask types. 107 ForwardErrorCorrection fec; local 180 "%u media packets, %u FEC packets, %u numImpPackets, " 223 // Reset the sequence number here for each FEC code/mask tested 225 // old FEC packets in list are dropped if sequence number wrap 242 // FEC encoder. In fact the FEC decoder will set the 250 // FEC is applied to a whole frame. 254 // Only push one (fake) frame to the FEC [all...] |