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

Unified Diff: media/webm/chromeos/ebml_writer.cc

Issue 10784037: [cros] Implement WebM encoder/muxer for animated avatar capture. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes Created 8 years, 5 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/webm/chromeos/ebml_writer.cc
diff --git a/media/webm/chromeos/ebml_writer.cc b/media/webm/chromeos/ebml_writer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..93ca3febd6e60554336e0d9a32da5c6a8b8806a1
--- /dev/null
+++ b/media/webm/chromeos/ebml_writer.cc
@@ -0,0 +1,26 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "media/base/media_export.h"
+#include "media/webm/chromeos/ebml_writer.h"
scherkus (not reviewing) 2012/07/23 22:23:43 nit: header include order has the .h first followe
Ivan Korotkov 2012/07/23 22:57:48 Done.
+
+extern "C" {
+#include "third_party/libvpx/source/libvpx/libmkv/EbmlWriter.h"
+
+// These functions must be in the global namespace and visible to libmkv.
+
+void MEDIA_EXPORT Ebml_Write(EbmlGlobal* glob,
+ const void* buffer,
+ unsigned long len) {
+ glob->write_cb.Run(buffer, len);
+}
+
+void MEDIA_EXPORT Ebml_Serialize(EbmlGlobal* glob,
+ const void* buffer,
+ int buffer_size,
+ unsigned long len) {
+ glob->serialize_cb.Run(buffer, buffer_size, len);
+}
+
+} // extern "C"

Powered by Google App Engine
This is Rietveld 408576698