Home
last modified time | relevance | path

Searched refs:full_frame_samples_ (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/g711/
Daudio_encoder_pcm.cc44 full_frame_samples_( in AudioEncoderPcm()
50 speech_buffer_.reserve(full_frame_samples_); in AudioEncoderPcm()
56 return full_frame_samples_ * BytesPerSample(); in MaxEncodedBytes()
89 if (speech_buffer_.size() < full_frame_samples_) { in EncodeInternal()
92 RTC_CHECK_EQ(speech_buffer_.size(), full_frame_samples_); in EncodeInternal()
93 RTC_CHECK_GE(max_encoded_bytes, full_frame_samples_); in EncodeInternal()
98 EncodeCall(&speech_buffer_[0], full_frame_samples_, encoded); in EncodeInternal()
Daudio_encoder_pcm.h64 const size_t full_frame_samples_; variable