Home
last modified time | relevance | path

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

/external/webrtc/webrtc/common_audio/
Dchannel_buffer.cc19 ibuf_(num_frames, num_channels, num_bands), in IFChannelBuffer()
26 return &ibuf_; in ibuf()
37 return &ibuf_; in ibuf_const()
48 const int16_t* const* int_channels = ibuf_.channels(); in RefreshF()
50 for (size_t i = 0; i < ibuf_.num_channels(); ++i) { in RefreshF()
51 for (size_t j = 0; j < ibuf_.num_frames(); ++j) { in RefreshF()
62 int16_t* const* int_channels = ibuf_.channels(); in RefreshI()
64 for (size_t i = 0; i < ibuf_.num_channels(); ++i) { in RefreshI()
66 ibuf_.num_frames(), in RefreshI()
Dchannel_buffer.h152 size_t num_frames() const { return ibuf_.num_frames(); } in num_frames()
153 size_t num_frames_per_band() const { return ibuf_.num_frames_per_band(); } in num_frames_per_band()
154 size_t num_channels() const { return ibuf_.num_channels(); } in num_channels()
155 size_t num_bands() const { return ibuf_.num_bands(); } in num_bands()
162 mutable ChannelBuffer<int16_t> ibuf_; variable