HomeSort by relevance Sort by last modified time
    Searched refs:ibuf_ (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/common_audio/
channel_buffer.cc 19 ibuf_(num_frames, num_channels, num_bands),
26 return &ibuf_;
37 return &ibuf_;
48 const int16_t* const* int_channels = ibuf_.channels();
50 for (size_t i = 0; i < ibuf_.num_channels(); ++i) {
51 for (size_t j = 0; j < ibuf_.num_frames(); ++j) {
62 int16_t* const* int_channels = ibuf_.channels();
64 for (size_t i = 0; i < ibuf_.num_channels(); ++i) {
66 ibuf_.num_frames(),
channel_buffer.h 152 size_t num_frames() const { return ibuf_.num_frames(); }
153 size_t num_frames_per_band() const { return ibuf_.num_frames_per_band(); }
154 size_t num_channels() const { return ibuf_.num_channels(); }
155 size_t num_bands() const { return ibuf_.num_bands(); }
162 mutable ChannelBuffer<int16_t> ibuf_; member in class:webrtc::IFChannelBuffer

Completed in 221 milliseconds