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

  /external/webrtc/webrtc/modules/audio_coding/neteq/
sync_buffer.cc 37 dtmf_index_ -= std::min(dtmf_index_, samples_added);
55 if (dtmf_index_ > 0 && dtmf_index_ >= position) {
56 // We are moving the |dtmf_index_| sample.
57 set_dtmf_index(dtmf_index_ + length); // Overflow handled by subfunction.
94 dtmf_index_ = 0;
103 // Cannot set |dtmf_index_| larger than the size of the buffer.
104 dtmf_index_ = std::min(value, Size());
sync_buffer.h 26 dtmf_index_(0) {}
87 size_t dtmf_index() const { return dtmf_index_; }
93 size_t dtmf_index_; // Index to the first non-DTMF sample in the buffer. member in class:webrtc::SyncBuffer

Completed in 77 milliseconds