Home | History | Annotate | Download | only in common_audio

Lines Matching defs:Read

33   virtual size_t Read(void* buf, size_t num_bytes) {
71 // There could be metadata after the audio; ensure we don't read it.
73 const size_t read =
75 // If we didn't read what was requested, ensure we've reached the EOF.
76 RTC_CHECK(read == num_samples || feof(file_handle_));
77 RTC_CHECK_LE(read, num_samples_remaining_);
78 num_samples_remaining_ -= read;
79 return read;
84 size_t read = 0;
91 read += chunk;
93 return read;