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

Unified Diff: content/common/webkitplatformsupport_impl.cc

Issue 14522002: Handle decoding of vorbis files better on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 8 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: content/common/webkitplatformsupport_impl.cc
diff --git a/content/common/webkitplatformsupport_impl.cc b/content/common/webkitplatformsupport_impl.cc
index 1328bd5d1042f36f48ed6cb7cb0e78b684020829..b6c072844c6c7dcabb1253f7970cf797435b277e 100644
--- a/content/common/webkitplatformsupport_impl.cc
+++ b/content/common/webkitplatformsupport_impl.cc
@@ -17,10 +17,12 @@
namespace {
void RunWebAudioMediaCodec(
base::SharedMemoryHandle encoded_data_handle,
- base::FileDescriptor pcm_output) {
+ base::FileDescriptor pcm_output,
+ size_t data_size) {
content::ChildThread::current()->Send(
new ViewHostMsg_RunWebAudioMediaCodec(encoded_data_handle,
- pcm_output));
+ pcm_output,
+ data_size));
}
} // anonymous namespace
« no previous file with comments | « content/common/view_messages.h ('k') | media/base/android/java/src/org/chromium/media/WebAudioMediaCodecBridge.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698