Home | History | Annotate | Download | only in common_audio

Lines Matching defs:Slice

103   // Sets the |slice| pointers to the |start_frame| position for each channel.
104 // Returns |slice| for convenience.
105 const T* const* Slice(T** slice, size_t start_frame) const {
108 slice[i] = &channels_[i][start_frame];
109 return slice;
111 T** Slice(T** slice, size_t start_frame) {
113 return const_cast<T**>(t->Slice(slice, start_frame));