HomeSort by relevance Sort by last modified time
    Searched refs:EbmlLoc (Results 1 - 6 of 6) sorted by null

  /external/libvpx/libmkv/
EbmlBufferWriter.h 7 } EbmlLoc;
17 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id);
18 void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
testlibmkv.c 27 EbmlLoc startSegment;
31 EbmlLoc startInfo;
39 EbmlLoc trackStart;
47 EbmlLoc clusterStart;
WebMElement.c 19 EbmlLoc start;
62 EbmlLoc start;
72 EbmlLoc videoStart;
85 EbmlLoc start;
101 EbmlLoc AudioStart;
109 void writeSegmentInformation(EbmlGlobal *ebml, EbmlLoc* startInfo, unsigned long timeCodeScale, double duration)
120 void Mkv_InitializeSegment(Ebml& ebml_out, EbmlLoc& ebmlLoc)
122 Ebml_StartSubElement(ebml_out, ebmlLoc, 0x18538067);
125 void Mkv_InitializeSeek(Ebml& ebml_out, EbmlLoc& ebmlLoc
    [all...]
WebMElement.h 20 void writeSegmentInformation(EbmlGlobal *ebml, EbmlLoc* startInfo , unsigned long timeCodeScale, double duration);
EbmlBufferWriter.c 42 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id)
45 ebmlLoc->offset = glob->offset;
51 void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc)
53 unsigned long long size = glob->offset - ebmlLoc->offset - 8;
55 glob->offset = ebmlLoc->offset;
  /external/libvpx/
vpxenc.c 446 typedef off_t EbmlLoc;
476 EbmlLoc startSegment;
477 EbmlLoc startCluster;
516 Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc,
524 *ebmlLoc = ftello(glob->stream);
529 Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc)
538 size = pos - *ebmlLoc - 8;
542 fseeko(glob->stream, *ebmlLoc, SEEK_SET)
    [all...]

Completed in 2439 milliseconds