Home
last modified time | relevance | path

Searched refs:in_buffer_ (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/external/webrtc/modules/audio_processing/transient/
H A Dtransient_suppressor_impl.cc135 in_buffer_.reset(new float[analysis_length_ * num_channels_]); in Initialize()
136 memset(in_buffer_.get(), 0, in Initialize()
137 analysis_length_ * num_channels_ * sizeof(in_buffer_[0])); in Initialize()
208 detection_data = &in_buffer_[buffer_delay_]; in Suppress()
231 Suppress(&in_buffer_[i * analysis_length_], in Suppress()
243 : &in_buffer_[i * analysis_length_], in Suppress()
375 memmove(in_buffer_.get(), &in_buffer_[data_length_], in UpdateBuffers()
377 sizeof(in_buffer_[0])); in UpdateBuffers()
380 memcpy(&in_buffer_[buffer_delay_ + i * analysis_length_], in UpdateBuffers()
H A Dtransient_suppressor_impl.h78 std::unique_ptr<float[]> in_buffer_; variable
/aosp_15_r20/external/webrtc/rtc_base/
H A Dproxy_server.cc68 in_buffer_(kBufferSize) { in ProxyBinding()
97 Write(int_socket_.get(), &in_buffer_); in OnInternalWrite()
111 Read(ext_socket_.get(), &in_buffer_); in OnExternalRead()
112 Write(int_socket_.get(), &in_buffer_); in OnExternalRead()
H A Dproxy_server.h64 FifoBuffer in_buffer_; variable
/aosp_15_r20/external/webrtc/common_audio/resampler/
H A Dresampler.cc30 in_buffer_(nullptr), in Resampler()
58 if (in_buffer_) { in ~Resampler()
59 free(in_buffer_); in ~Resampler()
115 if (in_buffer_) { in Reset()
116 free(in_buffer_); in Reset()
117 in_buffer_ = nullptr; in Reset()
/aosp_15_r20/device/google/cuttlefish/host/libs/websocket/
Dwebsocket_handler.h94 const std::string& GetDataIn() const { return in_buffer_; } in GetDataIn()
103 std::string in_buffer_ = {}; variable
Dwebsocket_handler.cpp89 AppendData(reinterpret_cast<char*>(data), len, in_buffer_); in AppendDataIn()
/aosp_15_r20/external/webrtc/common_audio/resampler/include/
H A Dresampler.h80 int16_t* in_buffer_; variable