annotate matroska.c @ 2244:93ffcd9d826f libavformat

add support for Matroska subtitle tracks
author aurel
date Wed, 11 Jul 2007 13:13:20 +0000
parents 7fe203e939e5
children 223a74395827
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
380
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
1 /*
2142
3aa1f0f698de split some common code from the mkv demuxer that will be useful to the muxer
aurel
parents: 2023
diff changeset
2 * Matroska common data
380
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
3 * Copyright (c) 2003-2004 The ffmpeg Project
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
4 *
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1332
diff changeset
5 * This file is part of FFmpeg.
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1332
diff changeset
6 *
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1332
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
380
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1332
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
380
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
11 *
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1332
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
380
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
15 * Lesser General Public License for more details.
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
16 *
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
1358
0899bfe4105c Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 1332
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
896
edbe5c3717f9 Update licensing information: The FSF changed postal address.
diego
parents: 887
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
380
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
20 */
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
21
2142
3aa1f0f698de split some common code from the mkv demuxer that will be useful to the muxer
aurel
parents: 2023
diff changeset
22 #include "matroska.h"
380
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
23
2142
3aa1f0f698de split some common code from the mkv demuxer that will be useful to the muxer
aurel
parents: 2023
diff changeset
24 CodecTags ff_mkv_codec_tags[]={
1024
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
25 // {"V_MS/VFW/FOURCC" , CODEC_ID_NONE},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
26 {"V_UNCOMPRESSED" , CODEC_ID_RAWVIDEO},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
27 {"V_MPEG4/ISO/SP" , CODEC_ID_MPEG4},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
28 {"V_MPEG4/ISO/ASP" , CODEC_ID_MPEG4},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
29 {"V_MPEG4/ISO/AP" , CODEC_ID_MPEG4},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
30 {"V_MPEG4/ISO/AVC" , CODEC_ID_H264},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
31 {"V_MPEG4/MS/V3" , CODEC_ID_MSMPEG4V3},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
32 {"V_MPEG1" , CODEC_ID_MPEG1VIDEO},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
33 {"V_MPEG2" , CODEC_ID_MPEG2VIDEO},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
34 {"V_MJPEG" , CODEC_ID_MJPEG},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
35 {"V_REAL/RV10" , CODEC_ID_RV10},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
36 {"V_REAL/RV20" , CODEC_ID_RV20},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
37 {"V_REAL/RV30" , CODEC_ID_RV30},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
38 {"V_REAL/RV40" , CODEC_ID_RV40},
1949
18891c1e3e46 add support for V_THEORA into Matroska
aurel
parents: 1920
diff changeset
39 {"V_THEORA" , CODEC_ID_THEORA},
1024
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
40 /* TODO: Real/Quicktime */
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
41
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
42 // {"A_MS/ACM" , CODEC_ID_NONE},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
43 {"A_MPEG/L1" , CODEC_ID_MP3},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
44 {"A_MPEG/L2" , CODEC_ID_MP3},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
45 {"A_MPEG/L3" , CODEC_ID_MP3},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
46 {"A_PCM/INT/BIG" , CODEC_ID_PCM_U16BE},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
47 {"A_PCM/INT/LIT" , CODEC_ID_PCM_U16LE},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
48 // {"A_PCM/FLOAT/IEEE" , CODEC_ID_NONE},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
49 {"A_AC3" , CODEC_ID_AC3},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
50 {"A_DTS" , CODEC_ID_DTS},
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
51 {"A_VORBIS" , CODEC_ID_VORBIS},
1475
a83e86c05295 Add A_AAC codec identifier support in matroska.
aurel
parents: 1472
diff changeset
52 {"A_AAC" , CODEC_ID_AAC},
1537
8110f1a20f2a add support for FLAC in matroska
aurel
parents: 1534
diff changeset
53 {"A_FLAC" , CODEC_ID_FLAC},
1451
48cfca624912 WavPack support in Matroska
kostya
parents: 1358
diff changeset
54 {"A_WAVPACK4" , CODEC_ID_WAVPACK},
1534
4bf9dc98e127 add support for tta in matroska
aurel
parents: 1533
diff changeset
55 {"A_TTA1" , CODEC_ID_TTA},
2144
7fe203e939e5 add support for real audio in matroska
aurel
parents: 2142
diff changeset
56 {"A_REAL/14_4" , CODEC_ID_RA_144},
7fe203e939e5 add support for real audio in matroska
aurel
parents: 2142
diff changeset
57 {"A_REAL/28_8" , CODEC_ID_RA_288},
7fe203e939e5 add support for real audio in matroska
aurel
parents: 2142
diff changeset
58 {"A_REAL/ATRC" , CODEC_ID_ATRAC3},
7fe203e939e5 add support for real audio in matroska
aurel
parents: 2142
diff changeset
59 {"A_REAL/COOK" , CODEC_ID_COOK},
7fe203e939e5 add support for real audio in matroska
aurel
parents: 2142
diff changeset
60 // {"A_REAL/SIPR" , CODEC_ID_SIPRO},
2244
93ffcd9d826f add support for Matroska subtitle tracks
aurel
parents: 2144
diff changeset
61
93ffcd9d826f add support for Matroska subtitle tracks
aurel
parents: 2144
diff changeset
62 {"S_TEXT/ASCII" , CODEC_ID_TEXT},
93ffcd9d826f add support for Matroska subtitle tracks
aurel
parents: 2144
diff changeset
63 {"S_TEXT/UTF8" , CODEC_ID_TEXT},
93ffcd9d826f add support for Matroska subtitle tracks
aurel
parents: 2144
diff changeset
64 {"S_VOBSUB" , CODEC_ID_DVD_SUBTITLE},
93ffcd9d826f add support for Matroska subtitle tracks
aurel
parents: 2144
diff changeset
65
1024
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
66 {NULL , CODEC_ID_NONE}
380
9416dc106e06 matroska demuxer by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
michael
parents:
diff changeset
67 /* TODO: AC3-9/10 (?), Real, Musepack, Quicktime */
1024
144729fd2d6c cleanup codec_id mapping (untested)
michael
parents: 1021
diff changeset
68 };