Searched refs:isac_state_ (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/ |
D | audio_encoder_isac_t_impl.h | 77 RTC_CHECK_EQ(0, T::Free(isac_state_)); in ~AudioEncoderIsacT() 87 return T::EncSampRate(isac_state_); in SampleRateHz() 97 const int samples_in_next_packet = T::GetNewFrameLen(isac_state_); in Num10MsFramesInNextPacket() 128 T::SetBandwidthInfo(isac_state_, &bwinfo); in EncodeInternal() 130 int r = T::Encode(isac_state_, audio.data(), encoded); in EncodeInternal() 132 << T::GetErrorCode(isac_state_) << ")"; in EncodeInternal() 161 if (isac_state_) in RecreateEncoderInstance() 162 RTC_CHECK_EQ(0, T::Free(isac_state_)); in RecreateEncoderInstance() 163 RTC_CHECK_EQ(0, T::Create(&isac_state_)); in RecreateEncoderInstance() 164 RTC_CHECK_EQ(0, T::EncoderInit(isac_state_, config.adaptive_mode ? 0 : 1)); in RecreateEncoderInstance() [all …]
|
D | audio_decoder_isac_t_impl.h | 27 RTC_CHECK_EQ(0, T::Create(&isac_state_)); in AudioDecoderIsacT() 28 T::DecoderInit(isac_state_); in AudioDecoderIsacT() 31 T::GetBandwidthInfo(isac_state_, &bi); in AudioDecoderIsacT() 38 RTC_CHECK_EQ(0, T::Free(isac_state_)); in ~AudioDecoderIsacT() 50 RTC_CHECK_EQ(0, T::SetDecSampRate(isac_state_, sample_rate_hz)); in DecodeInternal() 55 T::DecodeInternal(isac_state_, encoded, encoded_len, decoded, &temp_type); in DecodeInternal() 67 return T::DecodePlc(isac_state_, decoded, num_frames); in DecodePlc() 72 T::DecoderInit(isac_state_); in Reset() 81 int ret = T::UpdateBwEstimate(isac_state_, payload, payload_len, in IncomingPacket() 86 T::GetBandwidthInfo(isac_state_, &bwinfo); in IncomingPacket() [all …]
|
D | audio_decoder_isac_t.h | 45 typename T::instance_type* isac_state_;
|
D | audio_encoder_isac_t.h | 80 typename T::instance_type* isac_state_ = nullptr; variable
|