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

Unified Diff: media/base/audio_decoder.cc

Issue 141243003: Add AudioBufferStream. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@decoderstream_rebased
Patch Set: even more cleanup! Created 6 years, 10 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
Index: media/base/audio_decoder.cc
diff --git a/media/base/audio_decoder.cc b/media/base/audio_decoder.cc
index 939066078c4fec03c64ebb59b78c9c868ecc02e1..f3283fd9f318a1e0e5fc096b763eee9f3c3b7925 100644
--- a/media/base/audio_decoder.cc
+++ b/media/base/audio_decoder.cc
@@ -10,4 +10,12 @@ AudioDecoder::AudioDecoder() {}
AudioDecoder::~AudioDecoder() {}
+bool AudioDecoder::CanReadWithoutStalling() const {
+ return true;
+}
+
+bool AudioDecoder::HasQueuedData() const {
+ return false;
+}
+
} // namespace media

Powered by Google App Engine
This is Rietveld 408576698