annotate libmpdemux/matroska.h @ 10708:a57e8d980652

This patch fixes: 1) if channels (in the list) are invalid excludes them 2) on encrypted/unreadable channels mplayer goes to the next/previous 3) when changing channel uninit all components but stream and input. Nico <nsabbi@libero.it>
author alex
date Wed, 27 Aug 2003 17:08:58 +0000
parents c2fc1c310699
children 98681fdabf79
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10024
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
1 /*
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
2 * CodecID definitions for Matroska files
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
3 *
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
4 * see http://cvs.corecodec.org/cgi-bin/cvsweb.cgi/~checkout~/matroska/doc/website/specs/codex.html?rev=HEAD&content-type=text/html
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
5 */
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
6
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
7 #ifndef __MATROSKA_H
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
8 #define __MATROSKA_H
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
9
10133
d9c9422887ca Endian fixes and proper support for headerless AAC streams.
mosu
parents: 10125
diff changeset
10 #define MKV_A_AAC_2MAIN "A_AAC/MPEG2/MAIN"
10125
252428ac7978 Added support for AAC.
mosu
parents: 10105
diff changeset
11 #define MKV_A_AAC_2LC "A_AAC/MPEG2/LC"
10133
d9c9422887ca Endian fixes and proper support for headerless AAC streams.
mosu
parents: 10125
diff changeset
12 #define MKV_A_AAC_2SSR "A_AAC/MPEG2/SSR"
d9c9422887ca Endian fixes and proper support for headerless AAC streams.
mosu
parents: 10125
diff changeset
13 #define MKV_A_AAC_4MAIN "A_AAC/MPEG4/MAIN"
10125
252428ac7978 Added support for AAC.
mosu
parents: 10105
diff changeset
14 #define MKV_A_AAC_4LC "A_AAC/MPEG4/LC"
10133
d9c9422887ca Endian fixes and proper support for headerless AAC streams.
mosu
parents: 10125
diff changeset
15 #define MKV_A_AAC_4SSR "A_AAC/MPEG4/SSR"
d9c9422887ca Endian fixes and proper support for headerless AAC streams.
mosu
parents: 10125
diff changeset
16 #define MKV_A_AAC_4LTP "A_AAC/MPEG4/LTP"
10125
252428ac7978 Added support for AAC.
mosu
parents: 10105
diff changeset
17 #define MKV_A_AAC_4SBR "A_AAC/MPEG4/SBR"
10024
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
18 #define MKV_A_AC3 "A_AC3"
10105
dc4f1b768062 Support for DTS tracks (only with -hwac3 of course).
mosu
parents: 10024
diff changeset
19 #define MKV_A_DTS "A_DTS"
10125
252428ac7978 Added support for AAC.
mosu
parents: 10105
diff changeset
20 #define MKV_A_MP3 "A_MPEG/L3"
10024
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
21 #define MKV_A_PCM "A_PCM/INT/LIT"
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
22 #define MKV_A_VORBIS "A_VORBIS"
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
23 #define MKV_A_ACM "A_MS/ACM"
10410
c2fc1c310699 Necessary changes for the upcoming libebml/libmatroska 0.5.0. Implemented support for RealAudio and RealVideo inside Matroska.
mosu
parents: 10133
diff changeset
24 #define MKV_A_REAL28 "A_REAL/28_8"
c2fc1c310699 Necessary changes for the upcoming libebml/libmatroska 0.5.0. Implemented support for RealAudio and RealVideo inside Matroska.
mosu
parents: 10133
diff changeset
25 #define MKV_A_REALATRC "A_REAL/ATRC"
c2fc1c310699 Necessary changes for the upcoming libebml/libmatroska 0.5.0. Implemented support for RealAudio and RealVideo inside Matroska.
mosu
parents: 10133
diff changeset
26 #define MKV_A_REALCOOK "A_REAL/COOK"
c2fc1c310699 Necessary changes for the upcoming libebml/libmatroska 0.5.0. Implemented support for RealAudio and RealVideo inside Matroska.
mosu
parents: 10133
diff changeset
27 #define MKV_A_REALDNET "A_REAL/DNET"
c2fc1c310699 Necessary changes for the upcoming libebml/libmatroska 0.5.0. Implemented support for RealAudio and RealVideo inside Matroska.
mosu
parents: 10133
diff changeset
28 #define MKV_A_REALSIPR "A_REAL/SIPR"
10024
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
29
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
30 #define MKV_V_MSCOMP "V_MS/VFW/FOURCC"
10410
c2fc1c310699 Necessary changes for the upcoming libebml/libmatroska 0.5.0. Implemented support for RealAudio and RealVideo inside Matroska.
mosu
parents: 10133
diff changeset
31 #define MKV_V_REALV10 "V_REAL/RV10"
c2fc1c310699 Necessary changes for the upcoming libebml/libmatroska 0.5.0. Implemented support for RealAudio and RealVideo inside Matroska.
mosu
parents: 10133
diff changeset
32 #define MKV_V_REALV20 "V_REAL/RV20"
c2fc1c310699 Necessary changes for the upcoming libebml/libmatroska 0.5.0. Implemented support for RealAudio and RealVideo inside Matroska.
mosu
parents: 10133
diff changeset
33 #define MKV_V_REALV30 "V_REAL/RV30"
c2fc1c310699 Necessary changes for the upcoming libebml/libmatroska 0.5.0. Implemented support for RealAudio and RealVideo inside Matroska.
mosu
parents: 10133
diff changeset
34 #define MKV_V_REALV40 "V_REAL/RV40"
10024
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
35
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
36 #define MKV_S_TEXTASCII "S_TEXT/ASCII"
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
37 #define MKV_S_TEXTUTF8 "S_TEXT/UTF8"
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
38
c6fab860ab18 Added Matroska demuxing support.
mosu
parents:
diff changeset
39 #endif /* __MATROSKA_H */