Merge "Skip computation of distortion in vp8_pick_inter_mode if active_map is used"
[libvpx.git] / libmkv / EbmlBufferWriter.h
blobba0a9b3aba256bed9d3ac5c0b11da5ef6bcf010a
1 #ifndef EBMLBUFFERWRITER_HPP
2 #define EBMLBUFFERWRITER_HPP
4 typedef struct
6 unsigned long long offset;
7 } EbmlLoc;
9 typedef struct
11 unsigned char *buf;
12 unsigned int length;
13 unsigned int offset;
14 } EbmlGlobal;
17 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id);
18 void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
21 #endif