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

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: Rebase! Created 6 years, 9 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/audio_decoder.h ('k') | media/base/mock_filters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/audio_decoder.cc
diff --git a/media/base/audio_decoder.cc b/media/base/audio_decoder.cc
index 939066078c4fec03c64ebb59b78c9c868ecc02e1..523fc01f6160828fb1ebea69a551b392c188eec6 100644
--- a/media/base/audio_decoder.cc
+++ b/media/base/audio_decoder.cc
@@ -4,10 +4,16 @@
#include "media/base/audio_decoder.h"
+#include "media/base/audio_buffer.h"
+
namespace media {
AudioDecoder::AudioDecoder() {}
AudioDecoder::~AudioDecoder() {}
+scoped_refptr<AudioBuffer> AudioDecoder::GetDecodeOutput() {
+ return NULL;
+}
+
} // namespace media
« no previous file with comments | « media/base/audio_decoder.h ('k') | media/base/mock_filters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698