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

Unified Diff: media/filters/audio_renderer_algorithm.cc

Issue 17315021: Refactored DataBuffer to use unix_hacker style methods. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Inlined getters and setters on DataBuffer Created 7 years, 6 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/base/seekable_buffer_unittest.cc ('k') | media/filters/audio_renderer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/audio_renderer_algorithm.cc
diff --git a/media/filters/audio_renderer_algorithm.cc b/media/filters/audio_renderer_algorithm.cc
index 360a38bdeee1e06626b03a5ee8bf4bd3140a3385..c6b7808693929522bce96eca89eb3bbb00f4a87f 100644
--- a/media/filters/audio_renderer_algorithm.cc
+++ b/media/filters/audio_renderer_algorithm.cc
@@ -393,7 +393,7 @@ base::TimeDelta AudioRendererAlgorithm::GetTime() {
void AudioRendererAlgorithm::EnqueueBuffer(
const scoped_refptr<DataBuffer>& buffer_in) {
- DCHECK(!buffer_in->IsEndOfStream());
+ DCHECK(!buffer_in->end_of_stream());
audio_buffer_.Append(buffer_in);
}
« no previous file with comments | « media/base/seekable_buffer_unittest.cc ('k') | media/filters/audio_renderer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698