Home
last modified time | relevance | path

Searched refs:state_first (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/modules/audio_coding/codecs/ilbc/
Ddecode_residual.c54 if (iLBC_encbits->state_first == 1) { in WebRtcIlbcfix_DecodeResidual()
67 if (iLBC_encbits->state_first) { /* put adaptive part in the end */ in WebRtcIlbcfix_DecodeResidual()
Dabs_quant.c56 if (iLBC_encbits->state_first) { in WebRtcIlbcfix_AbsQuant()
Dpack_bits.c47 (*bitstreamPtr) |= (enc_bits->state_first)<<9; /* Bit 6 */ in WebRtcIlbcfix_PackBits()
67 (*bitstreamPtr) |= (enc_bits->state_first)<<4; /* Bit 11 */ in WebRtcIlbcfix_PackBits()
Dunpack_bits.c46 enc_bits->state_first = ((*bitstreamPtr)>>9)&0x1; /* Bit 6 */ in WebRtcIlbcfix_UnpackBits()
66 enc_bits->state_first = ((*bitstreamPtr)>>4)&0x1; /* Bit 11 */ in WebRtcIlbcfix_UnpackBits()
Dencode.c176 iLBCbits_inst->state_first = 1; in WebRtcIlbcfix_EncodeImpl()
179 iLBCbits_inst->state_first = 0; in WebRtcIlbcfix_EncodeImpl()
196 if (iLBCbits_inst->state_first) { /* put adaptive part in the end */ in WebRtcIlbcfix_EncodeImpl()
Ddefines.h131 int16_t state_first; member