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

Unified Diff: source/libvpx/third_party/libmkv/EbmlBufferWriter.h

Issue 47873006: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 2 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: source/libvpx/third_party/libmkv/EbmlBufferWriter.h
===================================================================
--- source/libvpx/third_party/libmkv/EbmlBufferWriter.h (revision 0)
+++ source/libvpx/third_party/libmkv/EbmlBufferWriter.h (revision 0)
@@ -0,0 +1,19 @@
+#ifndef EBMLBUFFERWRITER_HPP
+#define EBMLBUFFERWRITER_HPP
+
+typedef struct {
+ unsigned long long offset;
+} EbmlLoc;
+
+typedef struct {
+ unsigned char *buf;
+ unsigned int length;
+ unsigned int offset;
+} EbmlGlobal;
+
+
+void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id);
+void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
+
+
+#endif
« no previous file with comments | « source/libvpx/third_party/googletest/src/test/production.cc ('k') | source/libvpx/third_party/libmkv/EbmlBufferWriter.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698