sd_ass: initialize structs for external tracks properly
[mplayer.git] / libmpdemux / matroska.h
blobc233cd133670d1ef36f28004d6dcc15d4baf73d0
1 /*
2 * CodecID definitions for Matroska files
4 * see http://cvs.corecodec.org/cgi-bin/cvsweb.cgi/~checkout~/matroska/doc/website/specs/codex.html?rev=HEAD&content-type=text/html
6 * This file is part of MPlayer.
8 * MPlayer is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * MPlayer is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #ifndef MPLAYER_MATROSKA_H
24 #define MPLAYER_MATROSKA_H
26 #define MKV_A_AAC_2MAIN "A_AAC/MPEG2/MAIN"
27 #define MKV_A_AAC_2LC "A_AAC/MPEG2/LC"
28 #define MKV_A_AAC_2SBR "A_AAC/MPEG2/LC/SBR"
29 #define MKV_A_AAC_2SSR "A_AAC/MPEG2/SSR"
30 #define MKV_A_AAC_4MAIN "A_AAC/MPEG4/MAIN"
31 #define MKV_A_AAC_4LC "A_AAC/MPEG4/LC"
32 #define MKV_A_AAC_4SBR "A_AAC/MPEG4/LC/SBR"
33 #define MKV_A_AAC_4SSR "A_AAC/MPEG4/SSR"
34 #define MKV_A_AAC_4LTP "A_AAC/MPEG4/LTP"
35 #define MKV_A_AAC "A_AAC"
36 #define MKV_A_AC3 "A_AC3"
37 #define MKV_A_DTS "A_DTS"
38 #define MKV_A_EAC3 "A_EAC3"
39 #define MKV_A_MP2 "A_MPEG/L2"
40 #define MKV_A_MP3 "A_MPEG/L3"
41 #define MKV_A_PCM "A_PCM/INT/LIT"
42 #define MKV_A_PCM_BE "A_PCM/INT/BIG"
43 #define MKV_A_VORBIS "A_VORBIS"
44 #define MKV_A_ACM "A_MS/ACM"
45 #define MKV_A_REAL28 "A_REAL/28_8"
46 #define MKV_A_REALATRC "A_REAL/ATRC"
47 #define MKV_A_REALCOOK "A_REAL/COOK"
48 #define MKV_A_REALDNET "A_REAL/DNET"
49 #define MKV_A_REALSIPR "A_REAL/SIPR"
50 #define MKV_A_QDMC "A_QUICKTIME/QDMC"
51 #define MKV_A_QDMC2 "A_QUICKTIME/QDM2"
52 #define MKV_A_FLAC "A_FLAC"
53 #define MKV_A_WAVPACK "A_WAVPACK4"
54 #define MKV_A_TRUEHD "A_TRUEHD"
56 #define MKV_V_MSCOMP "V_MS/VFW/FOURCC"
57 #define MKV_V_REALV10 "V_REAL/RV10"
58 #define MKV_V_REALV20 "V_REAL/RV20"
59 #define MKV_V_REALV30 "V_REAL/RV30"
60 #define MKV_V_REALV40 "V_REAL/RV40"
61 #define MKV_V_SORENSONV1 "V_SORENSON/V1"
62 #define MKV_V_SORENSONV2 "V_SORENSON/V2"
63 #define MKV_V_SORENSONV3 "V_SORENSON/V3"
64 #define MKV_V_CINEPAK "V_CINEPAK"
65 #define MKV_V_QUICKTIME "V_QUICKTIME"
66 #define MKV_V_MPEG1 "V_MPEG1"
67 #define MKV_V_MPEG2 "V_MPEG2"
68 #define MKV_V_MPEG4_SP "V_MPEG4/ISO/SP"
69 #define MKV_V_MPEG4_ASP "V_MPEG4/ISO/ASP"
70 #define MKV_V_MPEG4_AP "V_MPEG4/ISO/AP"
71 #define MKV_V_MPEG4_AVC "V_MPEG4/ISO/AVC"
72 #define MKV_V_THEORA "V_THEORA"
73 #define MKV_V_VP8 "V_VP8"
74 #define MKV_V_MJPEG "V_MJPEG"
76 #define MKV_S_TEXTASCII "S_TEXT/ASCII"
77 #define MKV_S_TEXTUTF8 "S_TEXT/UTF8"
78 #define MKV_S_TEXTSSA "S_TEXT/SSA"
79 #define MKV_S_TEXTASS "S_TEXT/ASS"
80 #define MKV_S_VOBSUB "S_VOBSUB"
81 #define MKV_S_PGS "S_HDMV/PGS"
82 #define MKV_S_SSA "S_SSA" // Deprecated
83 #define MKV_S_ASS "S_ASS" // Deprecated
85 #endif /* MPLAYER_MATROSKA_H */