Home
last modified time | relevance | path

Searched refs:ebmlLoc (Results 1 – 3 of 3) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libmkv/
DEbmlBufferWriter.c36 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id) { in Ebml_StartSubElement() argument
38 ebmlLoc->offset = glob->offset; in Ebml_StartSubElement()
44 void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc) { in Ebml_EndSubElement() argument
45 unsigned long long size = glob->offset - ebmlLoc->offset - 8; in Ebml_EndSubElement()
47 glob->offset = ebmlLoc->offset; in Ebml_EndSubElement()
DEbmlBufferWriter.h15 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id);
16 void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
Dwebmenc.c75 EbmlLoc *ebmlLoc, in Ebml_StartSubElement() argument
79 *ebmlLoc = ftello(glob->stream); in Ebml_StartSubElement()
83 static void Ebml_EndSubElement(struct EbmlGlobal *glob, EbmlLoc *ebmlLoc) { in Ebml_EndSubElement() argument
91 size = pos - *ebmlLoc - 8; in Ebml_EndSubElement()
95 fseeko(glob->stream, *ebmlLoc, SEEK_SET); in Ebml_EndSubElement()