/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
D | webmenc.c | 18 void Ebml_Write(struct EbmlGlobal *glob, in Ebml_Write() argument 21 (void) fwrite(buffer_in, 1, len, glob->stream); in Ebml_Write() 27 Ebml_Write(glob, &x, 1); \ 30 void Ebml_Serialize(struct EbmlGlobal *glob, in Ebml_Serialize() argument 65 static void Ebml_SerializeUnsigned32(struct EbmlGlobal *glob, in Ebml_SerializeUnsigned32() argument 69 Ebml_WriteID(glob, class_id); in Ebml_SerializeUnsigned32() 70 Ebml_Serialize(glob, &sizeSerialized, sizeof(sizeSerialized), 1); in Ebml_SerializeUnsigned32() 71 Ebml_Serialize(glob, &ui, sizeof(ui), 4); in Ebml_SerializeUnsigned32() 74 static void Ebml_StartSubElement(struct EbmlGlobal *glob, in Ebml_StartSubElement() argument 78 Ebml_WriteID(glob, class_id); in Ebml_StartSubElement() [all …]
|
D | webmenc.h | 79 void write_webm_file_header(struct EbmlGlobal *glob, 85 void write_webm_block(struct EbmlGlobal *glob, 89 void write_webm_file_footer(struct EbmlGlobal *glob, int hash);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libmkv/ |
D | WebMElement.c | 18 void writeHeader(EbmlGlobal *glob) { in writeHeader() argument 20 Ebml_StartSubElement(glob, &start, EBML); in writeHeader() 21 Ebml_SerializeUnsigned(glob, EBMLVersion, 1); in writeHeader() 22 Ebml_SerializeUnsigned(glob, EBMLReadVersion, 1); // EBML Read Version in writeHeader() 23 Ebml_SerializeUnsigned(glob, EBMLMaxIDLength, 4); // EBML Max ID Length in writeHeader() 24 Ebml_SerializeUnsigned(glob, EBMLMaxSizeLength, 8); // EBML Max Size Length in writeHeader() 25 Ebml_SerializeString(glob, DocType, "webm"); // Doc Type in writeHeader() 26 Ebml_SerializeUnsigned(glob, DocTypeVersion, 2); // Doc Type Version in writeHeader() 27 Ebml_SerializeUnsigned(glob, DocTypeReadVersion, 2); // Doc Type Read Version in writeHeader() 28 Ebml_EndSubElement(glob, &start); in writeHeader() [all …]
|
D | EbmlWriter.c | 21 void Ebml_WriteLen(EbmlGlobal *glob, int64_t val) { in Ebml_WriteLen() argument 37 Ebml_Serialize(glob, (void *) &val, sizeof(val), size); in Ebml_WriteLen() 40 void Ebml_WriteString(EbmlGlobal *glob, const char *str) { in Ebml_WriteString() argument 43 Ebml_WriteLen(glob, size); in Ebml_WriteString() 47 Ebml_Write(glob, str, (unsigned long)size); in Ebml_WriteString() 50 void Ebml_WriteUTF8(EbmlGlobal *glob, const wchar_t *wstr) { in Ebml_WriteUTF8() argument 58 Ebml_WriteLen(glob, size); in Ebml_WriteUTF8() 59 Ebml_Write(glob, wstr, (unsigned long)size); in Ebml_WriteUTF8() 62 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id) { in Ebml_WriteID() argument 74 Ebml_Serialize(glob, (void *)&class_id, sizeof(class_id), len); in Ebml_WriteID() [all …]
|
D | EbmlBufferWriter.c | 11 void Ebml_Write(EbmlGlobal *glob, const void *buffer_in, unsigned long len) { in Ebml_Write() argument 12 unsigned char *src = glob->buf; in Ebml_Write() 13 src += glob->offset; in Ebml_Write() 15 glob->offset += len; in Ebml_Write() 18 static void _Serialize(EbmlGlobal *glob, const unsigned char *p, const unsigned char *q) { in _Serialize() argument 21 memcpy(&(glob->buf[glob->offset]), q, 1); in _Serialize() 22 glob->offset++; in _Serialize() 26 void Ebml_Serialize(EbmlGlobal *glob, const void *buffer_in, unsigned long len) { in Ebml_Serialize() argument 32 _Serialize(glob, p, q); in Ebml_Serialize() 36 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id) { in Ebml_StartSubElement() argument [all …]
|
D | EbmlWriter.h | 22 void Ebml_Serialize(EbmlGlobal *glob, const void *, int, unsigned long); 23 void Ebml_Write(EbmlGlobal *glob, const void *, unsigned long); 27 void Ebml_WriteLen(EbmlGlobal *glob, int64_t val); 28 void Ebml_WriteString(EbmlGlobal *glob, const char *str); 29 void Ebml_WriteUTF8(EbmlGlobal *glob, const wchar_t *wstr); 30 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id); 31 void Ebml_SerializeUnsigned64(EbmlGlobal *glob, unsigned long class_id, uint64_t ui); 32 void Ebml_SerializeUnsigned(EbmlGlobal *glob, unsigned long class_id, unsigned long ui); 33 void Ebml_SerializeBinary(EbmlGlobal *glob, unsigned long class_id, unsigned long ui); 34 void Ebml_SerializeFloat(EbmlGlobal *glob, unsigned long class_id, double d); [all …]
|
D | EbmlBufferWriter.h | 15 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id); 16 void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
|
D | WebMElement.h | 22 void writeAudioTrack(EbmlGlobal *glob, unsigned int trackNumber,
|