shithub: libvpx

ref: 74441baac5a413000c21b70a063f58d1707487fd
dir: /libmkv/EbmlBufferWriter.h/

View raw version
#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