Remove unused stuff from AudioFrame:

- The interleaved_ field. Never set to anything but 'true'. AudioFrame data appears to always be treated as interleaved.
- The Append() method.
- operator-=().

BUG=

Review URL: https://codereview.webrtc.org/1830713003

Cr-Commit-Position: refs/heads/master@{#12152}
This commit is contained in:
solenberg
2016-03-29 16:42:06 -07:00
committed by Commit bot
parent 059dadf0c4
commit 0d343fa39d
3 changed files with 0 additions and 57 deletions

View File

@ -79,7 +79,6 @@ void SyncBuffer::GetNextAudioInterleaved(size_t requested_len,
ReadInterleavedFromIndex(next_index_, samples_to_read, output->data_);
const size_t samples_read_per_channel = tot_samples_read / Channels();
next_index_ += samples_read_per_channel;
output->interleaved_ = true;
output->num_channels_ = Channels();
output->samples_per_channel_ = samples_read_per_channel;
}