mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
6a6aa3a1ea
This is an integrated patch which includes: 1. Bug 891705: [MediaEncoder] Implement WebM 1.0 container writer. r=giles, r=gps 2. Bug 950567: [MediaEncoder] Phase-in libmkv library. r=giles 3. bug 883749: Implement Vorbis encoding. r=rillian 4. bug 881840: Implement VP8 track encoder. r=rillian
21 lines
569 B
C
21 lines
569 B
C
#ifndef EBMLBUFFERWRITER_HPP
|
|
#define EBMLBUFFERWRITER_HPP
|
|
|
|
typedef struct {
|
|
unsigned long long offset;
|
|
} EbmlLoc;
|
|
|
|
typedef struct {
|
|
unsigned char *buf;
|
|
unsigned int length;
|
|
unsigned int offset;
|
|
} EbmlGlobal;
|
|
|
|
void Ebml_Write(EbmlGlobal *glob, const void *buffer_in, unsigned long len);
|
|
void Ebml_Serialize(EbmlGlobal *glob, const void *buffer_in,
|
|
int buffer_size, unsigned long len);
|
|
void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id);
|
|
void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
|
|
|
|
#endif
|