OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EBML
(Results
1 - 4
of
4
) sorted by null
/external/libvpx/libvpx/third_party/libmkv/
EbmlIDs.h
16
EBML
= 0x1A45DFA3,
WebMElement.c
19
Ebml_StartSubElement(glob, &start,
EBML
);
21
Ebml_SerializeUnsigned(glob, EBMLReadVersion, 1); //
EBML
Read Version
22
Ebml_SerializeUnsigned(glob, EBMLMaxIDLength, 4); //
EBML
Max ID Length
23
Ebml_SerializeUnsigned(glob, EBMLMaxSizeLength, 8); //
EBML
Max Size Length
104
void writeSegmentInformation(EbmlGlobal *
ebml
, EbmlLoc *startInfo, unsigned long timeCodeScale, double duration) {
105
Ebml_StartSubElement(
ebml
, startInfo, Info);
106
Ebml_SerializeUnsigned(
ebml
, TimecodeScale, timeCodeScale);
107
Ebml_SerializeFloat(
ebml
, Segment_Duration, duration * 1000.0); // Currently fixed to using milliseconds
108
Ebml_SerializeString(
ebml
, 0x4D80, "QTmuxingAppLibWebM-0.0.1");
109
Ebml_SerializeString(
ebml
, 0x5741, "QTwritingAppLibWebM-0.0.1")
[
all
...]
/external/chromium_org/media/webm/chromeos/
webm_encoder.cc
29
static void Ebml_SerializeUnsigned32(EbmlGlobal*
ebml
,
33
Ebml_WriteID(
ebml
, class_id);
34
Ebml_Serialize(
ebml
, &size_serialized, sizeof(size_serialized), 1);
35
Ebml_Serialize(
ebml
, &value, sizeof(value), 4);
165
StartSubElement(
EBML
);
175
EndSubElement(); //
EBML
/external/libvpx/libvpx/
webmenc.c
102
void write_webm_seek_element(struct EbmlGlobal *
ebml
,
105
uint64_t offset = pos -
ebml
->position_reference;
107
Ebml_StartSubElement(
ebml
, &start, Seek);
108
Ebml_SerializeBinary(
ebml
, SeekID, id);
109
Ebml_SerializeUnsigned64(
ebml
, SeekPosition, offset);
110
Ebml_EndSubElement(
ebml
, &start);
113
void write_webm_seek_info(struct EbmlGlobal *
ebml
) {
121
pos = ftello(
ebml
->stream);
123
if (
ebml
->seek_info_pos)
124
fseeko(
ebml
->stream, ebml->seek_info_pos, SEEK_SET)
[
all
...]
Completed in 26 milliseconds