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

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

Issue 11555023: libvpx: Add VP9 decoder. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 8 years 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
1 #ifndef EBMLBUFFERWRITER_HPP 1 #ifndef EBMLBUFFERWRITER_HPP
2 #define EBMLBUFFERWRITER_HPP 2 #define EBMLBUFFERWRITER_HPP
3 3
4 typedef struct 4 typedef struct {
5 { 5 unsigned long long offset;
6 unsigned long long offset;
7 } EbmlLoc; 6 } EbmlLoc;
8 7
9 typedef struct 8 typedef struct {
10 { 9 unsigned char *buf;
11 unsigned char *buf; 10 unsigned int length;
12 unsigned int length; 11 unsigned int offset;
13 unsigned int offset;
14 } EbmlGlobal; 12 } EbmlGlobal;
15 13
16 14
17 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long clas s_id); 15 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long clas s_id);
18 void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc); 16 void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
19 17
20 18
21 #endif 19 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698