Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(717)

Unified Diff: media/filters/decrypting_audio_decoder.cc

Issue 826783003: Renaming "AudioBuffers" to "AudioFrames" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing Build errors Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/filters/decrypting_audio_decoder.h ('k') | media/filters/decrypting_audio_decoder_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/decrypting_audio_decoder.cc
diff --git a/media/filters/decrypting_audio_decoder.cc b/media/filters/decrypting_audio_decoder.cc
index e790e70a1e479a234c0e6daa9a07cdd551336f7b..0ca20f7a98b1ea19481c73060602bc4e7358162e 100644
--- a/media/filters/decrypting_audio_decoder.cc
+++ b/media/filters/decrypting_audio_decoder.cc
@@ -246,7 +246,7 @@ void DecryptingAudioDecoder::DecodePendingBuffer() {
void DecryptingAudioDecoder::DeliverFrame(
int buffer_size,
Decryptor::Status status,
- const Decryptor::AudioBuffers& frames) {
+ const Decryptor::AudioFrames& frames) {
DVLOG(3) << "DeliverFrame() - status: " << status;
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK_EQ(state_, kPendingDecode) << state_;
@@ -338,8 +338,8 @@ void DecryptingAudioDecoder::DoReset() {
}
void DecryptingAudioDecoder::ProcessDecodedFrames(
- const Decryptor::AudioBuffers& frames) {
- for (Decryptor::AudioBuffers::const_iterator iter = frames.begin();
+ const Decryptor::AudioFrames& frames) {
+ for (Decryptor::AudioFrames::const_iterator iter = frames.begin();
iter != frames.end();
++iter) {
scoped_refptr<AudioBuffer> frame = *iter;
« no previous file with comments | « media/filters/decrypting_audio_decoder.h ('k') | media/filters/decrypting_audio_decoder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698