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

Side by Side Diff: source/libvpx/third_party/libmkv/EbmlBufferWriter.h

Issue 341293003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #ifndef EBMLBUFFERWRITER_HPP
2 #define EBMLBUFFERWRITER_HPP
3
4 typedef struct {
5 unsigned long long offset;
6 } EbmlLoc;
7
8 typedef struct {
9 unsigned char *buf;
10 unsigned int length;
11 unsigned int offset;
12 } EbmlGlobal;
13
14
15 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long clas s_id);
16 void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
17
18
19 #endif
OLDNEW
« no previous file with comments | « source/libvpx/third_party/googletest/src/src/gtest-all.cc ('k') | source/libvpx/third_party/libmkv/EbmlBufferWriter.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698