86f4681450
Change-Id: Id0bfaedf54ff3f59d4cf361c170a0b5a5711e5f2
20 lines
376 B
C
20 lines
376 B
C
#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
|