Mercurial > libavformat.hg
annotate isom.c @ 6435:67433b0c29d5 libavformat
move h264 demuxer to its own file
author | aurel |
---|---|
date | Sun, 29 Aug 2010 21:28:51 +0000 |
parents | a2c4863f9199 |
children | 3ec611be7d7a |
rev | line source |
---|---|
1216 | 1 /* |
2 * ISO Media common code | |
4251
77e0c7511d41
cosmetics: Remove pointless period after copyright statement non-sentences.
diego
parents:
4193
diff
changeset
|
3 * Copyright (c) 2001 Fabrice Bellard |
1216 | 4 * Copyright (c) 2002 Francois Revol <revol@free.fr> |
5 * Copyright (c) 2006 Baptiste Coudurier <baptiste.coudurier@free.fr> | |
6 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1259
diff
changeset
|
7 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1259
diff
changeset
|
8 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1259
diff
changeset
|
9 * FFmpeg is free software; you can redistribute it and/or |
1216 | 10 * modify it under the terms of the GNU Lesser General Public |
11 * 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:
1259
diff
changeset
|
12 * version 2.1 of the License, or (at your option) any later version. |
1216 | 13 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1259
diff
changeset
|
14 * FFmpeg is distributed in the hope that it will be useful, |
1216 | 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
17 * Lesser General Public License for more details. | |
18 * | |
19 * 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:
1259
diff
changeset
|
20 * License along with FFmpeg; if not, write to the Free Software |
1216 | 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
22 */ | |
23 | |
24 #include "avformat.h" | |
6033 | 25 #include "internal.h" |
1216 | 26 #include "isom.h" |
27 | |
1944 | 28 /* http://www.mp4ra.org */ |
2976 | 29 /* ordered by muxing preference */ |
1948 | 30 const AVCodecTag ff_mp4_obj_type[] = { |
4193
2d3be324c648
Add support for muxing mov/mp4/3gp timed text streams
conrad
parents:
4118
diff
changeset
|
31 { CODEC_ID_MOV_TEXT , 0x08 }, |
3883
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
32 { CODEC_ID_MPEG4 , 0x20 }, |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
33 { CODEC_ID_H264 , 0x21 }, |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
34 { CODEC_ID_AAC , 0x40 }, |
5379 | 35 { CODEC_ID_MP4ALS , 0x40 }, /* 14496-3 ALS */ |
3883
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
36 { CODEC_ID_MPEG2VIDEO, 0x61 }, /* MPEG2 Main */ |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
37 { CODEC_ID_MPEG2VIDEO, 0x60 }, /* MPEG2 Simple */ |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
38 { CODEC_ID_MPEG2VIDEO, 0x62 }, /* MPEG2 SNR */ |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
39 { CODEC_ID_MPEG2VIDEO, 0x63 }, /* MPEG2 Spatial */ |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
40 { CODEC_ID_MPEG2VIDEO, 0x64 }, /* MPEG2 High */ |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
41 { CODEC_ID_MPEG2VIDEO, 0x65 }, /* MPEG2 422 */ |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
42 { CODEC_ID_AAC , 0x66 }, /* MPEG2 AAC Main */ |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
43 { CODEC_ID_AAC , 0x67 }, /* MPEG2 AAC Low */ |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
44 { CODEC_ID_AAC , 0x68 }, /* MPEG2 AAC SSR */ |
3887
c8ab0676bba6
change the logic to mux 13818-3 and 11172-3 in mp4, less code
bcoudurier
parents:
3885
diff
changeset
|
45 { CODEC_ID_MP3 , 0x69 }, /* 13818-3 */ |
c8ab0676bba6
change the logic to mux 13818-3 and 11172-3 in mp4, less code
bcoudurier
parents:
3885
diff
changeset
|
46 { CODEC_ID_MP2 , 0x69 }, /* 11172-3 */ |
3884 | 47 { CODEC_ID_MPEG1VIDEO, 0x6A }, /* 11172-2 */ |
3883
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
48 { CODEC_ID_MP3 , 0x6B }, /* 11172-3 */ |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
49 { CODEC_ID_MJPEG , 0x6C }, /* 10918-1 */ |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
50 { CODEC_ID_PNG , 0x6D }, |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
51 { CODEC_ID_JPEG2000 , 0x6E }, /* 15444-1 */ |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
52 { CODEC_ID_VC1 , 0xA3 }, |
3885 | 53 { CODEC_ID_DIRAC , 0xA4 }, |
3883
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
54 { CODEC_ID_AC3 , 0xA5 }, |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
55 { CODEC_ID_VORBIS , 0xDD }, /* non standard, gpac uses it */ |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
56 { CODEC_ID_DVD_SUBTITLE, 0xE0 }, /* non standard, see unsupported-embedded-subs-2.mp4 */ |
1a8a1a651b30
cosmetics, change values to hex since mp4ra use hex
bcoudurier
parents:
3881
diff
changeset
|
57 { CODEC_ID_QCELP , 0xE1 }, |
5290
0d5653941bf9
Make AVCodecTag.id enum CodecID and use CODEC_ID_NONE instead of 0.
cehoyos
parents:
5039
diff
changeset
|
58 { CODEC_ID_NONE , 0 }, |
1216 | 59 }; |
60 | |
1843 | 61 const AVCodecTag codec_movvideo_tags[] = { |
62 /* { CODEC_ID_, MKTAG('I', 'V', '5', '0') }, *//* Indeo 5.0 */ | |
63 | |
64 { CODEC_ID_RAWVIDEO, MKTAG('r', 'a', 'w', ' ') }, /* Uncompressed RGB */ | |
4808 | 65 { CODEC_ID_RAWVIDEO, MKTAG('y', 'u', 'v', '2') }, /* Uncompressed YUV422 */ |
1843 | 66 { CODEC_ID_RAWVIDEO, MKTAG('A', 'V', 'U', 'I') }, /* YUV with alpha-channel (AVID Uncompressed) */ |
67 { CODEC_ID_RAWVIDEO, MKTAG('2', 'v', 'u', 'y') }, /* UNCOMPRESSED 8BIT 4:2:2 */ | |
5341
09ae9d168949
add yuvs fourcc to raw.c and isom.c, fixes samples/mov/yuvs.mov
compn
parents:
5290
diff
changeset
|
68 { CODEC_ID_RAWVIDEO, MKTAG('y', 'u', 'v', 's') }, /* same as 2vuy but byte swapped */ |
1843 | 69 |
6092 | 70 { CODEC_ID_RAWVIDEO, MKTAG('L', '5', '5', '5') }, |
71 { CODEC_ID_RAWVIDEO, MKTAG('L', '5', '6', '5') }, | |
72 { CODEC_ID_RAWVIDEO, MKTAG('B', '5', '6', '5') }, | |
73 { CODEC_ID_RAWVIDEO, MKTAG('2', '4', 'B', 'G') }, | |
74 { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 'A') }, | |
75 { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 'A') }, | |
76 { CODEC_ID_RAWVIDEO, MKTAG('A', 'B', 'G', 'R') }, | |
6132 | 77 { CODEC_ID_RAWVIDEO, MKTAG('b', '1', '6', 'g') }, |
78 { CODEC_ID_RAWVIDEO, MKTAG('b', '4', '8', 'r') }, | |
6092 | 79 |
5470
3f4dbd1e6548
Add decoder for R210 (uncompressed 10-bit RGB) codec.
reimar
parents:
5390
diff
changeset
|
80 { CODEC_ID_R210, MKTAG('r', '2', '1', '0') }, /* UNCOMPRESSED 10BIT RGB */ |
4926 | 81 { CODEC_ID_V210, MKTAG('v', '2', '1', '0') }, /* UNCOMPRESSED 10BIT 4:2:2 */ |
82 | |
1843 | 83 { CODEC_ID_MJPEG, MKTAG('j', 'p', 'e', 'g') }, /* PhotoJPEG */ |
84 { CODEC_ID_MJPEG, MKTAG('m', 'j', 'p', 'a') }, /* Motion-JPEG (format A) */ | |
85 { CODEC_ID_MJPEG, MKTAG('A', 'V', 'D', 'J') }, /* MJPEG with alpha-channel (AVID JFIF meridien compressed) */ | |
86 /* { CODEC_ID_MJPEG, MKTAG('A', 'V', 'R', 'n') }, *//* MJPEG with alpha-channel (AVID ABVB/Truevision NuVista) */ | |
2081 | 87 { CODEC_ID_MJPEG, MKTAG('d', 'm', 'b', '1') }, /* Motion JPEG OpenDML */ |
1843 | 88 { CODEC_ID_MJPEGB, MKTAG('m', 'j', 'p', 'b') }, /* Motion-JPEG (format B) */ |
89 | |
90 { CODEC_ID_SVQ1, MKTAG('S', 'V', 'Q', '1') }, /* Sorenson Video v1 */ | |
91 { CODEC_ID_SVQ1, MKTAG('s', 'v', 'q', '1') }, /* Sorenson Video v1 */ | |
92 { CODEC_ID_SVQ1, MKTAG('s', 'v', 'q', 'i') }, /* Sorenson Video v1 (from QT specs)*/ | |
93 { CODEC_ID_SVQ3, MKTAG('S', 'V', 'Q', '3') }, /* Sorenson Video v3 */ | |
94 | |
95 { CODEC_ID_MPEG4, MKTAG('m', 'p', '4', 'v') }, | |
96 { CODEC_ID_MPEG4, MKTAG('D', 'I', 'V', 'X') }, /* OpenDiVX *//* sample files at http://heroinewarrior.com/xmovie.php3 use this tag */ | |
97 { CODEC_ID_MPEG4, MKTAG('X', 'V', 'I', 'D') }, | |
98 { CODEC_ID_MPEG4, MKTAG('3', 'I', 'V', '2') }, /* experimental: 3IVX files before ivx D4 4.5.1 */ | |
99 | |
100 { CODEC_ID_H263, MKTAG('h', '2', '6', '3') }, /* H263 */ | |
101 { CODEC_ID_H263, MKTAG('s', '2', '6', '3') }, /* H263 ?? works */ | |
102 | |
103 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'c', 'p') }, /* DV PAL */ | |
104 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'c', ' ') }, /* DV NTSC */ | |
105 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'p', 'p') }, /* DVCPRO PAL produced by FCP */ | |
106 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', '5', 'p') }, /* DVCPRO50 PAL produced by FCP */ | |
107 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', '5', 'n') }, /* DVCPRO50 NTSC produced by FCP */ | |
108 { CODEC_ID_DVVIDEO, MKTAG('A', 'V', 'd', 'v') }, /* AVID DV */ | |
3875 | 109 { CODEC_ID_DVVIDEO, MKTAG('A', 'V', 'd', '1') }, /* AVID DV100 */ |
3790
a8a70ae19206
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
3738
diff
changeset
|
110 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', 'q') }, /* DVCPRO HD 720p50 */ |
a8a70ae19206
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
3738
diff
changeset
|
111 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', 'p') }, /* DVCPRO HD 720p60 */ |
4907 | 112 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', '1') }, |
113 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', '2') }, | |
114 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', '4') }, | |
3790
a8a70ae19206
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
3738
diff
changeset
|
115 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', '5') }, /* DVCPRO HD 50i produced by FCP */ |
a8a70ae19206
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
3738
diff
changeset
|
116 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', '6') }, /* DVCPRO HD 60i produced by FCP */ |
a8a70ae19206
Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer as
romansh
parents:
3738
diff
changeset
|
117 { CODEC_ID_DVVIDEO, MKTAG('d', 'v', 'h', '3') }, /* DVCPRO HD 30p produced by FCP */ |
1843 | 118 |
119 { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') }, /* On2 VP3 */ | |
120 { CODEC_ID_RPZA, MKTAG('r', 'p', 'z', 'a') }, /* Apple Video (RPZA) */ | |
121 { CODEC_ID_CINEPAK, MKTAG('c', 'v', 'i', 'd') }, /* Cinepak */ | |
122 { CODEC_ID_8BPS, MKTAG('8', 'B', 'P', 'S') }, /* Planar RGB (8BPS) */ | |
123 { CODEC_ID_SMC, MKTAG('s', 'm', 'c', ' ') }, /* Apple Graphics (SMC) */ | |
124 { CODEC_ID_QTRLE, MKTAG('r', 'l', 'e', ' ') }, /* Apple Animation (RLE) */ | |
125 { CODEC_ID_MSRLE, MKTAG('W', 'R', 'L', 'E') }, | |
126 { CODEC_ID_QDRAW, MKTAG('q', 'd', 'r', 'w') }, /* QuickDraw */ | |
127 | |
4063 | 128 { CODEC_ID_RAWVIDEO, MKTAG('W', 'R', 'A', 'W') }, |
129 | |
1843 | 130 { CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') }, /* AVC-1/H.264 */ |
131 | |
132 { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'e', 'g') }, /* MPEG */ | |
5029
b811d7012aaa
Analysis of logs show that there are in fact some files with m1v1 too (not just m2v2),
darkshikari
parents:
5027
diff
changeset
|
133 { CODEC_ID_MPEG1VIDEO, MKTAG('m', '1', 'v', '1') }, |
3606 | 134 { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '1') }, /* MPEG2 HDV 720p30 */ |
135 { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '2') }, /* MPEG2 HDV 1080i60 */ | |
136 { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '3') }, /* MPEG2 HDV 1080i50 */ | |
137 { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '5') }, /* MPEG2 HDV 720p25 */ | |
3607 | 138 { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '6') }, /* MPEG2 HDV 1080p24 */ |
139 { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '7') }, /* MPEG2 HDV 1080p25 */ | |
140 { CODEC_ID_MPEG2VIDEO, MKTAG('h', 'd', 'v', '8') }, /* MPEG2 HDV 1080p30 */ | |
1843 | 141 { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'x', '5', 'n') }, /* MPEG2 IMX NTSC 525/60 50mb/s produced by FCP */ |
142 { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'x', '5', 'p') }, /* MPEG2 IMX PAL 625/50 50mb/s produced by FCP */ | |
3028 | 143 { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'x', '4', 'n') }, /* MPEG2 IMX NTSC 525/60 40mb/s produced by FCP */ |
144 { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'x', '4', 'p') }, /* MPEG2 IMX PAL 625/50 40mb/s produced by FCP */ | |
1843 | 145 { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'x', '3', 'n') }, /* MPEG2 IMX NTSC 525/60 30mb/s produced by FCP */ |
146 { CODEC_ID_MPEG2VIDEO, MKTAG('m', 'x', '3', 'p') }, /* MPEG2 IMX PAL 625/50 30mb/s produced by FCP */ | |
3608 | 147 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', '5', '9') }, /* XDCAM HD422 720p60 CBR */ |
148 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', '5', 'a') }, /* XDCAM HD422 720p50 CBR */ | |
149 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', '5', 'b') }, /* XDCAM HD422 1080i60 CBR */ | |
150 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', '5', 'c') }, /* XDCAM HD422 1080i50 CBR */ | |
151 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', '5', 'd') }, /* XDCAM HD422 1080p24 CBR */ | |
152 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', '5', 'e') }, /* XDCAM HD422 1080p25 CBR */ | |
153 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', '5', 'f') }, /* XDCAM HD422 1080p30 CBR */ | |
154 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', '1') }, /* XDCAM EX 720p30 VBR */ | |
2040
91dc0ed52efa
add xdv2 xdcam hd tag, decode xdcam_hd_1080i60.mov
bcoudurier
parents:
1985
diff
changeset
|
155 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', '2') }, /* XDCAM HD 1080i60 */ |
3608 | 156 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', '3') }, /* XDCAM HD 1080i50 VBR */ |
157 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', '4') }, /* XDCAM EX 720p24 VBR */ | |
158 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', '5') }, /* XDCAM EX 720p25 VBR */ | |
159 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', '6') }, /* XDCAM HD 1080p24 VBR */ | |
160 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', '7') }, /* XDCAM HD 1080p25 VBR */ | |
161 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', '8') }, /* XDCAM HD 1080p30 VBR */ | |
162 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', '9') }, /* XDCAM EX 720p60 VBR */ | |
163 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', 'a') }, /* XDCAM EX 720p50 VBR */ | |
164 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', 'b') }, /* XDCAM EX 1080i60 VBR */ | |
165 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', 'c') }, /* XDCAM EX 1080i50 VBR */ | |
166 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', 'd') }, /* XDCAM EX 1080p24 VBR */ | |
167 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', 'e') }, /* XDCAM EX 1080p25 VBR */ | |
168 { CODEC_ID_MPEG2VIDEO, MKTAG('x', 'd', 'v', 'f') }, /* XDCAM EX 1080p30 VBR */ | |
1843 | 169 { CODEC_ID_MPEG2VIDEO, MKTAG('A', 'V', 'm', 'p') }, /* AVID IMX PAL */ |
5020
807d6116fa70
Add "m2v1" to fourccs for MPEG-2 video; fixes some MOV files.
darkshikari
parents:
5019
diff
changeset
|
170 { CODEC_ID_MPEG2VIDEO, MKTAG('m', '2', 'v', '1') }, |
1843 | 171 |
4118 | 172 { CODEC_ID_JPEG2000, MKTAG('m', 'j', 'p', '2') }, /* JPEG 2000 produced by FCP */ |
1843 | 173 |
174 { CODEC_ID_TARGA, MKTAG('t', 'g', 'a', ' ') }, /* Truevision Targa */ | |
175 { CODEC_ID_TIFF, MKTAG('t', 'i', 'f', 'f') }, /* TIFF embedded in MOV */ | |
176 { CODEC_ID_GIF, MKTAG('g', 'i', 'f', ' ') }, /* embedded gif files as frames (usually one "click to play movie" frame) */ | |
177 { CODEC_ID_PNG, MKTAG('p', 'n', 'g', ' ') }, | |
178 | |
179 { CODEC_ID_VC1, MKTAG('v', 'c', '-', '1') }, /* SMPTE RP 2025 */ | |
3496
cdbf302a3c00
chinese avs demuxing support, demux AVSFileFormat.mp4
bcoudurier
parents:
3244
diff
changeset
|
180 { CODEC_ID_CAVS, MKTAG('a', 'v', 's', '2') }, |
1843 | 181 |
3885 | 182 { CODEC_ID_DIRAC, MKTAG('d', 'r', 'a', 'c') }, |
1932 | 183 { CODEC_ID_DNXHD, MKTAG('A', 'V', 'd', 'n') }, /* AVID DNxHD */ |
5549
7fc464450d8c
Support decoding Avid 1:1x codec, (partially) fixes issue1684.
cehoyos
parents:
5470
diff
changeset
|
184 { CODEC_ID_RAWVIDEO, MKTAG('A', 'V', '1', 'x') }, /* AVID 1:1x */ |
5550
133a0ee142a8
Support decoding of Avid uncompressed mov files, fixes issue 1685.
cehoyos
parents:
5549
diff
changeset
|
185 { CODEC_ID_RAWVIDEO, MKTAG('A', 'V', 'u', 'p') }, |
1985 | 186 { CODEC_ID_SGI, MKTAG('s', 'g', 'i', ' ') }, /* SGI */ |
5022 | 187 { CODEC_ID_DPX, MKTAG('d', 'p', 'x', ' ') }, /* DPX */ |
1932 | 188 |
1843 | 189 { CODEC_ID_NONE, 0 }, |
190 }; | |
191 | |
192 const AVCodecTag codec_movaudio_tags[] = { | |
193 { CODEC_ID_PCM_S32BE, MKTAG('i', 'n', '3', '2') }, | |
194 { CODEC_ID_PCM_S32LE, MKTAG('i', 'n', '3', '2') }, | |
195 { CODEC_ID_PCM_S24BE, MKTAG('i', 'n', '2', '4') }, | |
196 { CODEC_ID_PCM_S24LE, MKTAG('i', 'n', '2', '4') }, | |
197 { CODEC_ID_PCM_S16BE, MKTAG('t', 'w', 'o', 's') }, /* 16 bits */ | |
198 { CODEC_ID_PCM_S16LE, MKTAG('s', 'o', 'w', 't') }, /* */ | |
199 { CODEC_ID_PCM_S16LE, MKTAG('l', 'p', 'c', 'm') }, | |
3738
0c46eb1cd9b3
Make MOV demuxer handle F32BE, F32LE, F64BE and F64LE PCM audio.
pross
parents:
3608
diff
changeset
|
200 { CODEC_ID_PCM_F32BE, MKTAG('f', 'l', '3', '2') }, |
5390 | 201 { CODEC_ID_PCM_F32LE, MKTAG('f', 'l', '3', '2') }, |
3738
0c46eb1cd9b3
Make MOV demuxer handle F32BE, F32LE, F64BE and F64LE PCM audio.
pross
parents:
3608
diff
changeset
|
202 { CODEC_ID_PCM_F64BE, MKTAG('f', 'l', '6', '4') }, |
5390 | 203 { CODEC_ID_PCM_F64LE, MKTAG('f', 'l', '6', '4') }, |
1851 | 204 { CODEC_ID_PCM_S8, MKTAG('s', 'o', 'w', 't') }, |
1843 | 205 { CODEC_ID_PCM_U8, MKTAG('r', 'a', 'w', ' ') }, /* 8 bits unsigned */ |
2293
9aea08e128f9
treat NONE as U8 to fix qtNONE/000_0032.MOV, this should not any have side effect since if bps is 16 in stsd, codec will be changed to s16be, just yell if this breaks any sample
bcoudurier
parents:
2081
diff
changeset
|
206 { CODEC_ID_PCM_U8, MKTAG('N', 'O', 'N', 'E') }, /* uncompressed */ |
1843 | 207 { CODEC_ID_PCM_MULAW, MKTAG('u', 'l', 'a', 'w') }, /* */ |
208 { CODEC_ID_PCM_ALAW, MKTAG('a', 'l', 'a', 'w') }, /* */ | |
209 | |
210 { CODEC_ID_ADPCM_IMA_QT, MKTAG('i', 'm', 'a', '4') }, /* IMA-4 ADPCM */ | |
211 | |
212 { CODEC_ID_MACE3, MKTAG('M', 'A', 'C', '3') }, /* Macintosh Audio Compression and Expansion 3:1 */ | |
213 { CODEC_ID_MACE6, MKTAG('M', 'A', 'C', '6') }, /* Macintosh Audio Compression and Expansion 6:1 */ | |
214 | |
5039 | 215 { CODEC_ID_MP1, MKTAG('.', 'm', 'p', '1') }, /* MPEG layer 1 */ |
5038
db3908414396
Add ".mp2" as a fourcc for mp2 audio in MOV. Fixes a problematic MOV file.
darkshikari
parents:
5029
diff
changeset
|
216 { CODEC_ID_MP2, MKTAG('.', 'm', 'p', '2') }, /* MPEG layer 2 */ |
db3908414396
Add ".mp2" as a fourcc for mp2 audio in MOV. Fixes a problematic MOV file.
darkshikari
parents:
5029
diff
changeset
|
217 |
1843 | 218 { CODEC_ID_MP3, MKTAG('.', 'm', 'p', '3') }, /* MPEG layer 3 */ /* sample files at http://www.3ivx.com/showcase.html use this tag */ |
1952 | 219 { CODEC_ID_MP3, 0x6D730055 }, /* MPEG layer 3 */ |
1843 | 220 |
221 /* { CODEC_ID_OGG_VORBIS, MKTAG('O', 'g', 'g', 'S') }, *//* sample files at http://heroinewarrior.com/xmovie.php3 use this tag */ | |
222 | |
223 { CODEC_ID_AAC, MKTAG('m', 'p', '4', 'a') }, /* MPEG-4 AAC */ | |
3881 | 224 { CODEC_ID_AC3, MKTAG('a', 'c', '-', '3') }, /* ETSI TS 102 366 Annex F */ |
5021
bf22df10d085
Add sac3 to mp4 fourccs for mov+h264+aac-sac3+mp4s+ETERNAL_cut.mp4
conrad
parents:
5020
diff
changeset
|
225 { CODEC_ID_AC3, MKTAG('s', 'a', 'c', '3') }, /* Nero Recode */ |
1843 | 226 |
227 { CODEC_ID_AMR_NB, MKTAG('s', 'a', 'm', 'r') }, /* AMR-NB 3gp */ | |
228 { CODEC_ID_AMR_WB, MKTAG('s', 'a', 'w', 'b') }, /* AMR-WB 3gp */ | |
229 | |
3187 | 230 { CODEC_ID_GSM, MKTAG('a', 'g', 's', 'm') }, |
1843 | 231 { CODEC_ID_ALAC, MKTAG('a', 'l', 'a', 'c') }, /* Apple Lossless */ |
3244 | 232 |
233 { CODEC_ID_QCELP, MKTAG('Q','c','l','p') }, | |
5019
54007c06cf7c
Add alternate fourcc for QCELP audio (qclq). Fixes a problematic MOV file.
darkshikari
parents:
4926
diff
changeset
|
234 { CODEC_ID_QCELP, MKTAG('Q','c','l','q') }, |
3244 | 235 { CODEC_ID_QCELP, MKTAG('s','q','c','p') }, /* ISO Media fourcc */ |
236 | |
1843 | 237 { CODEC_ID_QDM2, MKTAG('Q', 'D', 'M', '2') }, /* QDM2 */ |
238 | |
239 { CODEC_ID_DVAUDIO, MKTAG('v', 'd', 'v', 'a') }, | |
240 { CODEC_ID_DVAUDIO, MKTAG('d', 'v', 'c', 'a') }, | |
241 | |
3223 | 242 { CODEC_ID_WMAV2, MKTAG('W', 'M', 'A', '2') }, |
243 | |
1843 | 244 { CODEC_ID_NONE, 0 }, |
245 }; | |
246 | |
2969 | 247 const AVCodecTag ff_codec_movsubtitle_tags[] = { |
2974
4b6a9b61e9dd
Add CODEC_ID_MOV_TEXT and use it instead of modifying the stream in the mov demuxer.
reimar
parents:
2971
diff
changeset
|
248 { CODEC_ID_MOV_TEXT, MKTAG('t', 'e', 'x', 't') }, |
2985 | 249 { CODEC_ID_MOV_TEXT, MKTAG('t', 'x', '3', 'g') }, |
2969 | 250 { CODEC_ID_NONE, 0 }, |
251 }; | |
252 | |
1216 | 253 /* map numeric codes from mdhd atom to ISO 639 */ |
254 /* cf. QTFileFormat.pdf p253, qtff.pdf p205 */ | |
255 /* http://developer.apple.com/documentation/mac/Text/Text-368.html */ | |
256 /* deprecated by putting the code as 3*5bit ascii */ | |
5612
4f20f4db87f7
Store strings directly in mov_mdhd_language_map instead of using pointers,
reimar
parents:
5611
diff
changeset
|
257 static const char mov_mdhd_language_map[][4] = { |
1216 | 258 /* 0-9 */ |
259 "eng", "fra", "ger", "ita", "dut", "sve", "spa", "dan", "por", "nor", | |
260 "heb", "jpn", "ara", "fin", "gre", "ice", "mlt", "tur", "hr "/*scr*/, "chi"/*ace?*/, | |
5612
4f20f4db87f7
Store strings directly in mov_mdhd_language_map instead of using pointers,
reimar
parents:
5611
diff
changeset
|
261 "urd", "hin", "tha", "kor", "lit", "pol", "hun", "est", "lav", "", |
4f20f4db87f7
Store strings directly in mov_mdhd_language_map instead of using pointers,
reimar
parents:
5611
diff
changeset
|
262 "fo ", "", "rus", "chi", "", "iri", "alb", "ron", "ces", "slk", |
1216 | 263 "slv", "yid", "sr ", "mac", "bul", "ukr", "bel", "uzb", "kaz", "aze", |
264 /*?*/ | |
5612
4f20f4db87f7
Store strings directly in mov_mdhd_language_map instead of using pointers,
reimar
parents:
5611
diff
changeset
|
265 "aze", "arm", "geo", "mol", "kir", "tgk", "tuk", "mon", "", "pus", |
1216 | 266 "kur", "kas", "snd", "tib", "nep", "san", "mar", "ben", "asm", "guj", |
5612
4f20f4db87f7
Store strings directly in mov_mdhd_language_map instead of using pointers,
reimar
parents:
5611
diff
changeset
|
267 "pa ", "ori", "mal", "kan", "tam", "tel", "", "bur", "khm", "lao", |
1216 | 268 /* roman? arabic? */ |
269 "vie", "ind", "tgl", "may", "may", "amh", "tir", "orm", "som", "swa", | |
270 /*==rundi?*/ | |
5612
4f20f4db87f7
Store strings directly in mov_mdhd_language_map instead of using pointers,
reimar
parents:
5611
diff
changeset
|
271 "", "run", "", "mlg", "epo", "", "", "", "", "", |
1216 | 272 /* 100 */ |
5612
4f20f4db87f7
Store strings directly in mov_mdhd_language_map instead of using pointers,
reimar
parents:
5611
diff
changeset
|
273 "", "", "", "", "", "", "", "", "", "", |
4f20f4db87f7
Store strings directly in mov_mdhd_language_map instead of using pointers,
reimar
parents:
5611
diff
changeset
|
274 "", "", "", "", "", "", "", "", "", "", |
4f20f4db87f7
Store strings directly in mov_mdhd_language_map instead of using pointers,
reimar
parents:
5611
diff
changeset
|
275 "", "", "", "", "", "", "", "", "wel", "baq", |
1216 | 276 "cat", "lat", "que", "grn", "aym", "tat", "uig", "dzo", "jav" |
277 }; | |
278 | |
5611
1338a4972dd4
Always consider the mov language code as 4 bytes fixed size and change the
reimar
parents:
5610
diff
changeset
|
279 int ff_mov_iso639_to_lang(const char lang[4], int mp4) |
1216 | 280 { |
281 int i, code = 0; | |
282 | |
283 /* old way, only for QT? */ | |
5612
4f20f4db87f7
Store strings directly in mov_mdhd_language_map instead of using pointers,
reimar
parents:
5611
diff
changeset
|
284 for (i = 0; lang[0] && !mp4 && i < FF_ARRAY_ELEMS(mov_mdhd_language_map); i++) { |
4f20f4db87f7
Store strings directly in mov_mdhd_language_map instead of using pointers,
reimar
parents:
5611
diff
changeset
|
285 if (!strcmp(lang, mov_mdhd_language_map[i])) |
1216 | 286 return i; |
287 } | |
288 /* XXX:can we do that in mov too? */ | |
289 if (!mp4) | |
4586
674bf341b7e3
return -1 for errors in ff_mov_iso639_to_lang() to allow for error checking
aurel
parents:
4269
diff
changeset
|
290 return -1; |
1216 | 291 /* handle undefined as such */ |
292 if (lang[0] == '\0') | |
293 lang = "und"; | |
294 /* 5bit ascii */ | |
295 for (i = 0; i < 3; i++) { | |
5610 | 296 uint8_t c = lang[i]; |
297 c -= 0x60; | |
298 if (c > 0x1f) | |
4586
674bf341b7e3
return -1 for errors in ff_mov_iso639_to_lang() to allow for error checking
aurel
parents:
4269
diff
changeset
|
299 return -1; |
1216 | 300 code <<= 5; |
5610 | 301 code |= c; |
1216 | 302 } |
303 return code; | |
304 } | |
305 | |
5611
1338a4972dd4
Always consider the mov language code as 4 bytes fixed size and change the
reimar
parents:
5610
diff
changeset
|
306 int ff_mov_lang_to_iso639(unsigned code, char to[4]) |
1216 | 307 { |
308 int i; | |
5611
1338a4972dd4
Always consider the mov language code as 4 bytes fixed size and change the
reimar
parents:
5610
diff
changeset
|
309 memset(to, 0, 4); |
1216 | 310 /* is it the mangled iso code? */ |
311 /* see http://www.geocities.com/xhelmboyx/quicktime/formats/mp4-layout.txt */ | |
312 if (code > 138) { | |
313 for (i = 2; i >= 0; i--) { | |
314 to[i] = 0x60 + (code & 0x1f); | |
315 code >>= 5; | |
316 } | |
317 return 1; | |
318 } | |
319 /* old fashion apple lang code */ | |
4001 | 320 if (code >= FF_ARRAY_ELEMS(mov_mdhd_language_map)) |
1216 | 321 return 0; |
5612
4f20f4db87f7
Store strings directly in mov_mdhd_language_map instead of using pointers,
reimar
parents:
5611
diff
changeset
|
322 if (!mov_mdhd_language_map[code][0]) |
1216 | 323 return 0; |
5612
4f20f4db87f7
Store strings directly in mov_mdhd_language_map instead of using pointers,
reimar
parents:
5611
diff
changeset
|
324 memcpy(to, mov_mdhd_language_map[code], 4); |
1216 | 325 return 1; |
326 } |