10024
|
1 /*
|
|
2 * CodecID definitions for Matroska files
|
|
3 *
|
|
4 * see http://cvs.corecodec.org/cgi-bin/cvsweb.cgi/~checkout~/matroska/doc/website/specs/codex.html?rev=HEAD&content-type=text/html
|
|
5 */
|
|
6
|
|
7 #ifndef __MATROSKA_H
|
|
8 #define __MATROSKA_H
|
|
9
|
|
10 #define MKV_A_MP3 "A_MPEG/L3"
|
|
11 #define MKV_A_AC3 "A_AC3"
|
|
12 #define MKV_A_PCM "A_PCM/INT/LIT"
|
|
13 #define MKV_A_VORBIS "A_VORBIS"
|
|
14 #define MKV_A_ACM "A_MS/ACM"
|
|
15
|
|
16 #define MKV_V_MSCOMP "V_MS/VFW/FOURCC"
|
|
17
|
|
18 #define MKV_S_TEXTASCII "S_TEXT/ASCII"
|
|
19 #define MKV_S_TEXTUTF8 "S_TEXT/UTF8"
|
|
20
|
|
21 #endif /* __MATROSKA_H */
|