Home | History | Annotate | Download | only in opus

Lines Matching defs:fec

30   bool fec;
189 if (mode_set[i].fec) {
193 printf("FEC is ON, target at packet loss rate %d percent.\n",
197 printf("FEC is OFF.\n");
208 // Check if payload has FEC.
209 int16_t fec = WebRtcOpus_PacketHasFec(&bit_stream_[0], encoded_bytes_);
211 // If FEC is disabled or the target packet loss rate is set to 0, there
212 // should be no FEC in the bit stream.
213 if (!mode_set[i].fec || mode_set[i].target_packet_loss_rate == 0) {
214 EXPECT_EQ(fec, 0);
215 } else if (fec == 1) {
230 if (mode_set[i].fec) {
231 printf("%.2f percent frames has FEC.\n",