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

  /external/libvpx/libmkv/
testlibmkv.c 18 //init the datatype we're using for ebml output
20 EbmlGlobal ebml; local
21 ebml.buf = data;
22 ebml.offset = 0;
23 ebml.length = 8192;
25 writeHeader(&ebml);
28 Ebml_StartSubElement(&ebml, &startSegment, Segment); //segment
32 Ebml_StartSubElement(&ebml, &startInfo, Info);
33 Ebml_SerializeString(&ebml, 0x4D80, "muxingAppLibMkv");
34 Ebml_SerializeString(&ebml, 0x5741, "writingAppLibMkv")
    [all...]
WebMElement.h 13 void writeSimpleBock(EbmlGlobal *ebml, unsigned char trackNumber, unsigned short timeCode,
19 void writeHeader(EbmlGlobal *ebml);
20 void writeSegmentInformation(EbmlGlobal *ebml, EbmlLoc* startInfo , unsigned long timeCodeScale, double duration);
22 void writeVideoTrack(EbmlGlobal *ebml, unsigned int trackNumber, int flagLacing,
29 void writeSimpleBlock(EbmlGlobal *ebml, unsigned char trackNumber, short timeCode,
WebMElement.c 20 Ebml_StartSubElement(glob, &start, EBML);
22 Ebml_SerializeUnsigned(glob, EBMLReadVersion, 1); //EBML Read Version
23 Ebml_SerializeUnsigned(glob, EBMLMaxIDLength, 4); //EBML Max ID Length
24 Ebml_SerializeUnsigned(glob, EBMLMaxSizeLength, 8); //EBML Max Size Length
109 void writeSegmentInformation(EbmlGlobal *ebml, EbmlLoc* startInfo, unsigned long timeCodeScale, double duration)
111 Ebml_StartSubElement(ebml, startInfo, Info);
112 Ebml_SerializeUnsigned(ebml, TimecodeScale, timeCodeScale);
113 Ebml_SerializeFloat(ebml, Segment_Duration, duration * 1000.0); //Currently fixed to using milliseconds
114 Ebml_SerializeString(ebml, 0x4D80, "QTmuxingAppLibWebM-0.0.1");
115 Ebml_SerializeString(ebml, 0x5741, "QTwritingAppLibWebM-0.0.1")
    [all...]
  /external/libvpx/
vpxenc.c 528 write_webm_seek_element(EbmlGlobal *ebml, unsigned long id, off_t pos)
530 uint64_t offset = pos - ebml->position_reference;
532 Ebml_StartSubElement(ebml, &start, Seek);
533 Ebml_SerializeBinary(ebml, SeekID, id);
534 Ebml_SerializeUnsigned64(ebml, SeekPosition, offset);
535 Ebml_EndSubElement(ebml, &start);
540 write_webm_seek_info(EbmlGlobal *ebml)
546 pos = ftello(ebml->stream);
548 if(ebml->seek_info_pos)
549 fseeko(ebml->stream, ebml->seek_info_pos, SEEK_SET)
1069 EbmlGlobal ebml = {0}; local
    [all...]
  /external/libvpx/nestegg/src/
nestegg.c 14 /* EBML Elements */
93 /* EBML Types */
165 /* EBML Definitions */
166 struct ebml { struct
292 struct ebml ebml; member in struct:nestegg
331 /* EBML Element Lists */
333 E_FIELD(ID_EBML_VERSION, TYPE_UINT, struct ebml, ebml_version),
334 E_FIELD(ID_EBML_READ_VERSION, TYPE_UINT, struct ebml, ebml_read_version),
335 E_FIELD(ID_EBML_MAX_ID_LENGTH, TYPE_UINT, struct ebml, ebml_max_id_length)
    [all...]

Completed in 270 milliseconds