Mercurial > libavformat.hg
annotate mov.c @ 5383:79b48fe3d753 libavformat
MOV: cprt is another tag used for copyright
| author | conrad |
|---|---|
| date | Mon, 23 Nov 2009 08:47:47 +0000 |
| parents | 45d0832f48b6 |
| children | 8737044ce5c3 |
| rev | line source |
|---|---|
| 1845 | 1 /* |
| 2 * MOV demuxer | |
|
4251
77e0c7511d41
cosmetics: Remove pointless period after copyright statement non-sentences.
diego
parents:
4242
diff
changeset
|
3 * Copyright (c) 2001 Fabrice Bellard |
|
4722
639c428c8b23
typo in the mail, the 4am commit is always the worst
bcoudurier
parents:
4720
diff
changeset
|
4 * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com> |
| 1845 | 5 * |
| 6 * This file is part of FFmpeg. | |
| 7 * | |
| 8 * FFmpeg is free software; you can redistribute it and/or | |
| 9 * modify it under the terms of the GNU Lesser General Public | |
| 10 * License as published by the Free Software Foundation; either | |
| 11 * version 2.1 of the License, or (at your option) any later version. | |
| 12 * | |
| 13 * FFmpeg 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 GNU | |
| 16 * Lesser General Public License for more details. | |
| 17 * | |
| 18 * You should have received a copy of the GNU Lesser General Public | |
| 19 * License along with FFmpeg; if not, write to the Free Software | |
| 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
| 21 */ | |
| 22 | |
| 23 #include <limits.h> | |
| 24 | |
| 25 //#define DEBUG | |
| 4726 | 26 //#define DEBUG_METADATA |
| 27 //#define MOV_EXPORT_ALL_METADATA | |
| 1845 | 28 |
|
4201
7d2f3f1b68d8
Fix build: Add intreadwrite.h and bswap.h #includes where necessary.
diego
parents:
4197
diff
changeset
|
29 #include "libavutil/intreadwrite.h" |
| 4485 | 30 #include "libavutil/avstring.h" |
| 1845 | 31 #include "avformat.h" |
| 32 #include "riff.h" | |
| 33 #include "isom.h" | |
| 3286 | 34 #include "libavcodec/mpeg4audio.h" |
| 35 #include "libavcodec/mpegaudiodata.h" | |
| 4872 | 36 #include "libavcodec/get_bits.h" |
| 1845 | 37 |
| 4206 | 38 #if CONFIG_ZLIB |
| 1845 | 39 #include <zlib.h> |
| 40 #endif | |
| 41 | |
| 42 /* | |
| 43 * First version by Francois Revol revol@free.fr | |
| 44 * Seek function by Gael Chardon gael.dev@4now.net | |
| 45 * | |
| 46 * Features and limitations: | |
| 47 * - reads most of the QT files I have (at least the structure), | |
| 48 * Sample QuickTime files with mp3 audio can be found at: http://www.3ivx.com/showcase.html | |
| 49 * - the code is quite ugly... maybe I won't do it recursive next time :-) | |
| 50 * | |
| 51 * Funny I didn't know about http://sourceforge.net/projects/qt-ffmpeg/ | |
| 52 * when coding this :) (it's a writer anyway) | |
| 53 * | |
| 54 * Reference documents: | |
| 55 * http://www.geocities.com/xhelmboyx/quicktime/formats/qtm-layout.txt | |
| 56 * Apple: | |
| 57 * http://developer.apple.com/documentation/QuickTime/QTFF/ | |
| 58 * http://developer.apple.com/documentation/QuickTime/QTFF/qtff.pdf | |
| 59 * QuickTime is a trademark of Apple (AFAIK :)) | |
| 60 */ | |
| 61 | |
| 62 #include "qtpalette.h" | |
| 63 | |
| 64 | |
| 65 #undef NDEBUG | |
| 66 #include <assert.h> | |
| 67 | |
| 68 /* XXX: it's the first time I make a recursive parser I think... sorry if it's ugly :P */ | |
| 69 | |
| 70 /* those functions parse an atom */ | |
| 71 /* return code: | |
| 3160 | 72 0: continue to parse next atom |
| 3175 | 73 <0: error occurred, exit |
| 3160 | 74 */ |
| 1845 | 75 /* links atom IDs to parse functions */ |
| 76 typedef struct MOVParseTableEntry { | |
| 77 uint32_t type; | |
| 4079 | 78 int (*parse)(MOVContext *ctx, ByteIOContext *pb, MOVAtom atom); |
| 1845 | 79 } MOVParseTableEntry; |
| 80 | |
|
2820
95ce00ad6f3e
save pointer to parse table, it is unlikely to change
bcoudurier
parents:
2819
diff
changeset
|
81 static const MOVParseTableEntry mov_default_parse_table[]; |
|
95ce00ad6f3e
save pointer to parse table, it is unlikely to change
bcoudurier
parents:
2819
diff
changeset
|
82 |
| 4728 | 83 static int mov_metadata_trkn(MOVContext *c, ByteIOContext *pb, unsigned len) |
| 84 { | |
| 85 char buf[16]; | |
| 86 | |
| 87 get_be16(pb); // unknown | |
| 88 snprintf(buf, sizeof(buf), "%d", get_be16(pb)); | |
| 89 av_metadata_set(&c->fc->metadata, "track", buf); | |
| 90 | |
| 91 get_be16(pb); // total tracks | |
| 92 | |
| 93 return 0; | |
| 94 } | |
| 95 | |
|
4727
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
96 static int mov_read_udta_string(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
97 { |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
98 #ifdef MOV_EXPORT_ALL_METADATA |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
99 char tmp_key[5]; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
100 #endif |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
101 char str[1024], key2[16], language[4] = {0}; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
102 const char *key = NULL; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
103 uint16_t str_size; |
| 4728 | 104 int (*parse)(MOVContext*, ByteIOContext*, unsigned) = NULL; |
|
4727
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
105 |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
106 switch (atom.type) { |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
107 case MKTAG(0xa9,'n','a','m'): key = "title"; break; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
108 case MKTAG(0xa9,'a','u','t'): |
|
5342
d2db7a53bc0d
fix \0xa9wrt metadata, to composer, fix issue #1501
bcoudurier
parents:
5332
diff
changeset
|
109 case MKTAG(0xa9,'A','R','T'): key = "author"; break; |
|
d2db7a53bc0d
fix \0xa9wrt metadata, to composer, fix issue #1501
bcoudurier
parents:
5332
diff
changeset
|
110 case MKTAG(0xa9,'w','r','t'): key = "composer"; break; |
| 5383 | 111 case MKTAG( 'c','p','r','t'): |
|
4727
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
112 case MKTAG(0xa9,'c','p','y'): key = "copyright"; break; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
113 case MKTAG(0xa9,'c','m','t'): |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
114 case MKTAG(0xa9,'i','n','f'): key = "comment"; break; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
115 case MKTAG(0xa9,'a','l','b'): key = "album"; break; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
116 case MKTAG(0xa9,'d','a','y'): key = "year"; break; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
117 case MKTAG(0xa9,'g','e','n'): key = "genre"; break; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
118 case MKTAG(0xa9,'t','o','o'): |
|
5354
0f7d0b4f9bd8
change \0xa9enc tag metadata name to encoder to match id3v2
bcoudurier
parents:
5351
diff
changeset
|
119 case MKTAG(0xa9,'e','n','c'): key = "encoder"; break; |
| 5382 | 120 case MKTAG( 'd','e','s','c'): key = "description";break; |
| 121 case MKTAG( 'l','d','e','s'): key = "synopsis"; break; | |
| 122 case MKTAG( 't','v','s','h'): key = "show"; break; | |
| 123 case MKTAG( 't','v','e','n'): key = "episode_id";break; | |
| 124 case MKTAG( 't','v','n','n'): key = "network"; break; | |
| 4728 | 125 case MKTAG( 't','r','k','n'): key = "track"; |
| 126 parse = mov_metadata_trkn; break; | |
|
4727
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
127 } |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
128 |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
129 if (c->itunes_metadata && atom.size > 8) { |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
130 int data_size = get_be32(pb); |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
131 int tag = get_le32(pb); |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
132 if (tag == MKTAG('d','a','t','a')) { |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
133 get_be32(pb); // type |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
134 get_be32(pb); // unknown |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
135 str_size = data_size - 16; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
136 atom.size -= 16; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
137 } else return 0; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
138 } else if (atom.size > 4 && key && !c->itunes_metadata) { |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
139 str_size = get_be16(pb); // string length |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
140 ff_mov_lang_to_iso639(get_be16(pb), language); |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
141 atom.size -= 4; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
142 } else |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
143 str_size = atom.size; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
144 |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
145 #ifdef MOV_EXPORT_ALL_METADATA |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
146 if (!key) { |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
147 snprintf(tmp_key, 5, "%.4s", (char*)&atom.type); |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
148 key = tmp_key; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
149 } |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
150 #endif |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
151 |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
152 if (!key) |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
153 return 0; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
154 if (atom.size < 0) |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
155 return -1; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
156 |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
157 str_size = FFMIN3(sizeof(str)-1, str_size, atom.size); |
| 4728 | 158 |
| 159 if (parse) | |
| 160 parse(c, pb, str_size); | |
| 161 else { | |
| 4729 | 162 get_buffer(pb, str, str_size); |
| 163 str[str_size] = 0; | |
| 164 av_metadata_set(&c->fc->metadata, key, str); | |
| 165 if (*language && strcmp(language, "und")) { | |
| 166 snprintf(key2, sizeof(key2), "%s-%s", key, language); | |
| 167 av_metadata_set(&c->fc->metadata, key2, str); | |
| 168 } | |
| 4728 | 169 } |
|
4727
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
170 #ifdef DEBUG_METADATA |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
171 av_log(c->fc, AV_LOG_DEBUG, "lang \"%3s\" ", language); |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
172 av_log(c->fc, AV_LOG_DEBUG, "tag \"%s\" value \"%s\" atom \"%.4s\" %d %lld\n", |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
173 key, str, (char*)&atom.type, str_size, atom.size); |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
174 #endif |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
175 |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
176 return 0; |
|
245cabbfa676
move read_udta_string up to avoid forward declaration
bcoudurier
parents:
4726
diff
changeset
|
177 } |
| 4726 | 178 |
| 4079 | 179 static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 180 { |
| 181 int64_t total_size = 0; | |
| 4079 | 182 MOVAtom a; |
| 1845 | 183 int i; |
| 184 int err = 0; | |
| 185 | |
| 186 a.offset = atom.offset; | |
| 187 | |
| 188 if (atom.size < 0) | |
| 2026 | 189 atom.size = INT64_MAX; |
| 1845 | 190 while(((total_size + 8) < atom.size) && !url_feof(pb) && !err) { |
| 4726 | 191 int (*parse)(MOVContext*, ByteIOContext*, MOVAtom) = NULL; |
| 1845 | 192 a.size = atom.size; |
| 2826 | 193 a.type=0; |
| 1845 | 194 if(atom.size >= 8) { |
| 195 a.size = get_be32(pb); | |
| 196 a.type = get_le32(pb); | |
| 197 } | |
| 198 total_size += 8; | |
| 199 a.offset += 8; | |
| 2902 | 200 dprintf(c->fc, "type: %08x %.4s sz: %"PRIx64" %"PRIx64" %"PRIx64"\n", |
| 201 a.type, (char*)&a.type, a.size, atom.size, total_size); | |
| 1845 | 202 if (a.size == 1) { /* 64 bit extended size */ |
| 203 a.size = get_be64(pb) - 8; | |
| 204 a.offset += 8; | |
| 205 total_size += 8; | |
| 206 } | |
| 207 if (a.size == 0) { | |
| 208 a.size = atom.size - total_size; | |
| 209 if (a.size <= 8) | |
| 210 break; | |
| 211 } | |
|
1964
4571a481081d
move atom size check before parsing function search
bcoudurier
parents:
1963
diff
changeset
|
212 a.size -= 8; |
|
2660
022174d849d5
fix issue 225, instead of stoping when wrong atom size is found,
bcoudurier
parents:
2589
diff
changeset
|
213 if(a.size < 0) |
|
1964
4571a481081d
move atom size check before parsing function search
bcoudurier
parents:
1963
diff
changeset
|
214 break; |
| 2665 | 215 a.size = FFMIN(a.size, atom.size - total_size); |
|
1964
4571a481081d
move atom size check before parsing function search
bcoudurier
parents:
1963
diff
changeset
|
216 |
| 4726 | 217 for (i = 0; mov_default_parse_table[i].type; i++) |
| 218 if (mov_default_parse_table[i].type == a.type) { | |
| 219 parse = mov_default_parse_table[i].parse; | |
| 220 break; | |
| 221 } | |
| 1845 | 222 |
| 4726 | 223 // container is user data |
| 224 if (!parse && (atom.type == MKTAG('u','d','t','a') || | |
| 225 atom.type == MKTAG('i','l','s','t'))) | |
| 226 parse = mov_read_udta_string; | |
| 227 | |
| 228 if (!parse) { /* skip leaf atoms data */ | |
| 1845 | 229 url_fskip(pb, a.size); |
| 230 } else { | |
|
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3967
diff
changeset
|
231 int64_t start_pos = url_ftell(pb); |
| 1845 | 232 int64_t left; |
| 4726 | 233 err = parse(c, pb, a); |
|
3166
c082ee7573b2
simplify, and only stop parsing when non streamable
bcoudurier
parents:
3164
diff
changeset
|
234 if (url_is_streamed(pb) && c->found_moov && c->found_mdat) |
| 2817 | 235 break; |
| 1845 | 236 left = a.size - url_ftell(pb) + start_pos; |
| 237 if (left > 0) /* skip garbage at atom end */ | |
| 238 url_fskip(pb, left); | |
| 239 } | |
| 240 | |
| 241 a.offset += a.size; | |
| 242 total_size += a.size; | |
| 243 } | |
| 244 | |
| 3181 | 245 if (!err && total_size < atom.size && atom.size < 0x7ffff) |
| 1845 | 246 url_fskip(pb, atom.size - total_size); |
| 247 | |
| 248 return err; | |
| 249 } | |
| 250 | |
| 4079 | 251 static int mov_read_dref(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
252 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
253 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
254 MOVStreamContext *sc; |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
255 int entries, i, j; |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
256 |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
257 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
258 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
259 st = c->fc->streams[c->fc->nb_streams-1]; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
260 sc = st->priv_data; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
261 |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
262 get_be32(pb); // version + flags |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
263 entries = get_be32(pb); |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
264 if (entries >= UINT_MAX / sizeof(*sc->drefs)) |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
265 return -1; |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
266 sc->drefs = av_mallocz(entries * sizeof(*sc->drefs)); |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
267 if (!sc->drefs) |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
268 return AVERROR(ENOMEM); |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
269 sc->drefs_count = entries; |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
270 |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
271 for (i = 0; i < sc->drefs_count; i++) { |
| 4079 | 272 MOVDref *dref = &sc->drefs[i]; |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
273 uint32_t size = get_be32(pb); |
|
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3967
diff
changeset
|
274 int64_t next = url_ftell(pb) + size - 4; |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
275 |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
276 dref->type = get_le32(pb); |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
277 get_be32(pb); // version + flags |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
278 dprintf(c->fc, "type %.4s size %d\n", (char*)&dref->type, size); |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
279 |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
280 if (dref->type == MKTAG('a','l','i','s') && size > 150) { |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
281 /* macintosh alias record */ |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
282 uint16_t volume_len, len; |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
283 int16_t type; |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
284 |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
285 url_fskip(pb, 10); |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
286 |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
287 volume_len = get_byte(pb); |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
288 volume_len = FFMIN(volume_len, 27); |
|
5369
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
289 get_buffer(pb, dref->volume, 27); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
290 dref->volume[volume_len] = 0; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
291 av_log(c->fc, AV_LOG_DEBUG, "volume %s, len %d\n", dref->volume, volume_len); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
292 |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
293 url_fskip(pb, 12); |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
294 |
|
5369
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
295 len = get_byte(pb); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
296 len = FFMIN(len, 63); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
297 get_buffer(pb, dref->filename, 63); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
298 dref->filename[len] = 0; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
299 av_log(c->fc, AV_LOG_DEBUG, "filename %s, len %d\n", dref->filename, len); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
300 |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
301 url_fskip(pb, 16); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
302 |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
303 /* read next level up_from_alias/down_to_target */ |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
304 dref->nlvl_from = get_be16(pb); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
305 dref->nlvl_to = get_be16(pb); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
306 av_log(c->fc, AV_LOG_DEBUG, "nlvl from %d, nlvl to %d\n", |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
307 dref->nlvl_from, dref->nlvl_to); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
308 |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
309 url_fskip(pb, 16); |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
310 |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
311 for (type = 0; type != -1 && url_ftell(pb) < next; ) { |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
312 type = get_be16(pb); |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
313 len = get_be16(pb); |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
314 av_log(c->fc, AV_LOG_DEBUG, "type %d, len %d\n", type, len); |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
315 if (len&1) |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
316 len += 1; |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
317 if (type == 2) { // absolute path |
| 3092 | 318 av_free(dref->path); |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
319 dref->path = av_mallocz(len+1); |
| 3091 | 320 if (!dref->path) |
| 321 return AVERROR(ENOMEM); | |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
322 get_buffer(pb, dref->path, len); |
|
5369
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
323 if (len > volume_len && !strncmp(dref->path, dref->volume, volume_len)) { |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
324 len -= volume_len; |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
325 memmove(dref->path, dref->path+volume_len, len); |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
326 dref->path[len] = 0; |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
327 } |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
328 for (j = 0; j < len; j++) |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
329 if (dref->path[j] == ':') |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
330 dref->path[j] = '/'; |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
331 av_log(c->fc, AV_LOG_DEBUG, "path %s\n", dref->path); |
|
5369
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
332 } else if (type == 0) { // directory name |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
333 av_free(dref->dir); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
334 dref->dir = av_malloc(len+1); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
335 if (!dref->dir) |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
336 return AVERROR(ENOMEM); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
337 get_buffer(pb, dref->dir, len); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
338 dref->dir[len] = 0; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
339 for (j = 0; j < len; j++) |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
340 if (dref->dir[j] == ':') |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
341 dref->dir[j] = '/'; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
342 av_log(c->fc, AV_LOG_DEBUG, "dir %s\n", dref->dir); |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
343 } else |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
344 url_fskip(pb, len); |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
345 } |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
346 } |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
347 url_fseek(pb, next, SEEK_SET); |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
348 } |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
349 return 0; |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
350 } |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
351 |
| 4079 | 352 static int mov_read_hdlr(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 353 { |
|
4642
60d5f0997351
MOV: fix crash when 'meta' occurs before first 'trak'
alexc
parents:
4625
diff
changeset
|
354 AVStream *st; |
| 1845 | 355 uint32_t type; |
| 356 uint32_t ctype; | |
| 357 | |
|
4642
60d5f0997351
MOV: fix crash when 'meta' occurs before first 'trak'
alexc
parents:
4625
diff
changeset
|
358 if (c->fc->nb_streams < 1) // meta before first trak |
|
60d5f0997351
MOV: fix crash when 'meta' occurs before first 'trak'
alexc
parents:
4625
diff
changeset
|
359 return 0; |
|
60d5f0997351
MOV: fix crash when 'meta' occurs before first 'trak'
alexc
parents:
4625
diff
changeset
|
360 |
|
60d5f0997351
MOV: fix crash when 'meta' occurs before first 'trak'
alexc
parents:
4625
diff
changeset
|
361 st = c->fc->streams[c->fc->nb_streams-1]; |
|
60d5f0997351
MOV: fix crash when 'meta' occurs before first 'trak'
alexc
parents:
4625
diff
changeset
|
362 |
| 1845 | 363 get_byte(pb); /* version */ |
| 3145 | 364 get_be24(pb); /* flags */ |
| 1845 | 365 |
| 366 /* component type */ | |
| 367 ctype = get_le32(pb); | |
| 368 type = get_le32(pb); /* component subtype */ | |
| 369 | |
| 4730 | 370 dprintf(c->fc, "ctype= %.4s (0x%08x)\n", (char*)&ctype, ctype); |
| 371 dprintf(c->fc, "stype= %.4s\n", (char*)&type); | |
|
4725
f2d519837d2d
do not set isom if ctype is not set, happens in mov
bcoudurier
parents:
4724
diff
changeset
|
372 |
| 3254 | 373 if (type == MKTAG('v','i','d','e')) |
| 1845 | 374 st->codec->codec_type = CODEC_TYPE_VIDEO; |
| 3253 | 375 else if(type == MKTAG('s','o','u','n')) |
| 1845 | 376 st->codec->codec_type = CODEC_TYPE_AUDIO; |
| 3253 | 377 else if(type == MKTAG('m','1','a',' ')) |
| 1845 | 378 st->codec->codec_id = CODEC_ID_MP2; |
| 4731 | 379 else if(type == MKTAG('s','u','b','p')) |
| 1845 | 380 st->codec->codec_type = CODEC_TYPE_SUBTITLE; |
| 4731 | 381 |
| 1845 | 382 get_be32(pb); /* component manufacture */ |
| 383 get_be32(pb); /* component flags */ | |
| 384 get_be32(pb); /* component flags mask */ | |
| 385 | |
| 386 if(atom.size <= 24) | |
| 387 return 0; /* nothing left to read */ | |
| 388 | |
| 389 url_fskip(pb, atom.size - (url_ftell(pb) - atom.offset)); | |
| 390 return 0; | |
| 391 } | |
| 392 | |
| 5205 | 393 int ff_mp4_read_descr_len(ByteIOContext *pb) |
| 1845 | 394 { |
| 395 int len = 0; | |
| 396 int count = 4; | |
| 397 while (count--) { | |
| 398 int c = get_byte(pb); | |
| 399 len = (len << 7) | (c & 0x7f); | |
| 400 if (!(c & 0x80)) | |
| 401 break; | |
| 402 } | |
| 403 return len; | |
| 404 } | |
| 405 | |
| 5205 | 406 int mp4_read_descr(AVFormatContext *fc, ByteIOContext *pb, int *tag) |
| 1845 | 407 { |
| 408 int len; | |
| 409 *tag = get_byte(pb); | |
| 5205 | 410 len = ff_mp4_read_descr_len(pb); |
| 411 dprintf(fc, "MPEG4 description: tag=0x%02x len=%d\n", *tag, len); | |
| 1845 | 412 return len; |
| 413 } | |
| 414 | |
| 2028 | 415 #define MP4ESDescrTag 0x03 |
| 416 #define MP4DecConfigDescrTag 0x04 | |
| 417 #define MP4DecSpecificDescrTag 0x05 | |
| 418 | |
|
3261
bf5f112efcff
parse mpeg4audio config to correctly detect mp3on4, fix iso mp3on4 reference files
bcoudurier
parents:
3260
diff
changeset
|
419 static const AVCodecTag mp4_audio_types[] = { |
|
4749
a0e0086f7f52
MOV: Use the AOT enum for the mp4_audio_types mapping.
alexc
parents:
4742
diff
changeset
|
420 { CODEC_ID_MP3ON4, AOT_PS }, /* old mp3on4 draft */ |
|
a0e0086f7f52
MOV: Use the AOT enum for the mp4_audio_types mapping.
alexc
parents:
4742
diff
changeset
|
421 { CODEC_ID_MP3ON4, AOT_L1 }, /* layer 1 */ |
|
a0e0086f7f52
MOV: Use the AOT enum for the mp4_audio_types mapping.
alexc
parents:
4742
diff
changeset
|
422 { CODEC_ID_MP3ON4, AOT_L2 }, /* layer 2 */ |
|
a0e0086f7f52
MOV: Use the AOT enum for the mp4_audio_types mapping.
alexc
parents:
4742
diff
changeset
|
423 { CODEC_ID_MP3ON4, AOT_L3 }, /* layer 3 */ |
|
4890
9d87e5e274c8
Introduce codec id for MPEG-4 ALS and associate it with corresponding
jai_menon
parents:
4872
diff
changeset
|
424 { CODEC_ID_MP4ALS, AOT_ALS }, /* MPEG-4 ALS */ |
|
4749
a0e0086f7f52
MOV: Use the AOT enum for the mp4_audio_types mapping.
alexc
parents:
4742
diff
changeset
|
425 { CODEC_ID_NONE, AOT_NULL }, |
|
3261
bf5f112efcff
parse mpeg4audio config to correctly detect mp3on4, fix iso mp3on4 reference files
bcoudurier
parents:
3260
diff
changeset
|
426 }; |
|
bf5f112efcff
parse mpeg4audio config to correctly detect mp3on4, fix iso mp3on4 reference files
bcoudurier
parents:
3260
diff
changeset
|
427 |
| 5205 | 428 int ff_mov_read_esds(AVFormatContext *fc, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 429 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
430 AVStream *st; |
| 1845 | 431 int tag, len; |
| 432 | |
| 5205 | 433 if (fc->nb_streams < 1) |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
434 return 0; |
| 5205 | 435 st = fc->streams[fc->nb_streams-1]; |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
436 |
| 1845 | 437 get_be32(pb); /* version + flags */ |
| 5205 | 438 len = mp4_read_descr(fc, pb, &tag); |
| 1845 | 439 if (tag == MP4ESDescrTag) { |
| 440 get_be16(pb); /* ID */ | |
| 441 get_byte(pb); /* priority */ | |
| 442 } else | |
| 443 get_be16(pb); /* ID */ | |
| 444 | |
| 5205 | 445 len = mp4_read_descr(fc, pb, &tag); |
| 1845 | 446 if (tag == MP4DecConfigDescrTag) { |
| 2028 | 447 int object_type_id = get_byte(pb); |
| 448 get_byte(pb); /* stream type */ | |
| 449 get_be24(pb); /* buffer size db */ | |
| 450 get_be32(pb); /* max bitrate */ | |
| 451 get_be32(pb); /* avg bitrate */ | |
| 1845 | 452 |
|
5058
33a244b7ca65
Add ff_ prefixes to exported symbols in libavformat/riff.h.
diego
parents:
5035
diff
changeset
|
453 st->codec->codec_id= ff_codec_get_id(ff_mp4_obj_type, object_type_id); |
|
5364
4a925b59dc1b
Debug print MP4 objectTypeIndication in hex not decimal as values are listed in
alexc
parents:
5362
diff
changeset
|
454 dprintf(fc, "esds object type id 0x%02x\n", object_type_id); |
| 5205 | 455 len = mp4_read_descr(fc, pb, &tag); |
| 1845 | 456 if (tag == MP4DecSpecificDescrTag) { |
| 5205 | 457 dprintf(fc, "Specific MPEG4 header len=%d\n", len); |
| 3078 | 458 if((uint64_t)len > (1<<30)) |
| 459 return -1; | |
| 1845 | 460 st->codec->extradata = av_mallocz(len + FF_INPUT_BUFFER_PADDING_SIZE); |
| 3076 | 461 if (!st->codec->extradata) |
| 462 return AVERROR(ENOMEM); | |
| 3077 | 463 get_buffer(pb, st->codec->extradata, len); |
| 464 st->codec->extradata_size = len; | |
|
3261
bf5f112efcff
parse mpeg4audio config to correctly detect mp3on4, fix iso mp3on4 reference files
bcoudurier
parents:
3260
diff
changeset
|
465 if (st->codec->codec_id == CODEC_ID_AAC) { |
|
bf5f112efcff
parse mpeg4audio config to correctly detect mp3on4, fix iso mp3on4 reference files
bcoudurier
parents:
3260
diff
changeset
|
466 MPEG4AudioConfig cfg; |
|
bf5f112efcff
parse mpeg4audio config to correctly detect mp3on4, fix iso mp3on4 reference files
bcoudurier
parents:
3260
diff
changeset
|
467 ff_mpeg4audio_get_config(&cfg, st->codec->extradata, |
|
bf5f112efcff
parse mpeg4audio config to correctly detect mp3on4, fix iso mp3on4 reference files
bcoudurier
parents:
3260
diff
changeset
|
468 st->codec->extradata_size); |
| 5362 | 469 st->codec->channels = cfg.channels; |
|
3262
07299732f3b8
set channels and sample rate from mpeg4audio config
bcoudurier
parents:
3261
diff
changeset
|
470 if (cfg.object_type == 29 && cfg.sampling_index < 3) // old mp3on4 |
|
07299732f3b8
set channels and sample rate from mpeg4audio config
bcoudurier
parents:
3261
diff
changeset
|
471 st->codec->sample_rate = ff_mpa_freq_tab[cfg.sampling_index]; |
|
07299732f3b8
set channels and sample rate from mpeg4audio config
bcoudurier
parents:
3261
diff
changeset
|
472 else |
|
07299732f3b8
set channels and sample rate from mpeg4audio config
bcoudurier
parents:
3261
diff
changeset
|
473 st->codec->sample_rate = cfg.sample_rate; // ext sample rate ? |
| 5205 | 474 dprintf(fc, "mp4a config channels %d obj %d ext obj %d " |
|
3262
07299732f3b8
set channels and sample rate from mpeg4audio config
bcoudurier
parents:
3261
diff
changeset
|
475 "sample rate %d ext sample rate %d\n", st->codec->channels, |
|
07299732f3b8
set channels and sample rate from mpeg4audio config
bcoudurier
parents:
3261
diff
changeset
|
476 cfg.object_type, cfg.ext_object_type, |
|
07299732f3b8
set channels and sample rate from mpeg4audio config
bcoudurier
parents:
3261
diff
changeset
|
477 cfg.sample_rate, cfg.ext_sample_rate); |
|
5058
33a244b7ca65
Add ff_ prefixes to exported symbols in libavformat/riff.h.
diego
parents:
5035
diff
changeset
|
478 if (!(st->codec->codec_id = ff_codec_get_id(mp4_audio_types, |
|
33a244b7ca65
Add ff_ prefixes to exported symbols in libavformat/riff.h.
diego
parents:
5035
diff
changeset
|
479 cfg.object_type))) |
|
3261
bf5f112efcff
parse mpeg4audio config to correctly detect mp3on4, fix iso mp3on4 reference files
bcoudurier
parents:
3260
diff
changeset
|
480 st->codec->codec_id = CODEC_ID_AAC; |
| 3077 | 481 } |
| 1845 | 482 } |
| 483 } | |
| 484 return 0; | |
| 485 } | |
| 486 | |
| 5205 | 487 static int mov_read_esds(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 488 { | |
| 489 return ff_mov_read_esds(c->fc, pb, atom); | |
| 490 } | |
| 491 | |
| 4080 | 492 static int mov_read_pasp(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 493 { | |
| 494 const int num = get_be32(pb); | |
| 495 const int den = get_be32(pb); | |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
496 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
497 |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
498 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
499 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
500 st = c->fc->streams[c->fc->nb_streams-1]; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
501 |
| 4080 | 502 if (den != 0) { |
|
4264
bf7a9658de71
change sample aspect ratio test to be more clear, print old one
bcoudurier
parents:
4251
diff
changeset
|
503 if ((st->sample_aspect_ratio.den != 1 || st->sample_aspect_ratio.num) && // default |
|
bf7a9658de71
change sample aspect ratio test to be more clear, print old one
bcoudurier
parents:
4251
diff
changeset
|
504 (den != st->sample_aspect_ratio.den || num != st->sample_aspect_ratio.num)) |
| 4080 | 505 av_log(c->fc, AV_LOG_WARNING, |
|
4264
bf7a9658de71
change sample aspect ratio test to be more clear, print old one
bcoudurier
parents:
4251
diff
changeset
|
506 "sample aspect ratio already set to %d:%d, overriding by 'pasp' atom\n", |
|
bf7a9658de71
change sample aspect ratio test to be more clear, print old one
bcoudurier
parents:
4251
diff
changeset
|
507 st->sample_aspect_ratio.num, st->sample_aspect_ratio.den); |
| 4080 | 508 st->sample_aspect_ratio.num = num; |
| 509 st->sample_aspect_ratio.den = den; | |
| 510 } | |
| 511 return 0; | |
| 512 } | |
| 513 | |
| 1845 | 514 /* this atom contains actual media data */ |
| 4079 | 515 static int mov_read_mdat(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 516 { |
| 517 if(atom.size == 0) /* wrong one (MP4) */ | |
| 518 return 0; | |
| 519 c->found_mdat=1; | |
| 520 return 0; /* now go for moov */ | |
| 521 } | |
| 522 | |
|
5234
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
523 /* read major brand, minor version and compatible brands and store them as metadata */ |
| 4079 | 524 static int mov_read_ftyp(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 525 { |
|
5234
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
526 uint32_t minor_ver; |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
527 int comp_brand_size; |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
528 char minor_ver_str[11]; /* 32 bit integer -> 10 digits + null */ |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
529 char* comp_brands_str; |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
530 uint8_t type[5] = {0}; |
| 1845 | 531 |
|
5234
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
532 get_buffer(pb, type, 4); |
| 5235 | 533 if (strcmp(type, "qt ")) |
| 1845 | 534 c->isom = 1; |
| 535 av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type); | |
|
5234
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
536 av_metadata_set(&c->fc->metadata, "major_brand", type); |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
537 minor_ver = get_be32(pb); /* minor version */ |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
538 snprintf(minor_ver_str, sizeof(minor_ver_str), "%d", minor_ver); |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
539 av_metadata_set(&c->fc->metadata, "minor_version", minor_ver_str); |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
540 |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
541 comp_brand_size = atom.size - 8; |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
542 if (comp_brand_size < 0) |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
543 return -1; |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
544 comp_brands_str = av_malloc(comp_brand_size + 1); /* Add null terminator */ |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
545 if (!comp_brands_str) |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
546 return AVERROR(ENOMEM); |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
547 get_buffer(pb, comp_brands_str, comp_brand_size); |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
548 comp_brands_str[comp_brand_size] = 0; |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
549 av_metadata_set(&c->fc->metadata, "compatible_brands", comp_brands_str); |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
550 av_freep(&comp_brands_str); |
|
b133e5865370
Export mov/mp4 major and compatible brands as metadata.
bcoudurier
parents:
5205
diff
changeset
|
551 |
| 1845 | 552 return 0; |
| 553 } | |
| 554 | |
| 555 /* this atom should contain all header atoms */ | |
| 4079 | 556 static int mov_read_moov(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 557 { |
|
2806
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
558 if (mov_read_default(c, pb, atom) < 0) |
|
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
559 return -1; |
| 1845 | 560 /* we parsed the 'moov' atom, we can terminate the parsing as soon as we find the 'mdat' */ |
| 561 /* so we don't parse the whole file if over a network */ | |
| 562 c->found_moov=1; | |
| 563 return 0; /* now go for mdat */ | |
| 564 } | |
| 565 | |
| 4079 | 566 static int mov_read_moof(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 3169 | 567 { |
| 568 c->fragment.moof_offset = url_ftell(pb) - 8; | |
| 569 dprintf(c->fc, "moof offset %llx\n", c->fragment.moof_offset); | |
| 570 return mov_read_default(c, pb, atom); | |
| 571 } | |
| 1845 | 572 |
| 4079 | 573 static int mov_read_mdhd(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 574 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
575 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
576 MOVStreamContext *sc; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
577 int version; |
| 4485 | 578 char language[4] = {0}; |
| 4269 | 579 unsigned lang; |
| 1845 | 580 |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
581 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
582 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
583 st = c->fc->streams[c->fc->nb_streams-1]; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
584 sc = st->priv_data; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
585 |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
586 version = get_byte(pb); |
| 1845 | 587 if (version > 1) |
| 3259 | 588 return -1; /* unsupported */ |
| 1845 | 589 |
| 3145 | 590 get_be24(pb); /* flags */ |
| 1845 | 591 if (version == 1) { |
| 592 get_be64(pb); | |
| 593 get_be64(pb); | |
| 594 } else { | |
| 595 get_be32(pb); /* creation time */ | |
| 596 get_be32(pb); /* modification time */ | |
| 597 } | |
| 598 | |
| 599 sc->time_scale = get_be32(pb); | |
| 600 st->duration = (version == 1) ? get_be64(pb) : get_be32(pb); /* duration */ | |
| 601 | |
| 602 lang = get_be16(pb); /* language */ | |
| 4485 | 603 if (ff_mov_lang_to_iso639(lang, language)) |
| 604 av_metadata_set(&st->metadata, "language", language); | |
| 1845 | 605 get_be16(pb); /* quality */ |
| 606 | |
| 607 return 0; | |
| 608 } | |
| 609 | |
| 4079 | 610 static int mov_read_mvhd(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 611 { |
| 612 int version = get_byte(pb); /* version */ | |
| 3145 | 613 get_be24(pb); /* flags */ |
| 1845 | 614 |
| 615 if (version == 1) { | |
| 616 get_be64(pb); | |
| 617 get_be64(pb); | |
| 618 } else { | |
| 619 get_be32(pb); /* creation time */ | |
| 620 get_be32(pb); /* modification time */ | |
| 621 } | |
| 622 c->time_scale = get_be32(pb); /* time scale */ | |
| 2044 | 623 |
| 624 dprintf(c->fc, "time scale = %i\n", c->time_scale); | |
| 625 | |
| 1845 | 626 c->duration = (version == 1) ? get_be64(pb) : get_be32(pb); /* duration */ |
| 627 get_be32(pb); /* preferred scale */ | |
| 628 | |
| 629 get_be16(pb); /* preferred volume */ | |
| 630 | |
| 631 url_fskip(pb, 10); /* reserved */ | |
| 632 | |
| 633 url_fskip(pb, 36); /* display matrix */ | |
| 634 | |
| 635 get_be32(pb); /* preview time */ | |
| 636 get_be32(pb); /* preview duration */ | |
| 637 get_be32(pb); /* poster time */ | |
| 638 get_be32(pb); /* selection time */ | |
| 639 get_be32(pb); /* selection duration */ | |
| 640 get_be32(pb); /* current time */ | |
| 641 get_be32(pb); /* next track ID */ | |
| 642 | |
| 643 return 0; | |
| 644 } | |
| 645 | |
| 4079 | 646 static int mov_read_smi(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 647 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
648 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
649 |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
650 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
651 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
652 st = c->fc->streams[c->fc->nb_streams-1]; |
| 1845 | 653 |
| 654 if((uint64_t)atom.size > (1<<30)) | |
| 655 return -1; | |
| 656 | |
| 657 // currently SVQ3 decoder expect full STSD header - so let's fake it | |
| 658 // this should be fixed and just SMI header should be passed | |
| 659 av_free(st->codec->extradata); | |
| 3076 | 660 st->codec->extradata = av_mallocz(atom.size + 0x5a + FF_INPUT_BUFFER_PADDING_SIZE); |
| 661 if (!st->codec->extradata) | |
| 662 return AVERROR(ENOMEM); | |
| 3077 | 663 st->codec->extradata_size = 0x5a + atom.size; |
| 664 memcpy(st->codec->extradata, "SVQ3", 4); // fake | |
| 665 get_buffer(pb, st->codec->extradata + 0x5a, atom.size); | |
| 666 dprintf(c->fc, "Reading SMI %"PRId64" %s\n", atom.size, st->codec->extradata + 0x5a); | |
| 1845 | 667 return 0; |
| 668 } | |
| 669 | |
| 4079 | 670 static int mov_read_enda(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 671 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
672 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
673 int little_endian; |
| 1845 | 674 |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
675 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
676 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
677 st = c->fc->streams[c->fc->nb_streams-1]; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
678 |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
679 little_endian = get_be16(pb); |
|
4184
bc40129f13cc
only set le if value is 1, fix boom5.mov, issue #770
bcoudurier
parents:
4123
diff
changeset
|
680 dprintf(c->fc, "enda %d\n", little_endian); |
|
bc40129f13cc
only set le if value is 1, fix boom5.mov, issue #770
bcoudurier
parents:
4123
diff
changeset
|
681 if (little_endian == 1) { |
| 1845 | 682 switch (st->codec->codec_id) { |
| 683 case CODEC_ID_PCM_S24BE: | |
| 684 st->codec->codec_id = CODEC_ID_PCM_S24LE; | |
| 685 break; | |
| 686 case CODEC_ID_PCM_S32BE: | |
| 687 st->codec->codec_id = CODEC_ID_PCM_S32LE; | |
| 688 break; | |
|
3738
0c46eb1cd9b3
Make MOV demuxer handle F32BE, F32LE, F64BE and F64LE PCM audio.
pross
parents:
3626
diff
changeset
|
689 case CODEC_ID_PCM_F32BE: |
|
0c46eb1cd9b3
Make MOV demuxer handle F32BE, F32LE, F64BE and F64LE PCM audio.
pross
parents:
3626
diff
changeset
|
690 st->codec->codec_id = CODEC_ID_PCM_F32LE; |
|
0c46eb1cd9b3
Make MOV demuxer handle F32BE, F32LE, F64BE and F64LE PCM audio.
pross
parents:
3626
diff
changeset
|
691 break; |
|
0c46eb1cd9b3
Make MOV demuxer handle F32BE, F32LE, F64BE and F64LE PCM audio.
pross
parents:
3626
diff
changeset
|
692 case CODEC_ID_PCM_F64BE: |
|
0c46eb1cd9b3
Make MOV demuxer handle F32BE, F32LE, F64BE and F64LE PCM audio.
pross
parents:
3626
diff
changeset
|
693 st->codec->codec_id = CODEC_ID_PCM_F64LE; |
|
0c46eb1cd9b3
Make MOV demuxer handle F32BE, F32LE, F64BE and F64LE PCM audio.
pross
parents:
3626
diff
changeset
|
694 break; |
| 1845 | 695 default: |
| 696 break; | |
| 697 } | |
| 698 } | |
| 699 return 0; | |
| 700 } | |
| 701 | |
| 702 /* FIXME modify qdm2/svq3/h264 decoders to take full atom as extradata */ | |
| 4079 | 703 static int mov_read_extradata(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 704 { |
|
4116
f693bc71dc1e
check that nb_streams is valid before setting stream, fix crash with jp2 which do not use same structure
bcoudurier
parents:
4080
diff
changeset
|
705 AVStream *st; |
|
f693bc71dc1e
check that nb_streams is valid before setting stream, fix crash with jp2 which do not use same structure
bcoudurier
parents:
4080
diff
changeset
|
706 uint64_t size; |
|
2589
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
707 uint8_t *buf; |
|
4116
f693bc71dc1e
check that nb_streams is valid before setting stream, fix crash with jp2 which do not use same structure
bcoudurier
parents:
4080
diff
changeset
|
708 |
|
f693bc71dc1e
check that nb_streams is valid before setting stream, fix crash with jp2 which do not use same structure
bcoudurier
parents:
4080
diff
changeset
|
709 if (c->fc->nb_streams < 1) // will happen with jp2 files |
|
f693bc71dc1e
check that nb_streams is valid before setting stream, fix crash with jp2 which do not use same structure
bcoudurier
parents:
4080
diff
changeset
|
710 return 0; |
|
f693bc71dc1e
check that nb_streams is valid before setting stream, fix crash with jp2 which do not use same structure
bcoudurier
parents:
4080
diff
changeset
|
711 st= c->fc->streams[c->fc->nb_streams-1]; |
|
f693bc71dc1e
check that nb_streams is valid before setting stream, fix crash with jp2 which do not use same structure
bcoudurier
parents:
4080
diff
changeset
|
712 size= (uint64_t)st->codec->extradata_size + atom.size + 8 + FF_INPUT_BUFFER_PADDING_SIZE; |
|
2589
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
713 if(size > INT_MAX || (uint64_t)atom.size > INT_MAX) |
|
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
714 return -1; |
|
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
715 buf= av_realloc(st->codec->extradata, size); |
|
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
716 if(!buf) |
| 1845 | 717 return -1; |
|
2589
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
718 st->codec->extradata= buf; |
|
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
719 buf+= st->codec->extradata_size; |
|
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
720 st->codec->extradata_size= size - FF_INPUT_BUFFER_PADDING_SIZE; |
|
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
721 AV_WB32( buf , atom.size + 8); |
|
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
722 AV_WL32( buf + 4, atom.type); |
|
960795567b33
append extradata atoms when parsing, fix OLOCOONS_O3.mov
bcoudurier
parents:
2547
diff
changeset
|
723 get_buffer(pb, buf + 8, atom.size); |
| 1845 | 724 return 0; |
| 725 } | |
| 726 | |
| 4079 | 727 static int mov_read_wave(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 728 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
729 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
730 |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
731 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
732 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
733 st = c->fc->streams[c->fc->nb_streams-1]; |
| 1845 | 734 |
| 735 if((uint64_t)atom.size > (1<<30)) | |
| 736 return -1; | |
| 737 | |
| 738 if (st->codec->codec_id == CODEC_ID_QDM2) { | |
| 739 // pass all frma atom to codec, needed at least for QDM2 | |
| 740 av_free(st->codec->extradata); | |
| 3076 | 741 st->codec->extradata = av_mallocz(atom.size + FF_INPUT_BUFFER_PADDING_SIZE); |
| 742 if (!st->codec->extradata) | |
| 743 return AVERROR(ENOMEM); | |
| 1845 | 744 st->codec->extradata_size = atom.size; |
| 3076 | 745 get_buffer(pb, st->codec->extradata, atom.size); |
| 1845 | 746 } else if (atom.size > 8) { /* to read frma, esds atoms */ |
|
2806
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
747 if (mov_read_default(c, pb, atom) < 0) |
|
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
748 return -1; |
| 1845 | 749 } else |
| 750 url_fskip(pb, atom.size); | |
| 751 return 0; | |
| 752 } | |
| 753 | |
|
2837
1caef0e2fb46
supports glbl atom containing generic extradata for all codecs
bcoudurier
parents:
2826
diff
changeset
|
754 /** |
|
1caef0e2fb46
supports glbl atom containing generic extradata for all codecs
bcoudurier
parents:
2826
diff
changeset
|
755 * This function reads atom content and puts data in extradata without tag |
|
1caef0e2fb46
supports glbl atom containing generic extradata for all codecs
bcoudurier
parents:
2826
diff
changeset
|
756 * nor size unlike mov_read_extradata. |
|
1caef0e2fb46
supports glbl atom containing generic extradata for all codecs
bcoudurier
parents:
2826
diff
changeset
|
757 */ |
| 4079 | 758 static int mov_read_glbl(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 759 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
760 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
761 |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
762 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
763 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
764 st = c->fc->streams[c->fc->nb_streams-1]; |
| 1845 | 765 |
| 766 if((uint64_t)atom.size > (1<<30)) | |
| 767 return -1; | |
| 768 | |
| 769 av_free(st->codec->extradata); | |
| 3076 | 770 st->codec->extradata = av_mallocz(atom.size + FF_INPUT_BUFFER_PADDING_SIZE); |
| 771 if (!st->codec->extradata) | |
| 772 return AVERROR(ENOMEM); | |
| 1845 | 773 st->codec->extradata_size = atom.size; |
| 3076 | 774 get_buffer(pb, st->codec->extradata, atom.size); |
| 1845 | 775 return 0; |
| 776 } | |
| 777 | |
| 4079 | 778 static int mov_read_stco(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 779 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
780 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
781 MOVStreamContext *sc; |
| 1845 | 782 unsigned int i, entries; |
| 783 | |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
784 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
785 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
786 st = c->fc->streams[c->fc->nb_streams-1]; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
787 sc = st->priv_data; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
788 |
| 1845 | 789 get_byte(pb); /* version */ |
| 3145 | 790 get_be24(pb); /* flags */ |
| 1845 | 791 |
| 792 entries = get_be32(pb); | |
| 793 | |
| 794 if(entries >= UINT_MAX/sizeof(int64_t)) | |
| 795 return -1; | |
| 796 | |
| 797 sc->chunk_offsets = av_malloc(entries * sizeof(int64_t)); | |
| 798 if (!sc->chunk_offsets) | |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
799 return AVERROR(ENOMEM); |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
800 sc->chunk_count = entries; |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
801 |
| 3254 | 802 if (atom.type == MKTAG('s','t','c','o')) |
| 803 for(i=0; i<entries; i++) | |
| 1845 | 804 sc->chunk_offsets[i] = get_be32(pb); |
| 3254 | 805 else if (atom.type == MKTAG('c','o','6','4')) |
| 806 for(i=0; i<entries; i++) | |
| 1845 | 807 sc->chunk_offsets[i] = get_be64(pb); |
| 3254 | 808 else |
| 1845 | 809 return -1; |
| 810 | |
| 811 return 0; | |
| 812 } | |
| 813 | |
| 3625 | 814 /** |
| 815 * Compute codec id for 'lpcm' tag. | |
| 816 * See CoreAudioTypes and AudioStreamBasicDescription at Apple. | |
| 817 */ | |
| 5205 | 818 enum CodecID ff_mov_get_lpcm_codec_id(int bps, int flags) |
| 3625 | 819 { |
| 820 if (flags & 1) { // floating point | |
| 821 if (flags & 2) { // big endian | |
| 822 if (bps == 32) return CODEC_ID_PCM_F32BE; | |
| 3751 | 823 else if (bps == 64) return CODEC_ID_PCM_F64BE; |
| 3625 | 824 } else { |
| 3751 | 825 if (bps == 32) return CODEC_ID_PCM_F32LE; |
| 826 else if (bps == 64) return CODEC_ID_PCM_F64LE; | |
| 3625 | 827 } |
| 828 } else { | |
| 829 if (flags & 2) { | |
| 830 if (bps == 8) | |
| 831 // signed integer | |
| 832 if (flags & 4) return CODEC_ID_PCM_S8; | |
| 833 else return CODEC_ID_PCM_U8; | |
| 834 else if (bps == 16) return CODEC_ID_PCM_S16BE; | |
| 835 else if (bps == 24) return CODEC_ID_PCM_S24BE; | |
| 836 else if (bps == 32) return CODEC_ID_PCM_S32BE; | |
| 837 } else { | |
| 838 if (bps == 8) | |
| 839 if (flags & 4) return CODEC_ID_PCM_S8; | |
| 840 else return CODEC_ID_PCM_U8; | |
| 3626 | 841 else if (bps == 16) return CODEC_ID_PCM_S16LE; |
| 3625 | 842 else if (bps == 24) return CODEC_ID_PCM_S24LE; |
| 843 else if (bps == 32) return CODEC_ID_PCM_S32LE; | |
| 844 } | |
| 845 } | |
| 3967 | 846 return CODEC_ID_NONE; |
| 3625 | 847 } |
| 848 | |
| 4079 | 849 static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 850 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
851 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
852 MOVStreamContext *sc; |
| 3263 | 853 int j, entries, pseudo_stream_id; |
| 1845 | 854 |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
855 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
856 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
857 st = c->fc->streams[c->fc->nb_streams-1]; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
858 sc = st->priv_data; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
859 |
| 1845 | 860 get_byte(pb); /* version */ |
| 3145 | 861 get_be24(pb); /* flags */ |
| 1845 | 862 |
| 863 entries = get_be32(pb); | |
| 864 | |
| 3167 | 865 for(pseudo_stream_id=0; pseudo_stream_id<entries; pseudo_stream_id++) { |
| 866 //Parsing Sample description table | |
| 1845 | 867 enum CodecID id; |
|
5002
dc92e7858140
broken stsd length might be < 16, fix elst-assert.mp4
bcoudurier
parents:
4992
diff
changeset
|
868 int dref_id = 1; |
| 4079 | 869 MOVAtom a = { 0, 0, 0 }; |
|
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3967
diff
changeset
|
870 int64_t start_pos = url_ftell(pb); |
| 1845 | 871 int size = get_be32(pb); /* size */ |
| 3263 | 872 uint32_t format = get_le32(pb); /* data format */ |
| 1845 | 873 |
|
5002
dc92e7858140
broken stsd length might be < 16, fix elst-assert.mp4
bcoudurier
parents:
4992
diff
changeset
|
874 if (size >= 16) { |
|
dc92e7858140
broken stsd length might be < 16, fix elst-assert.mp4
bcoudurier
parents:
4992
diff
changeset
|
875 get_be32(pb); /* reserved */ |
|
dc92e7858140
broken stsd length might be < 16, fix elst-assert.mp4
bcoudurier
parents:
4992
diff
changeset
|
876 get_be16(pb); /* reserved */ |
|
dc92e7858140
broken stsd length might be < 16, fix elst-assert.mp4
bcoudurier
parents:
4992
diff
changeset
|
877 dref_id = get_be16(pb); |
|
dc92e7858140
broken stsd length might be < 16, fix elst-assert.mp4
bcoudurier
parents:
4992
diff
changeset
|
878 } |
| 1845 | 879 |
|
3022
800db1ceafc6
Allow the user to select which codec out of several in stsd he wants.
michael
parents:
2974
diff
changeset
|
880 if (st->codec->codec_tag && |
|
3299
80a497804aa8
demux all stsd ids if codec is the same, fix premature_mov_ending.mov, closes #451
bcoudurier
parents:
3286
diff
changeset
|
881 st->codec->codec_tag != format && |
|
5058
33a244b7ca65
Add ff_ prefixes to exported symbols in libavformat/riff.h.
diego
parents:
5035
diff
changeset
|
882 (c->fc->video_codec_id ? ff_codec_get_id(codec_movvideo_tags, format) != c->fc->video_codec_id |
| 3253 | 883 : st->codec->codec_tag != MKTAG('j','p','e','g')) |
|
3022
800db1ceafc6
Allow the user to select which codec out of several in stsd he wants.
michael
parents:
2974
diff
changeset
|
884 ){ |
| 3135 | 885 /* Multiple fourcc, we skip JPEG. This is not correct, we should |
| 886 * export it as a separate AVStream but this needs a few changes | |
| 887 * in the MOV demuxer, patch welcome. */ | |
| 3300 | 888 av_log(c->fc, AV_LOG_WARNING, "multiple fourcc not supported\n"); |
| 1845 | 889 url_fskip(pb, size - (url_ftell(pb) - start_pos)); |
| 890 continue; | |
| 891 } | |
|
3299
80a497804aa8
demux all stsd ids if codec is the same, fix premature_mov_ending.mov, closes #451
bcoudurier
parents:
3286
diff
changeset
|
892 sc->pseudo_stream_id = st->codec->codec_tag ? -1 : pseudo_stream_id; |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
893 sc->dref_id= dref_id; |
| 1845 | 894 |
| 895 st->codec->codec_tag = format; | |
|
5058
33a244b7ca65
Add ff_ prefixes to exported symbols in libavformat/riff.h.
diego
parents:
5035
diff
changeset
|
896 id = ff_codec_get_id(codec_movaudio_tags, format); |
|
5027
702bfee61683
Also accept TS as a prefix for wav twoccs (used by Flip4Mac) instead of
conrad
parents:
5015
diff
changeset
|
897 if (id<=0 && ((format&0xFFFF) == 'm'+('s'<<8) || (format&0xFFFF) == 'T'+('S'<<8))) |
|
5058
33a244b7ca65
Add ff_ prefixes to exported symbols in libavformat/riff.h.
diego
parents:
5035
diff
changeset
|
898 id = ff_codec_get_id(ff_codec_wav_tags, bswap_32(format)&0xFFFF); |
| 2298 | 899 |
| 1845 | 900 if (st->codec->codec_type != CODEC_TYPE_VIDEO && id > 0) { |
| 901 st->codec->codec_type = CODEC_TYPE_AUDIO; | |
| 902 } else if (st->codec->codec_type != CODEC_TYPE_AUDIO && /* do not overwrite codec type */ | |
| 3253 | 903 format && format != MKTAG('m','p','4','s')) { /* skip old asf mpeg4 tag */ |
|
5058
33a244b7ca65
Add ff_ prefixes to exported symbols in libavformat/riff.h.
diego
parents:
5035
diff
changeset
|
904 id = ff_codec_get_id(codec_movvideo_tags, format); |
| 1845 | 905 if (id <= 0) |
|
5058
33a244b7ca65
Add ff_ prefixes to exported symbols in libavformat/riff.h.
diego
parents:
5035
diff
changeset
|
906 id = ff_codec_get_id(ff_codec_bmp_tags, format); |
| 1845 | 907 if (id > 0) |
| 908 st->codec->codec_type = CODEC_TYPE_VIDEO; | |
| 2969 | 909 else if(st->codec->codec_type == CODEC_TYPE_DATA){ |
|
5058
33a244b7ca65
Add ff_ prefixes to exported symbols in libavformat/riff.h.
diego
parents:
5035
diff
changeset
|
910 id = ff_codec_get_id(ff_codec_movsubtitle_tags, format); |
| 2969 | 911 if(id > 0) |
| 912 st->codec->codec_type = CODEC_TYPE_SUBTITLE; | |
| 913 } | |
| 1845 | 914 } |
| 915 | |
| 2902 | 916 dprintf(c->fc, "size=%d 4CC= %c%c%c%c codec_type=%d\n", size, |
| 917 (format >> 0) & 0xff, (format >> 8) & 0xff, (format >> 16) & 0xff, | |
| 918 (format >> 24) & 0xff, st->codec->codec_type); | |
| 1845 | 919 |
| 920 if(st->codec->codec_type==CODEC_TYPE_VIDEO) { | |
| 3263 | 921 uint8_t codec_name[32]; |
| 922 unsigned int color_depth; | |
| 923 int color_greyscale; | |
| 924 | |
| 1845 | 925 st->codec->codec_id = id; |
| 926 get_be16(pb); /* version */ | |
| 927 get_be16(pb); /* revision level */ | |
| 928 get_be32(pb); /* vendor */ | |
| 929 get_be32(pb); /* temporal quality */ | |
| 2730 | 930 get_be32(pb); /* spatial quality */ |
| 1845 | 931 |
| 932 st->codec->width = get_be16(pb); /* width */ | |
| 933 st->codec->height = get_be16(pb); /* height */ | |
| 934 | |
| 935 get_be32(pb); /* horiz resolution */ | |
| 936 get_be32(pb); /* vert resolution */ | |
| 937 get_be32(pb); /* data size, always 0 */ | |
| 3264 | 938 get_be16(pb); /* frames per samples */ |
| 2044 | 939 |
| 3265 | 940 get_buffer(pb, codec_name, 32); /* codec name, pascal string */ |
| 1845 | 941 if (codec_name[0] <= 31) { |
|
5239
4d1a325b53cc
Convert latin1 codec_name in mov to UTF-8, since all strings in FFmpeg
reimar
parents:
5235
diff
changeset
|
942 int i; |
|
4d1a325b53cc
Convert latin1 codec_name in mov to UTF-8, since all strings in FFmpeg
reimar
parents:
5235
diff
changeset
|
943 int pos = 0; |
|
4d1a325b53cc
Convert latin1 codec_name in mov to UTF-8, since all strings in FFmpeg
reimar
parents:
5235
diff
changeset
|
944 for (i = 0; i < codec_name[0] && pos < sizeof(st->codec->codec_name) - 3; i++) { |
|
4d1a325b53cc
Convert latin1 codec_name in mov to UTF-8, since all strings in FFmpeg
reimar
parents:
5235
diff
changeset
|
945 uint8_t tmp; |
|
5242
c6eeec0f9b40
10l in code reading codec_name, the first byte is the length and should not
reimar
parents:
5239
diff
changeset
|
946 PUT_UTF8(codec_name[i+1], tmp, st->codec->codec_name[pos++] = tmp;) |
|
5239
4d1a325b53cc
Convert latin1 codec_name in mov to UTF-8, since all strings in FFmpeg
reimar
parents:
5235
diff
changeset
|
947 } |
|
4d1a325b53cc
Convert latin1 codec_name in mov to UTF-8, since all strings in FFmpeg
reimar
parents:
5235
diff
changeset
|
948 st->codec->codec_name[pos] = 0; |
| 1845 | 949 } |
| 950 | |
|
3908
1d3d17de20ba
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
3796
diff
changeset
|
951 st->codec->bits_per_coded_sample = get_be16(pb); /* depth */ |
| 1845 | 952 st->codec->color_table_id = get_be16(pb); /* colortable id */ |
|
3095
da04b574d131
set codec bps to grayscale bits, fix 256grey.mov
bcoudurier
parents:
3093
diff
changeset
|
953 dprintf(c->fc, "depth %d, ctab id %d\n", |
|
3908
1d3d17de20ba
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
3796
diff
changeset
|
954 st->codec->bits_per_coded_sample, st->codec->color_table_id); |
| 1845 | 955 /* figure out the palette situation */ |
|
3908
1d3d17de20ba
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
3796
diff
changeset
|
956 color_depth = st->codec->bits_per_coded_sample & 0x1F; |
|
1d3d17de20ba
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
3796
diff
changeset
|
957 color_greyscale = st->codec->bits_per_coded_sample & 0x20; |
| 1845 | 958 |
| 959 /* if the depth is 2, 4, or 8 bpp, file is palettized */ | |
| 960 if ((color_depth == 2) || (color_depth == 4) || | |
| 961 (color_depth == 8)) { | |
| 3257 | 962 /* for palette traversal */ |
| 963 unsigned int color_start, color_count, color_end; | |
| 964 unsigned char r, g, b; | |
| 965 | |
| 4719 | 966 st->codec->palctrl = av_malloc(sizeof(*st->codec->palctrl)); |
| 1845 | 967 if (color_greyscale) { |
| 3257 | 968 int color_index, color_dec; |
| 1845 | 969 /* compute the greyscale palette */ |
|
3908
1d3d17de20ba
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
3796
diff
changeset
|
970 st->codec->bits_per_coded_sample = color_depth; |
| 1845 | 971 color_count = 1 << color_depth; |
| 972 color_index = 255; | |
| 973 color_dec = 256 / (color_count - 1); | |
| 974 for (j = 0; j < color_count; j++) { | |
| 975 r = g = b = color_index; | |
| 4719 | 976 st->codec->palctrl->palette[j] = |
| 1845 | 977 (r << 16) | (g << 8) | (b); |
| 978 color_index -= color_dec; | |
| 979 if (color_index < 0) | |
| 980 color_index = 0; | |
| 981 } | |
|
3179
5f56b694f9bf
according to specs, only color table id set to 0, have it in stsd, fix 4colors.mov
bcoudurier
parents:
3178
diff
changeset
|
982 } else if (st->codec->color_table_id) { |
| 3257 | 983 const uint8_t *color_table; |
| 1845 | 984 /* if flag bit 3 is set, use the default palette */ |
| 985 color_count = 1 << color_depth; | |
| 986 if (color_depth == 2) | |
| 987 color_table = ff_qt_default_palette_4; | |
| 988 else if (color_depth == 4) | |
| 989 color_table = ff_qt_default_palette_16; | |
| 990 else | |
| 991 color_table = ff_qt_default_palette_256; | |
| 992 | |
| 993 for (j = 0; j < color_count; j++) { | |
|
4786
d5ae967cc549
Remove alpha channel from default colorspace tables, since it is unused. See
rbultje
parents:
4782
diff
changeset
|
994 r = color_table[j * 3 + 0]; |
|
d5ae967cc549
Remove alpha channel from default colorspace tables, since it is unused. See
rbultje
parents:
4782
diff
changeset
|
995 g = color_table[j * 3 + 1]; |
|
d5ae967cc549
Remove alpha channel from default colorspace tables, since it is unused. See
rbultje
parents:
4782
diff
changeset
|
996 b = color_table[j * 3 + 2]; |
| 4719 | 997 st->codec->palctrl->palette[j] = |
| 1845 | 998 (r << 16) | (g << 8) | (b); |
| 999 } | |
| 1000 } else { | |
| 1001 /* load the palette from the file */ | |
| 1002 color_start = get_be32(pb); | |
| 1003 color_count = get_be16(pb); | |
| 1004 color_end = get_be16(pb); | |
|
2809
17086a526938
Check sanity in the palette loading operation. The addresses a potential security risk in
melanson
parents:
2807
diff
changeset
|
1005 if ((color_start <= 255) && |
|
17086a526938
Check sanity in the palette loading operation. The addresses a potential security risk in
melanson
parents:
2807
diff
changeset
|
1006 (color_end <= 255)) { |
| 2810 | 1007 for (j = color_start; j <= color_end; j++) { |
| 1008 /* each R, G, or B component is 16 bits; | |
| 1009 * only use the top 8 bits; skip alpha bytes | |
| 1010 * up front */ | |
| 1011 get_byte(pb); | |
| 1012 get_byte(pb); | |
| 1013 r = get_byte(pb); | |
| 1014 get_byte(pb); | |
| 1015 g = get_byte(pb); | |
| 1016 get_byte(pb); | |
| 1017 b = get_byte(pb); | |
| 1018 get_byte(pb); | |
| 4719 | 1019 st->codec->palctrl->palette[j] = |
| 2810 | 1020 (r << 16) | (g << 8) | (b); |
|
2809
17086a526938
Check sanity in the palette loading operation. The addresses a potential security risk in
melanson
parents:
2807
diff
changeset
|
1021 } |
| 1845 | 1022 } |
| 1023 } | |
| 1024 st->codec->palctrl->palette_changed = 1; | |
| 4719 | 1025 } |
| 1845 | 1026 } else if(st->codec->codec_type==CODEC_TYPE_AUDIO) { |
| 3622 | 1027 int bits_per_sample, flags; |
| 1845 | 1028 uint16_t version = get_be16(pb); |
| 1029 | |
| 1030 st->codec->codec_id = id; | |
| 1031 get_be16(pb); /* revision level */ | |
| 1032 get_be32(pb); /* vendor */ | |
| 1033 | |
| 1034 st->codec->channels = get_be16(pb); /* channel count */ | |
| 1907 | 1035 dprintf(c->fc, "audio channels %d\n", st->codec->channels); |
|
3908
1d3d17de20ba
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
3796
diff
changeset
|
1036 st->codec->bits_per_coded_sample = get_be16(pb); /* sample size */ |
| 1845 | 1037 |
|
3029
10abe8748ec2
use correct demux mechanism when audio compression id is -2, dv audio does not matter, demux partially qt_dv_pal_test.mov which does NOT use cid -2
bcoudurier
parents:
3027
diff
changeset
|
1038 sc->audio_cid = get_be16(pb); |
| 1845 | 1039 get_be16(pb); /* packet size = 0 */ |
| 1040 | |
| 1041 st->codec->sample_rate = ((get_be32(pb) >> 16)); | |
| 1042 | |
|
3619
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1043 //Read QT version 1 fields. In version 0 these do not exist. |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1044 dprintf(c->fc, "version =%d, isom =%d\n",version,c->isom); |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1045 if(!c->isom) { |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1046 if(version==1) { |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1047 sc->samples_per_frame = get_be32(pb); |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1048 get_be32(pb); /* bytes per packet */ |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1049 sc->bytes_per_frame = get_be32(pb); |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1050 get_be32(pb); /* bytes per sample */ |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1051 } else if(version==2) { |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1052 get_be32(pb); /* sizeof struct only */ |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1053 st->codec->sample_rate = av_int2dbl(get_be64(pb)); /* float 64 */ |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1054 st->codec->channels = get_be32(pb); |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1055 get_be32(pb); /* always 0x7F000000 */ |
|
3908
1d3d17de20ba
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
3796
diff
changeset
|
1056 st->codec->bits_per_coded_sample = get_be32(pb); /* bits per channel if sound is uncompressed */ |
| 3622 | 1057 flags = get_be32(pb); /* lcpm format specific flag */ |
| 3620 | 1058 sc->bytes_per_frame = get_be32(pb); /* bytes per audio packet if constant */ |
| 1059 sc->samples_per_frame = get_be32(pb); /* lpcm frames per audio packet if constant */ | |
| 3625 | 1060 if (format == MKTAG('l','p','c','m')) |
| 5205 | 1061 st->codec->codec_id = ff_mov_get_lpcm_codec_id(st->codec->bits_per_coded_sample, flags); |
|
3619
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1062 } |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1063 } |
|
bd4b7c8fec83
move version specific parsing code before codec specific code, will be needed
bcoudurier
parents:
3615
diff
changeset
|
1064 |
| 1845 | 1065 switch (st->codec->codec_id) { |
| 1066 case CODEC_ID_PCM_S8: | |
| 1067 case CODEC_ID_PCM_U8: | |
|
3908
1d3d17de20ba
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
3796
diff
changeset
|
1068 if (st->codec->bits_per_coded_sample == 16) |
| 1845 | 1069 st->codec->codec_id = CODEC_ID_PCM_S16BE; |
| 1070 break; | |
| 1071 case CODEC_ID_PCM_S16LE: | |
| 1072 case CODEC_ID_PCM_S16BE: | |
|
3908
1d3d17de20ba
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
3796
diff
changeset
|
1073 if (st->codec->bits_per_coded_sample == 8) |
| 1845 | 1074 st->codec->codec_id = CODEC_ID_PCM_S8; |
|
3908
1d3d17de20ba
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
3796
diff
changeset
|
1075 else if (st->codec->bits_per_coded_sample == 24) |
|
3621
0415fc41780a
keep original codec/fourcc endianness, fix XDCAMHD.mov
bcoudurier
parents:
3620
diff
changeset
|
1076 st->codec->codec_id = |
|
0415fc41780a
keep original codec/fourcc endianness, fix XDCAMHD.mov
bcoudurier
parents:
3620
diff
changeset
|
1077 st->codec->codec_id == CODEC_ID_PCM_S16BE ? |
|
0415fc41780a
keep original codec/fourcc endianness, fix XDCAMHD.mov
bcoudurier
parents:
3620
diff
changeset
|
1078 CODEC_ID_PCM_S24BE : CODEC_ID_PCM_S24LE; |
| 1845 | 1079 break; |
|
3036
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1080 /* set values for old format before stsd version 1 appeared */ |
|
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1081 case CODEC_ID_MACE3: |
|
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1082 sc->samples_per_frame = 6; |
|
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1083 sc->bytes_per_frame = 2*st->codec->channels; |
|
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1084 break; |
|
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1085 case CODEC_ID_MACE6: |
|
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1086 sc->samples_per_frame = 6; |
|
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1087 sc->bytes_per_frame = 1*st->codec->channels; |
|
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1088 break; |
|
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1089 case CODEC_ID_ADPCM_IMA_QT: |
|
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1090 sc->samples_per_frame = 64; |
|
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1091 sc->bytes_per_frame = 34*st->codec->channels; |
|
62181fbfc128
remove messy and not always correct chunk size workaround, use correct values instead
bcoudurier
parents:
3034
diff
changeset
|
1092 break; |
|
3252
f4fcd39c5d7f
set gsm default frame size and bytes per frame, needed by old qt format, fix sample-gsm-8000.mov
bcoudurier
parents:
3245
diff
changeset
|
1093 case CODEC_ID_GSM: |
|
f4fcd39c5d7f
set gsm default frame size and bytes per frame, needed by old qt format, fix sample-gsm-8000.mov
bcoudurier
parents:
3245
diff
changeset
|
1094 sc->samples_per_frame = 160; |
|
f4fcd39c5d7f
set gsm default frame size and bytes per frame, needed by old qt format, fix sample-gsm-8000.mov
bcoudurier
parents:
3245
diff
changeset
|
1095 sc->bytes_per_frame = 33; |
|
f4fcd39c5d7f
set gsm default frame size and bytes per frame, needed by old qt format, fix sample-gsm-8000.mov
bcoudurier
parents:
3245
diff
changeset
|
1096 break; |
| 1845 | 1097 default: |
| 1098 break; | |
| 1099 } | |
| 1100 | |
| 1101 bits_per_sample = av_get_bits_per_sample(st->codec->codec_id); | |
| 1102 if (bits_per_sample) { | |
|
3908
1d3d17de20ba
Bump Major version, this commit is almost just renaming bits_per_sample to
michael
parents:
3796
diff
changeset
|
1103 st->codec->bits_per_coded_sample = bits_per_sample; |
| 1845 | 1104 sc->sample_size = (bits_per_sample >> 3) * st->codec->channels; |
| 1105 } | |
|
2972
bc330130bdce
Set subtitle codec id correctly, i hope this does not break anything.
michael
parents:
2970
diff
changeset
|
1106 } else if(st->codec->codec_type==CODEC_TYPE_SUBTITLE){ |
|
4192
a48a6a414dfe
Read extradata (justification, colors, fonts, etc) for mov/mp4 timed text
conrad
parents:
4184
diff
changeset
|
1107 // ttxt stsd contains display flags, justification, background |
|
a48a6a414dfe
Read extradata (justification, colors, fonts, etc) for mov/mp4 timed text
conrad
parents:
4184
diff
changeset
|
1108 // color, fonts, and default styles, so fake an atom to read it |
|
a48a6a414dfe
Read extradata (justification, colors, fonts, etc) for mov/mp4 timed text
conrad
parents:
4184
diff
changeset
|
1109 MOVAtom fake_atom = { .size = size - (url_ftell(pb) - start_pos) }; |
|
4806
c3f239ee623f
Support DVD subtitles in mov/mp4 as created by Nero.
reimar
parents:
4790
diff
changeset
|
1110 if (format != AV_RL32("mp4s")) // mp4s contains a regular esds atom |
| 4807 | 1111 mov_read_glbl(c, pb, fake_atom); |
|
2972
bc330130bdce
Set subtitle codec id correctly, i hope this does not break anything.
michael
parents:
2970
diff
changeset
|
1112 st->codec->codec_id= id; |
| 4202 | 1113 st->codec->width = sc->width; |
| 1114 st->codec->height = sc->height; | |
| 1845 | 1115 } else { |
| 1116 /* other codec type, just skip (rtp, mp4s, tmcd ...) */ | |
| 1117 url_fskip(pb, size - (url_ftell(pb) - start_pos)); | |
| 1118 } | |
| 1119 /* this will read extra atoms at the end (wave, alac, damr, avcC, SMI ...) */ | |
| 1120 a.size = size - (url_ftell(pb) - start_pos); | |
|
2806
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
1121 if (a.size > 8) { |
|
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
1122 if (mov_read_default(c, pb, a) < 0) |
|
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
1123 return -1; |
|
1ce39cda4a59
check mov_read_default return value where appropriate, patch by takis, fix issue 285
bcoudurier
parents:
2794
diff
changeset
|
1124 } else if (a.size > 0) |
| 1845 | 1125 url_fskip(pb, a.size); |
| 1126 } | |
| 1127 | |
| 3084 | 1128 if(st->codec->codec_type==CODEC_TYPE_AUDIO && st->codec->sample_rate==0 && sc->time_scale>1) |
| 1845 | 1129 st->codec->sample_rate= sc->time_scale; |
| 1130 | |
| 1131 /* special codec parameters handling */ | |
| 1132 switch (st->codec->codec_id) { | |
| 4206 | 1133 #if CONFIG_DV_DEMUXER |
| 1845 | 1134 case CODEC_ID_DVAUDIO: |
|
4406
146d6083662b
Replace the calls to the deprecated av_alloc_format_context() with
stefano
parents:
4399
diff
changeset
|
1135 c->dv_fctx = avformat_alloc_context(); |
| 1845 | 1136 c->dv_demux = dv_init_demux(c->dv_fctx); |
| 1137 if (!c->dv_demux) { | |
| 1138 av_log(c->fc, AV_LOG_ERROR, "dv demux context init error\n"); | |
| 1139 return -1; | |
| 1140 } | |
| 1141 sc->dv_audio_container = 1; | |
| 1142 st->codec->codec_id = CODEC_ID_PCM_S16LE; | |
| 1143 break; | |
| 1144 #endif | |
| 1145 /* no ifdef since parameters are always those */ | |
|
3245
9f25267bee44
demux qcelp, so this can work with soc decoder and stream copy
bcoudurier
parents:
3242
diff
changeset
|
1146 case CODEC_ID_QCELP: |
|
4835
ac71e186e2fe
force sample for qcelp when not stored in mov, fix #968
bcoudurier
parents:
4807
diff
changeset
|
1147 // force sample rate for qcelp when not stored in mov |
|
ac71e186e2fe
force sample for qcelp when not stored in mov, fix #968
bcoudurier
parents:
4807
diff
changeset
|
1148 if (st->codec->codec_tag != MKTAG('Q','c','l','p')) |
|
ac71e186e2fe
force sample for qcelp when not stored in mov, fix #968
bcoudurier
parents:
4807
diff
changeset
|
1149 st->codec->sample_rate = 8000; |
|
4056
a6a5fe159af7
Commit last ok'ed parts of QCELP decoder and enable it.
vitor
parents:
4054
diff
changeset
|
1150 st->codec->frame_size= 160; |
| 4054 | 1151 st->codec->channels= 1; /* really needed */ |
|
4056
a6a5fe159af7
Commit last ok'ed parts of QCELP decoder and enable it.
vitor
parents:
4054
diff
changeset
|
1152 break; |
|
3256
b09eff5b0e89
parser should not be needed anymore, merge cases and set frame size for amr too
bcoudurier
parents:
3255
diff
changeset
|
1153 case CODEC_ID_AMR_NB: |
| 3933 | 1154 case CODEC_ID_AMR_WB: |
| 3258 | 1155 st->codec->frame_size= sc->samples_per_frame; |
| 1845 | 1156 st->codec->channels= 1; /* really needed */ |
|
3974
a8383d02c686
set sample rate for amr to allow stream copy since no decoder is present,
bcoudurier
parents:
3973
diff
changeset
|
1157 /* force sample rate for amr, stsd in 3gp does not store sample rate */ |
| 3989 | 1158 if (st->codec->codec_id == CODEC_ID_AMR_NB) |
|
3974
a8383d02c686
set sample rate for amr to allow stream copy since no decoder is present,
bcoudurier
parents:
3973
diff
changeset
|
1159 st->codec->sample_rate = 8000; |
| 3989 | 1160 else if (st->codec->codec_id == CODEC_ID_AMR_WB) |
| 1161 st->codec->sample_rate = 16000; | |
| 1845 | 1162 break; |
| 1163 case CODEC_ID_MP2: | |
|
1953
edfd6b33d1f6
activate parser on MP3 id, fix [A-Destiny]_Konjiki_no_Gash_Bell_-_65_[71EE362C].mp4
bcoudurier
parents:
1950
diff
changeset
|
1164 case CODEC_ID_MP3: |
| 1845 | 1165 st->codec->codec_type = CODEC_TYPE_AUDIO; /* force type after stsd for m1a hdlr */ |
| 2023 | 1166 st->need_parsing = AVSTREAM_PARSE_FULL; |
| 1845 | 1167 break; |
| 3187 | 1168 case CODEC_ID_GSM: |
|
2299
fe59c768ecf7
set block align to stsd audio v2 bytes per frame for adpcm ms and ima wav, fix surge-2-16-L-ms11.mov and surge-2-16-L-ms02.mov
bcoudurier
parents:
2298
diff
changeset
|
1169 case CODEC_ID_ADPCM_MS: |
|
fe59c768ecf7
set block align to stsd audio v2 bytes per frame for adpcm ms and ima wav, fix surge-2-16-L-ms11.mov and surge-2-16-L-ms02.mov
bcoudurier
parents:
2298
diff
changeset
|
1170 case CODEC_ID_ADPCM_IMA_WAV: |
|
fe59c768ecf7
set block align to stsd audio v2 bytes per frame for adpcm ms and ima wav, fix surge-2-16-L-ms11.mov and surge-2-16-L-ms02.mov
bcoudurier
parents:
2298
diff
changeset
|
1171 st->codec->block_align = sc->bytes_per_frame; |
|
fe59c768ecf7
set block align to stsd audio v2 bytes per frame for adpcm ms and ima wav, fix surge-2-16-L-ms11.mov and surge-2-16-L-ms02.mov
bcoudurier
parents:
2298
diff
changeset
|
1172 break; |
| 3242 | 1173 case CODEC_ID_ALAC: |
|
4122
30262468fff4
set alac channels from extradata, fix alac mono in m4a
bcoudurier
parents:
4116
diff
changeset
|
1174 if (st->codec->extradata_size == 36) { |
|
4123
e536841c1aeb
cosmetics, remove useless parenthesis and whitespaces
bcoudurier
parents:
4122
diff
changeset
|
1175 st->codec->frame_size = AV_RB32(st->codec->extradata+12); |
|
e536841c1aeb
cosmetics, remove useless parenthesis and whitespaces
bcoudurier
parents:
4122
diff
changeset
|
1176 st->codec->channels = AV_RB8 (st->codec->extradata+21); |
|
4122
30262468fff4
set alac channels from extradata, fix alac mono in m4a
bcoudurier
parents:
4116
diff
changeset
|
1177 } |
| 3242 | 1178 break; |
| 1845 | 1179 default: |
| 1180 break; | |
| 1181 } | |
| 1182 | |
| 1183 return 0; | |
| 1184 } | |
| 1185 | |
| 4079 | 1186 static int mov_read_stsc(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 1187 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1188 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1189 MOVStreamContext *sc; |
| 1845 | 1190 unsigned int i, entries; |
| 1191 | |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1192 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1193 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1194 st = c->fc->streams[c->fc->nb_streams-1]; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1195 sc = st->priv_data; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1196 |
| 1845 | 1197 get_byte(pb); /* version */ |
| 3145 | 1198 get_be24(pb); /* flags */ |
| 1845 | 1199 |
| 1200 entries = get_be32(pb); | |
| 1201 | |
| 2044 | 1202 dprintf(c->fc, "track[%i].stsc.entries = %i\n", c->fc->nb_streams-1, entries); |
| 1203 | |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1204 if(entries >= UINT_MAX / sizeof(*sc->stsc_data)) |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1205 return -1; |
| 4412 | 1206 sc->stsc_data = av_malloc(entries * sizeof(*sc->stsc_data)); |
| 1207 if (!sc->stsc_data) | |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1208 return AVERROR(ENOMEM); |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1209 sc->stsc_count = entries; |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1210 |
| 1845 | 1211 for(i=0; i<entries; i++) { |
| 4412 | 1212 sc->stsc_data[i].first = get_be32(pb); |
| 1213 sc->stsc_data[i].count = get_be32(pb); | |
| 1214 sc->stsc_data[i].id = get_be32(pb); | |
| 1845 | 1215 } |
| 1216 return 0; | |
| 1217 } | |
| 1218 | |
|
4933
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1219 static int mov_read_stps(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1220 { |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1221 AVStream *st; |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1222 MOVStreamContext *sc; |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1223 unsigned i, entries; |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1224 |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1225 if (c->fc->nb_streams < 1) |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1226 return 0; |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1227 st = c->fc->streams[c->fc->nb_streams-1]; |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1228 sc = st->priv_data; |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1229 |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1230 get_be32(pb); // version + flags |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1231 |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1232 entries = get_be32(pb); |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1233 if (entries >= UINT_MAX / sizeof(*sc->stps_data)) |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1234 return -1; |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1235 sc->stps_data = av_malloc(entries * sizeof(*sc->stps_data)); |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1236 if (!sc->stps_data) |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1237 return AVERROR(ENOMEM); |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1238 sc->stps_count = entries; |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1239 |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1240 for (i = 0; i < entries; i++) { |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1241 sc->stps_data[i] = get_be32(pb); |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1242 //dprintf(c->fc, "stps %d\n", sc->stps_data[i]); |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1243 } |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1244 |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1245 return 0; |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1246 } |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1247 |
| 4079 | 1248 static int mov_read_stss(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 1249 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1250 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1251 MOVStreamContext *sc; |
| 1845 | 1252 unsigned int i, entries; |
| 1253 | |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1254 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1255 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1256 st = c->fc->streams[c->fc->nb_streams-1]; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1257 sc = st->priv_data; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1258 |
| 1845 | 1259 get_byte(pb); /* version */ |
| 3145 | 1260 get_be24(pb); /* flags */ |
| 1845 | 1261 |
| 1262 entries = get_be32(pb); | |
| 1263 | |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1264 dprintf(c->fc, "keyframe_count = %d\n", entries); |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1265 |
| 2030 | 1266 if(entries >= UINT_MAX / sizeof(int)) |
| 1845 | 1267 return -1; |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1268 sc->keyframes = av_malloc(entries * sizeof(int)); |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1269 if (!sc->keyframes) |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1270 return AVERROR(ENOMEM); |
| 1845 | 1271 sc->keyframe_count = entries; |
| 2044 | 1272 |
| 1845 | 1273 for(i=0; i<entries; i++) { |
| 1274 sc->keyframes[i] = get_be32(pb); | |
| 2044 | 1275 //dprintf(c->fc, "keyframes[]=%d\n", sc->keyframes[i]); |
| 1845 | 1276 } |
| 1277 return 0; | |
| 1278 } | |
| 1279 | |
| 4079 | 1280 static int mov_read_stsz(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 1281 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1282 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1283 MOVStreamContext *sc; |
| 4739 | 1284 unsigned int i, entries, sample_size, field_size, num_bytes; |
| 1285 GetBitContext gb; | |
| 1286 unsigned char* buf; | |
| 1845 | 1287 |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1288 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1289 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1290 st = c->fc->streams[c->fc->nb_streams-1]; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1291 sc = st->priv_data; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1292 |
| 1845 | 1293 get_byte(pb); /* version */ |
| 3145 | 1294 get_be24(pb); /* flags */ |
| 1845 | 1295 |
| 4739 | 1296 if (atom.type == MKTAG('s','t','s','z')) { |
| 4740 | 1297 sample_size = get_be32(pb); |
| 1298 if (!sc->sample_size) /* do not overwrite value computed in stsd */ | |
| 1299 sc->sample_size = sample_size; | |
| 1300 field_size = 32; | |
| 4739 | 1301 } else { |
| 1302 sample_size = 0; | |
| 1303 get_be24(pb); /* reserved */ | |
| 1304 field_size = get_byte(pb); | |
| 1305 } | |
| 1845 | 1306 entries = get_be32(pb); |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1307 |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1308 dprintf(c->fc, "sample_size = %d sample_count = %d\n", sc->sample_size, entries); |
| 1845 | 1309 |
| 1310 sc->sample_count = entries; | |
| 1311 if (sample_size) | |
| 1312 return 0; | |
| 1313 | |
| 4739 | 1314 if (field_size != 4 && field_size != 8 && field_size != 16 && field_size != 32) { |
| 1315 av_log(c->fc, AV_LOG_ERROR, "Invalid sample field size %d\n", field_size); | |
| 1316 return -1; | |
| 1317 } | |
| 1318 | |
|
5165
3d4203b9c2d7
check entries against field_size, potential malloc overflow in read_stsz, fix #1357
bcoudurier
parents:
5164
diff
changeset
|
1319 if (entries >= UINT_MAX / sizeof(int) || entries >= (UINT_MAX - 4) / field_size) |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1320 return -1; |
| 2030 | 1321 sc->sample_sizes = av_malloc(entries * sizeof(int)); |
| 1845 | 1322 if (!sc->sample_sizes) |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1323 return AVERROR(ENOMEM); |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1324 |
| 4739 | 1325 num_bytes = (entries*field_size+4)>>3; |
| 1326 | |
|
4782
400ca65902d2
since code now use get_bits_long, allocate padding buffer
bcoudurier
parents:
4780
diff
changeset
|
1327 buf = av_malloc(num_bytes+FF_INPUT_BUFFER_PADDING_SIZE); |
| 4739 | 1328 if (!buf) { |
| 1329 av_freep(&sc->sample_sizes); | |
| 1330 return AVERROR(ENOMEM); | |
| 1331 } | |
| 1332 | |
| 1333 if (get_buffer(pb, buf, num_bytes) < num_bytes) { | |
| 1334 av_freep(&sc->sample_sizes); | |
| 1335 av_free(buf); | |
| 1336 return -1; | |
| 1337 } | |
| 1338 | |
| 1339 init_get_bits(&gb, buf, 8*num_bytes); | |
| 1340 | |
|
3156
487b1979f195
remove useless debug print since now mov_build_index will do
bcoudurier
parents:
3155
diff
changeset
|
1341 for(i=0; i<entries; i++) |
| 4739 | 1342 sc->sample_sizes[i] = get_bits_long(&gb, field_size); |
| 1343 | |
| 1344 av_free(buf); | |
| 1845 | 1345 return 0; |
| 1346 } | |
| 1347 | |
| 4079 | 1348 static int mov_read_stts(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 1349 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1350 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1351 MOVStreamContext *sc; |
| 1845 | 1352 unsigned int i, entries; |
| 1353 int64_t duration=0; | |
| 1354 int64_t total_sample_count=0; | |
| 1355 | |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1356 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1357 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1358 st = c->fc->streams[c->fc->nb_streams-1]; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1359 sc = st->priv_data; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1360 |
| 1845 | 1361 get_byte(pb); /* version */ |
| 3145 | 1362 get_be24(pb); /* flags */ |
| 1845 | 1363 entries = get_be32(pb); |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1364 |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1365 dprintf(c->fc, "track[%i].stts.entries = %i\n", c->fc->nb_streams-1, entries); |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1366 |
| 4079 | 1367 if(entries >= UINT_MAX / sizeof(*sc->stts_data)) |
| 1845 | 1368 return -1; |
| 4079 | 1369 sc->stts_data = av_malloc(entries * sizeof(*sc->stts_data)); |
|
2807
5bf4b9df2794
return error if malloc failed, found by takis, fix issue 286
bcoudurier
parents:
2806
diff
changeset
|
1370 if (!sc->stts_data) |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1371 return AVERROR(ENOMEM); |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1372 sc->stts_count = entries; |
| 1845 | 1373 |
| 1374 for(i=0; i<entries; i++) { | |
| 1375 int sample_duration; | |
| 1376 int sample_count; | |
| 1377 | |
| 1378 sample_count=get_be32(pb); | |
| 1379 sample_duration = get_be32(pb); | |
| 1380 sc->stts_data[i].count= sample_count; | |
| 1381 sc->stts_data[i].duration= sample_duration; | |
| 1382 | |
| 1907 | 1383 dprintf(c->fc, "sample_count=%d, sample_duration=%d\n",sample_count,sample_duration); |
| 1845 | 1384 |
| 1385 duration+=(int64_t)sample_duration*sample_count; | |
| 1386 total_sample_count+=sample_count; | |
| 1387 } | |
| 1388 | |
| 1389 st->nb_frames= total_sample_count; | |
| 1390 if(duration) | |
| 1391 st->duration= duration; | |
| 1392 return 0; | |
| 1393 } | |
| 1394 | |
| 4079 | 1395 static int mov_read_ctts(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 1396 { |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1397 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1398 MOVStreamContext *sc; |
| 1845 | 1399 unsigned int i, entries; |
| 1400 | |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1401 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1402 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1403 st = c->fc->streams[c->fc->nb_streams-1]; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1404 sc = st->priv_data; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1405 |
| 1845 | 1406 get_byte(pb); /* version */ |
| 3145 | 1407 get_be24(pb); /* flags */ |
| 1845 | 1408 entries = get_be32(pb); |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1409 |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1410 dprintf(c->fc, "track[%i].ctts.entries = %i\n", c->fc->nb_streams-1, entries); |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1411 |
| 4079 | 1412 if(entries >= UINT_MAX / sizeof(*sc->ctts_data)) |
| 1845 | 1413 return -1; |
| 4079 | 1414 sc->ctts_data = av_malloc(entries * sizeof(*sc->ctts_data)); |
|
2807
5bf4b9df2794
return error if malloc failed, found by takis, fix issue 286
bcoudurier
parents:
2806
diff
changeset
|
1415 if (!sc->ctts_data) |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1416 return AVERROR(ENOMEM); |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1417 sc->ctts_count = entries; |
| 1845 | 1418 |
| 1419 for(i=0; i<entries; i++) { | |
| 1420 int count =get_be32(pb); | |
| 1421 int duration =get_be32(pb); | |
| 1422 | |
| 1423 sc->ctts_data[i].count = count; | |
| 1424 sc->ctts_data[i].duration= duration; | |
|
5347
f09a07cad10b
compute dts shift with ctts value, cslg atom might be missing, fix #419
bcoudurier
parents:
5346
diff
changeset
|
1425 if (duration < 0) |
|
f09a07cad10b
compute dts shift with ctts value, cslg atom might be missing, fix #419
bcoudurier
parents:
5346
diff
changeset
|
1426 sc->dts_shift = FFMAX(sc->dts_shift, -duration); |
| 1845 | 1427 } |
|
5347
f09a07cad10b
compute dts shift with ctts value, cslg atom might be missing, fix #419
bcoudurier
parents:
5346
diff
changeset
|
1428 |
| 5351 | 1429 dprintf(c->fc, "dts shift %d\n", sc->dts_shift); |
|
5347
f09a07cad10b
compute dts shift with ctts value, cslg atom might be missing, fix #419
bcoudurier
parents:
5346
diff
changeset
|
1430 |
| 1845 | 1431 return 0; |
| 1432 } | |
| 1433 | |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1434 static void mov_build_index(MOVContext *mov, AVStream *st) |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1435 { |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1436 MOVStreamContext *sc = st->priv_data; |
|
3973
549a09cf23fe
Remove offset_t typedef and use int64_t directly instead.
diego
parents:
3967
diff
changeset
|
1437 int64_t current_offset; |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1438 int64_t current_dts = 0; |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1439 unsigned int stts_index = 0; |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1440 unsigned int stsc_index = 0; |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1441 unsigned int stss_index = 0; |
|
4933
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1442 unsigned int stps_index = 0; |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1443 unsigned int i, j; |
|
5332
ff45ef768724
compute codec bitrate in mov demuxer, patch by haim alon, haim dot alter at gmail dot com
bcoudurier
parents:
5242
diff
changeset
|
1444 uint64_t stream_size = 0; |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1445 |
|
4399
530e55405feb
offset dts according to edit list, hackish but works, based on patch by Reimar
bcoudurier
parents:
4369
diff
changeset
|
1446 /* adjust first dts according to edit list */ |
|
530e55405feb
offset dts according to edit list, hackish but works, based on patch by Reimar
bcoudurier
parents:
4369
diff
changeset
|
1447 if (sc->time_offset) { |
|
4742
0496cbd94374
Extend mov edit list support to work for a first padding entry with
reimar
parents:
4740
diff
changeset
|
1448 int rescaled = sc->time_offset < 0 ? av_rescale(sc->time_offset, sc->time_scale, mov->time_scale) : sc->time_offset; |
|
5015
7b260f4d453d
Remove time_rate, we cannot compute exactly when fragments are
bcoudurier
parents:
5002
diff
changeset
|
1449 current_dts = -rescaled; |
|
4790
0493d65debd7
set wrong_dts for iMovie created files which has huge ctts delay, fix ffmpeg_sample.m4v
bcoudurier
parents:
4786
diff
changeset
|
1450 if (sc->ctts_data && sc->ctts_data[0].duration / sc->stts_data[0].duration > 16) { |
|
0493d65debd7
set wrong_dts for iMovie created files which has huge ctts delay, fix ffmpeg_sample.m4v
bcoudurier
parents:
4786
diff
changeset
|
1451 /* more than 16 frames delay, dts are likely wrong |
|
0493d65debd7
set wrong_dts for iMovie created files which has huge ctts delay, fix ffmpeg_sample.m4v
bcoudurier
parents:
4786
diff
changeset
|
1452 this happens with files created by iMovie */ |
|
0493d65debd7
set wrong_dts for iMovie created files which has huge ctts delay, fix ffmpeg_sample.m4v
bcoudurier
parents:
4786
diff
changeset
|
1453 sc->wrong_dts = 1; |
|
0493d65debd7
set wrong_dts for iMovie created files which has huge ctts delay, fix ffmpeg_sample.m4v
bcoudurier
parents:
4786
diff
changeset
|
1454 st->codec->has_b_frames = 1; |
|
0493d65debd7
set wrong_dts for iMovie created files which has huge ctts delay, fix ffmpeg_sample.m4v
bcoudurier
parents:
4786
diff
changeset
|
1455 } |
|
4399
530e55405feb
offset dts according to edit list, hackish but works, based on patch by Reimar
bcoudurier
parents:
4369
diff
changeset
|
1456 } |
|
530e55405feb
offset dts according to edit list, hackish but works, based on patch by Reimar
bcoudurier
parents:
4369
diff
changeset
|
1457 |
|
3178
73b7ef886091
Only use chunk demuxing for old uncompressed audio mechanism specified by stts.
bcoudurier
parents:
3175
diff
changeset
|
1458 /* only use old uncompressed audio chunk demuxing when stts specifies it */ |
|
73b7ef886091
Only use chunk demuxing for old uncompressed audio mechanism specified by stts.
bcoudurier
parents:
3175
diff
changeset
|
1459 if (!(st->codec->codec_type == CODEC_TYPE_AUDIO && |
|
73b7ef886091
Only use chunk demuxing for old uncompressed audio mechanism specified by stts.
bcoudurier
parents:
3175
diff
changeset
|
1460 sc->stts_count == 1 && sc->stts_data[0].duration == 1)) { |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1461 unsigned int current_sample = 0; |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1462 unsigned int stts_sample = 0; |
|
4933
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1463 unsigned int sample_size; |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1464 unsigned int distance = 0; |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1465 int key_off = sc->keyframes && sc->keyframes[0] == 1; |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1466 |
|
4930
1f151bcb0b27
Parse 'cslg' atom to retrieve dts shift when 'ctts' duration is negative.
bcoudurier
parents:
4890
diff
changeset
|
1467 current_dts -= sc->dts_shift; |
|
1f151bcb0b27
Parse 'cslg' atom to retrieve dts shift when 'ctts' duration is negative.
bcoudurier
parents:
4890
diff
changeset
|
1468 |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1469 for (i = 0; i < sc->chunk_count; i++) { |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1470 current_offset = sc->chunk_offsets[i]; |
| 4412 | 1471 if (stsc_index + 1 < sc->stsc_count && |
| 1472 i + 1 == sc->stsc_data[stsc_index + 1].first) | |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1473 stsc_index++; |
| 4412 | 1474 for (j = 0; j < sc->stsc_data[stsc_index].count; j++) { |
|
4933
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1475 int keyframe = 0; |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1476 if (current_sample >= sc->sample_count) { |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1477 av_log(mov->fc, AV_LOG_ERROR, "wrong sample count\n"); |
|
4717
ee2dd1b3afc3
do not modify sample_count, check against index entries
bcoudurier
parents:
4690
diff
changeset
|
1478 return; |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1479 } |
|
4933
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1480 |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1481 if (!sc->keyframe_count || current_sample+key_off == sc->keyframes[stss_index]) { |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1482 keyframe = 1; |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1483 if (stss_index + 1 < sc->keyframe_count) |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1484 stss_index++; |
|
4933
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1485 } else if (sc->stps_count && current_sample+key_off == sc->stps_data[stps_index]) { |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1486 keyframe = 1; |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1487 if (stps_index + 1 < sc->stps_count) |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1488 stps_index++; |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1489 } |
|
4933
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1490 if (keyframe) |
|
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1491 distance = 0; |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1492 sample_size = sc->sample_size > 0 ? sc->sample_size : sc->sample_sizes[current_sample]; |
|
3299
80a497804aa8
demux all stsd ids if codec is the same, fix premature_mov_ending.mov, closes #451
bcoudurier
parents:
3286
diff
changeset
|
1493 if(sc->pseudo_stream_id == -1 || |
| 4412 | 1494 sc->stsc_data[stsc_index].id - 1 == sc->pseudo_stream_id) { |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1495 av_add_index_entry(st, current_offset, current_dts, sample_size, distance, |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1496 keyframe ? AVINDEX_KEYFRAME : 0); |
|
3301
11b6da5ffe78
only print debug info when sample is actually added
bcoudurier
parents:
3300
diff
changeset
|
1497 dprintf(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", " |
|
11b6da5ffe78
only print debug info when sample is actually added
bcoudurier
parents:
3300
diff
changeset
|
1498 "size %d, distance %d, keyframe %d\n", st->index, current_sample, |
|
11b6da5ffe78
only print debug info when sample is actually added
bcoudurier
parents:
3300
diff
changeset
|
1499 current_offset, current_dts, sample_size, distance, keyframe); |
|
11b6da5ffe78
only print debug info when sample is actually added
bcoudurier
parents:
3300
diff
changeset
|
1500 } |
|
4718
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
1501 |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1502 current_offset += sample_size; |
|
5332
ff45ef768724
compute codec bitrate in mov demuxer, patch by haim alon, haim dot alter at gmail dot com
bcoudurier
parents:
5242
diff
changeset
|
1503 stream_size += sample_size; |
|
5015
7b260f4d453d
Remove time_rate, we cannot compute exactly when fragments are
bcoudurier
parents:
5002
diff
changeset
|
1504 current_dts += sc->stts_data[stts_index].duration; |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1505 distance++; |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1506 stts_sample++; |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1507 current_sample++; |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1508 if (stts_index + 1 < sc->stts_count && stts_sample == sc->stts_data[stts_index].count) { |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1509 stts_sample = 0; |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1510 stts_index++; |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1511 } |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1512 } |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1513 } |
| 5346 | 1514 if (st->duration > 0) |
| 1515 st->codec->bit_rate = stream_size*8*sc->time_scale/st->duration; | |
| 4992 | 1516 } else { |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1517 for (i = 0; i < sc->chunk_count; i++) { |
| 4992 | 1518 unsigned chunk_samples; |
| 1519 | |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1520 current_offset = sc->chunk_offsets[i]; |
| 4412 | 1521 if (stsc_index + 1 < sc->stsc_count && |
| 1522 i + 1 == sc->stsc_data[stsc_index + 1].first) | |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1523 stsc_index++; |
| 4412 | 1524 chunk_samples = sc->stsc_data[stsc_index].count; |
| 4992 | 1525 |
| 1526 if (sc->samples_per_frame && chunk_samples % sc->samples_per_frame) { | |
| 1527 av_log(mov->fc, AV_LOG_ERROR, "error unaligned chunk\n"); | |
| 1528 return; | |
| 1529 } | |
| 1530 | |
| 1531 while (chunk_samples > 0) { | |
| 1532 unsigned size, samples; | |
| 1533 | |
| 1534 if (sc->samples_per_frame >= 160) { // gsm | |
| 1535 samples = sc->samples_per_frame; | |
| 1536 size = sc->bytes_per_frame; | |
| 1537 } else { | |
| 1538 if (sc->samples_per_frame > 1) { | |
| 1539 samples = FFMIN((1024 / sc->samples_per_frame)* | |
| 1540 sc->samples_per_frame, chunk_samples); | |
| 1541 size = (samples / sc->samples_per_frame) * sc->bytes_per_frame; | |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1542 } else { |
| 4992 | 1543 samples = FFMIN(1024, chunk_samples); |
| 1544 size = samples * sc->sample_size; | |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1545 } |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1546 } |
| 4992 | 1547 |
| 1548 av_add_index_entry(st, current_offset, current_dts, size, 0, AVINDEX_KEYFRAME); | |
| 3167 | 1549 dprintf(mov->fc, "AVIndex stream %d, chunk %d, offset %"PRIx64", dts %"PRId64", " |
| 1550 "size %d, duration %d\n", st->index, i, current_offset, current_dts, | |
| 4992 | 1551 size, samples); |
| 1552 | |
| 1553 current_offset += size; | |
|
5015
7b260f4d453d
Remove time_rate, we cannot compute exactly when fragments are
bcoudurier
parents:
5002
diff
changeset
|
1554 current_dts += samples; |
| 4992 | 1555 chunk_samples -= samples; |
|
3154
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1556 } |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1557 } |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1558 } |
|
01f6f3c905db
move mov_build_index before mov_read_trak to avoid useless declaration
bcoudurier
parents:
3153
diff
changeset
|
1559 } |
|
3153
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1560 |
|
5369
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1561 static int mov_open_dref(ByteIOContext **pb, char *src, MOVDref *ref) |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1562 { |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1563 /* try absolute path */ |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1564 if (!url_fopen(pb, ref->path, URL_RDONLY)) |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1565 return 0; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1566 |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1567 /* try relative path */ |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1568 if (ref->nlvl_to > 0 && ref->nlvl_from > 0) { |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1569 char filename[1024]; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1570 char *src_path; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1571 int i, l; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1572 |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1573 /* find a source dir */ |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1574 src_path = strrchr(src, '/'); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1575 if (src_path) |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1576 src_path++; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1577 else |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1578 src_path = src; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1579 |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1580 /* find a next level down to target */ |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1581 for (i = 0, l = strlen(ref->path) - 1; l >= 0; l--) |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1582 if (ref->path[l] == '/') { |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1583 if (i == ref->nlvl_to - 1) |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1584 break; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1585 else |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1586 i++; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1587 } |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1588 |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1589 /* compose filename if next level down to target was found */ |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1590 if (i == ref->nlvl_to - 1) { |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1591 memcpy(filename, src, src_path - src); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1592 filename[src_path - src] = 0; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1593 |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1594 for (i = 1; i < ref->nlvl_from; i++) |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1595 av_strlcat(filename, "../", 1024); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1596 |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1597 av_strlcat(filename, ref->path + l + 1, 1024); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1598 |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1599 if (!url_fopen(pb, filename, URL_RDONLY)) |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1600 return 0; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1601 } |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1602 } |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1603 |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1604 return AVERROR(ENOENT); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1605 }; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1606 |
| 4079 | 1607 static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 1608 { |
| 1609 AVStream *st; | |
| 1610 MOVStreamContext *sc; | |
|
3153
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1611 int ret; |
| 1845 | 1612 |
| 1613 st = av_new_stream(c->fc, c->fc->nb_streams); | |
| 3162 | 1614 if (!st) return AVERROR(ENOMEM); |
| 1845 | 1615 sc = av_mallocz(sizeof(MOVStreamContext)); |
|
3161
60be75aa8c47
cannot free AVStream like this, and return ENOMEM
bcoudurier
parents:
3160
diff
changeset
|
1616 if (!sc) return AVERROR(ENOMEM); |
| 1845 | 1617 |
| 1618 st->priv_data = sc; | |
| 1619 st->codec->codec_type = CODEC_TYPE_DATA; | |
|
4197
84251a788a67
move ffindex set before mov_read_default so it can be used in functions
bcoudurier
parents:
4192
diff
changeset
|
1620 sc->ffindex = st->index; |
| 1845 | 1621 |
|
3153
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1622 if ((ret = mov_read_default(c, pb, atom)) < 0) |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1623 return ret; |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1624 |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1625 /* sanity checks */ |
|
4718
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
1626 if (sc->chunk_count && (!sc->stts_count || !sc->stsc_count || |
|
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
1627 (!sc->sample_size && !sc->sample_count))) { |
| 3180 | 1628 av_log(c->fc, AV_LOG_ERROR, "stream %d, missing mandatory atoms, broken header\n", |
| 1629 st->index); | |
|
3153
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1630 return 0; |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1631 } |
|
4718
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
1632 |
|
5345
4f2be9042fd6
warn if stream timescale is not set and set it to 1 to avoid FPE
bcoudurier
parents:
5342
diff
changeset
|
1633 if (!sc->time_scale) { |
|
4f2be9042fd6
warn if stream timescale is not set and set it to 1 to avoid FPE
bcoudurier
parents:
5342
diff
changeset
|
1634 av_log(c->fc, AV_LOG_WARNING, "stream %d, timescale not set\n", st->index); |
|
4718
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
1635 sc->time_scale = c->time_scale; |
|
5345
4f2be9042fd6
warn if stream timescale is not set and set it to 1 to avoid FPE
bcoudurier
parents:
5342
diff
changeset
|
1636 if (!sc->time_scale) |
|
4f2be9042fd6
warn if stream timescale is not set and set it to 1 to avoid FPE
bcoudurier
parents:
5342
diff
changeset
|
1637 sc->time_scale = 1; |
|
4f2be9042fd6
warn if stream timescale is not set and set it to 1 to avoid FPE
bcoudurier
parents:
5342
diff
changeset
|
1638 } |
|
4718
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
1639 |
|
5015
7b260f4d453d
Remove time_rate, we cannot compute exactly when fragments are
bcoudurier
parents:
5002
diff
changeset
|
1640 av_set_pts_info(st, 64, 1, sc->time_scale); |
|
3153
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1641 |
|
3245
9f25267bee44
demux qcelp, so this can work with soc decoder and stream copy
bcoudurier
parents:
3242
diff
changeset
|
1642 if (st->codec->codec_type == CODEC_TYPE_AUDIO && |
|
4454
7d1460900c59
fix frame size, time rate is not stts duration anymore with time offset
bcoudurier
parents:
4453
diff
changeset
|
1643 !st->codec->frame_size && sc->stts_count == 1) { |
|
7d1460900c59
fix frame size, time rate is not stts duration anymore with time offset
bcoudurier
parents:
4453
diff
changeset
|
1644 st->codec->frame_size = av_rescale(sc->stts_data[0].duration, |
|
7d1460900c59
fix frame size, time rate is not stts duration anymore with time offset
bcoudurier
parents:
4453
diff
changeset
|
1645 st->codec->sample_rate, sc->time_scale); |
|
7d1460900c59
fix frame size, time rate is not stts duration anymore with time offset
bcoudurier
parents:
4453
diff
changeset
|
1646 dprintf(c->fc, "frame size %d\n", st->codec->frame_size); |
|
7d1460900c59
fix frame size, time rate is not stts duration anymore with time offset
bcoudurier
parents:
4453
diff
changeset
|
1647 } |
|
3153
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1648 |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1649 mov_build_index(c, st); |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1650 |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1651 if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) { |
|
5369
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1652 MOVDref *dref = &sc->drefs[sc->dref_id - 1]; |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1653 if (mov_open_dref(&sc->pb, c->fc->filename, dref) < 0) |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1654 av_log(c->fc, AV_LOG_ERROR, |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1655 "stream %d, error opening alias: path='%s', dir='%s', " |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1656 "filename='%s', volume='%s', nlvl_from=%d, nlvl_to=%d\n", |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1657 st->index, dref->path, dref->dir, dref->filename, |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
1658 dref->volume, dref->nlvl_from, dref->nlvl_to); |
|
3153
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1659 } else |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1660 sc->pb = c->fc->pb; |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1661 |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1662 switch (st->codec->codec_id) { |
| 4206 | 1663 #if CONFIG_H261_DECODER |
|
3153
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1664 case CODEC_ID_H261: |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1665 #endif |
| 4206 | 1666 #if CONFIG_H263_DECODER |
|
3153
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1667 case CODEC_ID_H263: |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1668 #endif |
|
4780
75d9edccd39c
reset codec width/height for h264 forcing decoder to parse extradata
bcoudurier
parents:
4749
diff
changeset
|
1669 #if CONFIG_H264_DECODER |
|
75d9edccd39c
reset codec width/height for h264 forcing decoder to parse extradata
bcoudurier
parents:
4749
diff
changeset
|
1670 case CODEC_ID_H264: |
|
75d9edccd39c
reset codec width/height for h264 forcing decoder to parse extradata
bcoudurier
parents:
4749
diff
changeset
|
1671 #endif |
| 4206 | 1672 #if CONFIG_MPEG4_DECODER |
|
3153
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1673 case CODEC_ID_MPEG4: |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1674 #endif |
|
4718
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
1675 st->codec->width = 0; /* let decoder init width/height */ |
|
3153
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1676 st->codec->height= 0; |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1677 break; |
|
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1678 } |
| 3155 | 1679 |
| 1680 /* Do not need those anymore. */ | |
| 1681 av_freep(&sc->chunk_offsets); | |
| 4412 | 1682 av_freep(&sc->stsc_data); |
| 3155 | 1683 av_freep(&sc->sample_sizes); |
| 1684 av_freep(&sc->keyframes); | |
| 1685 av_freep(&sc->stts_data); | |
|
4933
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
1686 av_freep(&sc->stps_data); |
| 3155 | 1687 |
|
3153
4ded3fdf5c7c
move specific end treatment when trak is detected, will be needed for fragments
bcoudurier
parents:
3145
diff
changeset
|
1688 return 0; |
| 1845 | 1689 } |
| 1690 | |
| 4079 | 1691 static int mov_read_ilst(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
|
4033
836e25632f0b
read itunes metadata, code based on Reimar's patch
bcoudurier
parents:
4028
diff
changeset
|
1692 { |
|
836e25632f0b
read itunes metadata, code based on Reimar's patch
bcoudurier
parents:
4028
diff
changeset
|
1693 int ret; |
|
836e25632f0b
read itunes metadata, code based on Reimar's patch
bcoudurier
parents:
4028
diff
changeset
|
1694 c->itunes_metadata = 1; |
|
836e25632f0b
read itunes metadata, code based on Reimar's patch
bcoudurier
parents:
4028
diff
changeset
|
1695 ret = mov_read_default(c, pb, atom); |
|
836e25632f0b
read itunes metadata, code based on Reimar's patch
bcoudurier
parents:
4028
diff
changeset
|
1696 c->itunes_metadata = 0; |
|
836e25632f0b
read itunes metadata, code based on Reimar's patch
bcoudurier
parents:
4028
diff
changeset
|
1697 return ret; |
|
836e25632f0b
read itunes metadata, code based on Reimar's patch
bcoudurier
parents:
4028
diff
changeset
|
1698 } |
|
836e25632f0b
read itunes metadata, code based on Reimar's patch
bcoudurier
parents:
4028
diff
changeset
|
1699 |
| 4079 | 1700 static int mov_read_meta(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
|
4033
836e25632f0b
read itunes metadata, code based on Reimar's patch
bcoudurier
parents:
4028
diff
changeset
|
1701 { |
|
4724
13ffc02ce5f8
search for hdlr atom in meta, some files do not store version+flags
bcoudurier
parents:
4722
diff
changeset
|
1702 while (atom.size > 8) { |
|
13ffc02ce5f8
search for hdlr atom in meta, some files do not store version+flags
bcoudurier
parents:
4722
diff
changeset
|
1703 uint32_t tag = get_le32(pb); |
|
13ffc02ce5f8
search for hdlr atom in meta, some files do not store version+flags
bcoudurier
parents:
4722
diff
changeset
|
1704 atom.size -= 4; |
|
13ffc02ce5f8
search for hdlr atom in meta, some files do not store version+flags
bcoudurier
parents:
4722
diff
changeset
|
1705 if (tag == MKTAG('h','d','l','r')) { |
|
13ffc02ce5f8
search for hdlr atom in meta, some files do not store version+flags
bcoudurier
parents:
4722
diff
changeset
|
1706 url_fseek(pb, -8, SEEK_CUR); |
|
13ffc02ce5f8
search for hdlr atom in meta, some files do not store version+flags
bcoudurier
parents:
4722
diff
changeset
|
1707 atom.size += 8; |
|
13ffc02ce5f8
search for hdlr atom in meta, some files do not store version+flags
bcoudurier
parents:
4722
diff
changeset
|
1708 return mov_read_default(c, pb, atom); |
|
13ffc02ce5f8
search for hdlr atom in meta, some files do not store version+flags
bcoudurier
parents:
4722
diff
changeset
|
1709 } |
|
13ffc02ce5f8
search for hdlr atom in meta, some files do not store version+flags
bcoudurier
parents:
4722
diff
changeset
|
1710 } |
|
13ffc02ce5f8
search for hdlr atom in meta, some files do not store version+flags
bcoudurier
parents:
4722
diff
changeset
|
1711 return 0; |
|
4033
836e25632f0b
read itunes metadata, code based on Reimar's patch
bcoudurier
parents:
4028
diff
changeset
|
1712 } |
|
836e25632f0b
read itunes metadata, code based on Reimar's patch
bcoudurier
parents:
4028
diff
changeset
|
1713 |
| 4079 | 1714 static int mov_read_tkhd(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 1715 { |
| 3595 | 1716 int i; |
| 1717 int width; | |
| 1718 int height; | |
| 1719 int64_t disp_transform[2]; | |
| 1720 int display_matrix[3][2]; | |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1721 AVStream *st; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1722 MOVStreamContext *sc; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1723 int version; |
| 1845 | 1724 |
|
5060
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1725 if (c->fc->nb_streams < 1) |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1726 return 0; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1727 st = c->fc->streams[c->fc->nb_streams-1]; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1728 sc = st->priv_data; |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1729 |
|
0bac77c4a578
check stream existence before assignment, fix #1222
bcoudurier
parents:
5058
diff
changeset
|
1730 version = get_byte(pb); |
| 3145 | 1731 get_be24(pb); /* flags */ |
| 1845 | 1732 /* |
| 1733 MOV_TRACK_ENABLED 0x0001 | |
| 1734 MOV_TRACK_IN_MOVIE 0x0002 | |
| 1735 MOV_TRACK_IN_PREVIEW 0x0004 | |
| 1736 MOV_TRACK_IN_POSTER 0x0008 | |
| 1737 */ | |
| 1738 | |
| 1739 if (version == 1) { | |
| 1740 get_be64(pb); | |
| 1741 get_be64(pb); | |
| 1742 } else { | |
| 1743 get_be32(pb); /* creation time */ | |
| 1744 get_be32(pb); /* modification time */ | |
| 1745 } | |
| 1746 st->id = (int)get_be32(pb); /* track id (NOT 0 !)*/ | |
| 1747 get_be32(pb); /* reserved */ | |
|
4453
f9ab71b3ace7
do not set start time to 0, it is not the case with elst time offset
bcoudurier
parents:
4447
diff
changeset
|
1748 |
| 3167 | 1749 /* highlevel (considering edits) duration in movie timebase */ |
| 1750 (version == 1) ? get_be64(pb) : get_be32(pb); | |
| 1845 | 1751 get_be32(pb); /* reserved */ |
| 1752 get_be32(pb); /* reserved */ | |
| 1753 | |
| 1754 get_be16(pb); /* layer */ | |
| 1755 get_be16(pb); /* alternate group */ | |
| 1756 get_be16(pb); /* volume */ | |
| 1757 get_be16(pb); /* reserved */ | |
| 1758 | |
| 3595 | 1759 //read in the display matrix (outlined in ISO 14496-12, Section 6.2.2) |
| 1760 // they're kept in fixed point format through all calculations | |
| 1761 // ignore u,v,z b/c we don't need the scale factor to calc aspect ratio | |
| 1762 for (i = 0; i < 3; i++) { | |
| 1763 display_matrix[i][0] = get_be32(pb); // 16.16 fixed point | |
| 1764 display_matrix[i][1] = get_be32(pb); // 16.16 fixed point | |
| 1765 get_be32(pb); // 2.30 fixed point (not used) | |
| 1766 } | |
| 1767 | |
| 1768 width = get_be32(pb); // 16.16 fixed point track width | |
| 1769 height = get_be32(pb); // 16.16 fixed point track height | |
| 4202 | 1770 sc->width = width >> 16; |
| 1771 sc->height = height >> 16; | |
| 1845 | 1772 |
|
5068
5657f855d5d0
only set par if it does not indicates a rotation, ex iphone 3GS
bcoudurier
parents:
5065
diff
changeset
|
1773 // transform the display width/height according to the matrix |
| 3595 | 1774 // skip this if the display matrix is the default identity matrix |
|
5068
5657f855d5d0
only set par if it does not indicates a rotation, ex iphone 3GS
bcoudurier
parents:
5065
diff
changeset
|
1775 // or if it is rotating the picture, ex iPhone 3GS |
| 3595 | 1776 // to keep the same scale, use [width height 1<<16] |
| 1777 if (width && height && | |
|
5068
5657f855d5d0
only set par if it does not indicates a rotation, ex iphone 3GS
bcoudurier
parents:
5065
diff
changeset
|
1778 ((display_matrix[0][0] != 65536 || |
|
5657f855d5d0
only set par if it does not indicates a rotation, ex iphone 3GS
bcoudurier
parents:
5065
diff
changeset
|
1779 display_matrix[1][1] != 65536) && |
|
5657f855d5d0
only set par if it does not indicates a rotation, ex iphone 3GS
bcoudurier
parents:
5065
diff
changeset
|
1780 !display_matrix[0][1] && |
|
5657f855d5d0
only set par if it does not indicates a rotation, ex iphone 3GS
bcoudurier
parents:
5065
diff
changeset
|
1781 !display_matrix[1][0] && |
|
5657f855d5d0
only set par if it does not indicates a rotation, ex iphone 3GS
bcoudurier
parents:
5065
diff
changeset
|
1782 !display_matrix[2][0] && !display_matrix[2][1])) { |
| 3595 | 1783 for (i = 0; i < 2; i++) |
| 1784 disp_transform[i] = | |
| 1785 (int64_t) width * display_matrix[0][i] + | |
| 1786 (int64_t) height * display_matrix[1][i] + | |
| 1787 ((int64_t) display_matrix[2][i] << 16); | |
| 1845 | 1788 |
| 3595 | 1789 //sample aspect ratio is new width/height divided by old width/height |
|
3759
27537074f2a9
convert every muxer/demuxer to write/read sample_aspect_ratio from/to
aurel
parents:
3751
diff
changeset
|
1790 st->sample_aspect_ratio = av_d2q( |
| 3595 | 1791 ((double) disp_transform[0] * height) / |
| 1792 ((double) disp_transform[1] * width), INT_MAX); | |
| 1793 } | |
| 1845 | 1794 return 0; |
| 1795 } | |
| 1796 | |
| 4079 | 1797 static int mov_read_tfhd(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 3169 | 1798 { |
| 1799 MOVFragment *frag = &c->fragment; | |
| 1800 MOVTrackExt *trex = NULL; | |
| 1801 int flags, track_id, i; | |
| 1802 | |
| 1803 get_byte(pb); /* version */ | |
| 1804 flags = get_be24(pb); | |
| 1805 | |
| 1806 track_id = get_be32(pb); | |
| 4646 | 1807 if (!track_id) |
| 3169 | 1808 return -1; |
| 1809 frag->track_id = track_id; | |
| 1810 for (i = 0; i < c->trex_count; i++) | |
| 1811 if (c->trex_data[i].track_id == frag->track_id) { | |
| 1812 trex = &c->trex_data[i]; | |
| 1813 break; | |
| 1814 } | |
| 1815 if (!trex) { | |
| 1816 av_log(c->fc, AV_LOG_ERROR, "could not find corresponding trex\n"); | |
| 1817 return -1; | |
| 1818 } | |
| 1819 | |
| 1820 if (flags & 0x01) frag->base_data_offset = get_be64(pb); | |
| 1821 else frag->base_data_offset = frag->moof_offset; | |
| 1822 if (flags & 0x02) frag->stsd_id = get_be32(pb); | |
| 1823 else frag->stsd_id = trex->stsd_id; | |
| 1824 | |
| 1825 frag->duration = flags & 0x08 ? get_be32(pb) : trex->duration; | |
| 1826 frag->size = flags & 0x10 ? get_be32(pb) : trex->size; | |
| 1827 frag->flags = flags & 0x20 ? get_be32(pb) : trex->flags; | |
| 1828 dprintf(c->fc, "frag flags 0x%x\n", frag->flags); | |
| 1829 return 0; | |
| 1830 } | |
| 1831 | |
| 4079 | 1832 static int mov_read_trex(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 3169 | 1833 { |
| 1834 MOVTrackExt *trex; | |
| 1835 | |
| 1836 if ((uint64_t)c->trex_count+1 >= UINT_MAX / sizeof(*c->trex_data)) | |
| 1837 return -1; | |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1838 trex = av_realloc(c->trex_data, (c->trex_count+1)*sizeof(*c->trex_data)); |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1839 if (!trex) |
| 3169 | 1840 return AVERROR(ENOMEM); |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1841 c->trex_data = trex; |
| 3169 | 1842 trex = &c->trex_data[c->trex_count++]; |
| 1843 get_byte(pb); /* version */ | |
| 1844 get_be24(pb); /* flags */ | |
| 1845 trex->track_id = get_be32(pb); | |
| 1846 trex->stsd_id = get_be32(pb); | |
| 1847 trex->duration = get_be32(pb); | |
| 1848 trex->size = get_be32(pb); | |
| 1849 trex->flags = get_be32(pb); | |
| 1850 return 0; | |
| 1851 } | |
| 1852 | |
| 4079 | 1853 static int mov_read_trun(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 3169 | 1854 { |
| 1855 MOVFragment *frag = &c->fragment; | |
| 4646 | 1856 AVStream *st = NULL; |
| 3190 | 1857 MOVStreamContext *sc; |
| 3169 | 1858 uint64_t offset; |
| 1859 int64_t dts; | |
| 1860 int data_offset = 0; | |
| 1861 unsigned entries, first_sample_flags = frag->flags; | |
| 1862 int flags, distance, i; | |
| 1863 | |
| 4646 | 1864 for (i = 0; i < c->fc->nb_streams; i++) { |
| 1865 if (c->fc->streams[i]->id == frag->track_id) { | |
| 1866 st = c->fc->streams[i]; | |
| 1867 break; | |
| 1868 } | |
| 1869 } | |
| 1870 if (!st) { | |
| 1871 av_log(c->fc, AV_LOG_ERROR, "could not find corresponding track id %d\n", frag->track_id); | |
| 3190 | 1872 return -1; |
| 4646 | 1873 } |
| 3190 | 1874 sc = st->priv_data; |
| 3169 | 1875 if (sc->pseudo_stream_id+1 != frag->stsd_id) |
| 1876 return 0; | |
| 1877 get_byte(pb); /* version */ | |
| 1878 flags = get_be24(pb); | |
| 1879 entries = get_be32(pb); | |
| 1880 dprintf(c->fc, "flags 0x%x entries %d\n", flags, entries); | |
| 1881 if (flags & 0x001) data_offset = get_be32(pb); | |
| 1882 if (flags & 0x004) first_sample_flags = get_be32(pb); | |
| 1883 if (flags & 0x800) { | |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1884 MOVStts *ctts_data; |
| 3169 | 1885 if ((uint64_t)entries+sc->ctts_count >= UINT_MAX/sizeof(*sc->ctts_data)) |
| 1886 return -1; | |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1887 ctts_data = av_realloc(sc->ctts_data, |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1888 (entries+sc->ctts_count)*sizeof(*sc->ctts_data)); |
|
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1889 if (!ctts_data) |
| 3169 | 1890 return AVERROR(ENOMEM); |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1891 sc->ctts_data = ctts_data; |
| 3169 | 1892 } |
| 1893 dts = st->duration; | |
| 1894 offset = frag->base_data_offset + data_offset; | |
| 1895 distance = 0; | |
| 1896 dprintf(c->fc, "first sample flags 0x%x\n", first_sample_flags); | |
| 1897 for (i = 0; i < entries; i++) { | |
| 1898 unsigned sample_size = frag->size; | |
| 1899 int sample_flags = i ? frag->flags : first_sample_flags; | |
| 1900 unsigned sample_duration = frag->duration; | |
| 1901 int keyframe; | |
| 1902 | |
| 1903 if (flags & 0x100) sample_duration = get_be32(pb); | |
| 1904 if (flags & 0x200) sample_size = get_be32(pb); | |
| 1905 if (flags & 0x400) sample_flags = get_be32(pb); | |
| 1906 if (flags & 0x800) { | |
| 1907 sc->ctts_data[sc->ctts_count].count = 1; | |
| 1908 sc->ctts_data[sc->ctts_count].duration = get_be32(pb); | |
| 1909 sc->ctts_count++; | |
| 1910 } | |
| 1911 if ((keyframe = st->codec->codec_type == CODEC_TYPE_AUDIO || | |
| 1912 (flags & 0x004 && !i && !sample_flags) || sample_flags & 0x2000000)) | |
| 1913 distance = 0; | |
| 1914 av_add_index_entry(st, offset, dts, sample_size, distance, | |
| 1915 keyframe ? AVINDEX_KEYFRAME : 0); | |
| 1916 dprintf(c->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", " | |
| 1917 "size %d, distance %d, keyframe %d\n", st->index, sc->sample_count+i, | |
| 1918 offset, dts, sample_size, distance, keyframe); | |
| 1919 distance++; | |
|
5015
7b260f4d453d
Remove time_rate, we cannot compute exactly when fragments are
bcoudurier
parents:
5002
diff
changeset
|
1920 dts += sample_duration; |
| 3169 | 1921 offset += sample_size; |
| 1922 } | |
| 1923 frag->moof_offset = offset; | |
| 1924 st->duration = dts; | |
| 1925 return 0; | |
| 1926 } | |
| 1927 | |
| 1845 | 1928 /* this atom should be null (from specs), but some buggy files put the 'moov' atom inside it... */ |
| 1929 /* like the files created with Adobe Premiere 5.0, for samples see */ | |
| 1930 /* http://graphics.tudelft.nl/~wouter/publications/soundtests/ */ | |
| 4079 | 1931 static int mov_read_wide(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 1932 { |
| 1933 int err; | |
| 1934 | |
| 1935 if (atom.size < 8) | |
| 1936 return 0; /* continue */ | |
| 1937 if (get_be32(pb) != 0) { /* 0 sized mdat atom... use the 'wide' atom size */ | |
| 1938 url_fskip(pb, atom.size - 4); | |
| 1939 return 0; | |
| 1940 } | |
| 1941 atom.type = get_le32(pb); | |
| 1942 atom.offset += 8; | |
| 1943 atom.size -= 8; | |
| 3253 | 1944 if (atom.type != MKTAG('m','d','a','t')) { |
| 1845 | 1945 url_fskip(pb, atom.size); |
| 1946 return 0; | |
| 1947 } | |
| 1948 err = mov_read_mdat(c, pb, atom); | |
| 1949 return err; | |
| 1950 } | |
| 1951 | |
| 4079 | 1952 static int mov_read_cmov(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 1953 { |
| 4206 | 1954 #if CONFIG_ZLIB |
| 1845 | 1955 ByteIOContext ctx; |
| 1956 uint8_t *cmov_data; | |
| 1957 uint8_t *moov_data; /* uncompressed data */ | |
| 1958 long cmov_len, moov_len; | |
|
3313
8e83e0b76105
free moov and cmov when error occurs, fix memleak, patch by Albert Astals Cid, aastals at tv-wan dot es
bcoudurier
parents:
3301
diff
changeset
|
1959 int ret = -1; |
| 1845 | 1960 |
| 1961 get_be32(pb); /* dcom atom */ | |
| 3253 | 1962 if (get_le32(pb) != MKTAG('d','c','o','m')) |
| 1845 | 1963 return -1; |
| 3253 | 1964 if (get_le32(pb) != MKTAG('z','l','i','b')) { |
| 4602 | 1965 av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !"); |
| 1845 | 1966 return -1; |
| 1967 } | |
| 1968 get_be32(pb); /* cmvd atom */ | |
| 3253 | 1969 if (get_le32(pb) != MKTAG('c','m','v','d')) |
| 1845 | 1970 return -1; |
| 1971 moov_len = get_be32(pb); /* uncompressed size */ | |
| 1972 cmov_len = atom.size - 6 * 4; | |
| 1973 | |
| 1974 cmov_data = av_malloc(cmov_len); | |
| 1975 if (!cmov_data) | |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1976 return AVERROR(ENOMEM); |
| 1845 | 1977 moov_data = av_malloc(moov_len); |
| 1978 if (!moov_data) { | |
| 1979 av_free(cmov_data); | |
|
4560
284c22e8f739
return AVERROR(ENOMEM) if alloc failed, set count after alloc, use variable when reallocing, based on patch by Netgem
bcoudurier
parents:
4487
diff
changeset
|
1980 return AVERROR(ENOMEM); |
| 1845 | 1981 } |
| 1982 get_buffer(pb, cmov_data, cmov_len); | |
| 1983 if(uncompress (moov_data, (uLongf *) &moov_len, (const Bytef *)cmov_data, cmov_len) != Z_OK) | |
|
3313
8e83e0b76105
free moov and cmov when error occurs, fix memleak, patch by Albert Astals Cid, aastals at tv-wan dot es
bcoudurier
parents:
3301
diff
changeset
|
1984 goto free_and_return; |
| 1845 | 1985 if(init_put_byte(&ctx, moov_data, moov_len, 0, NULL, NULL, NULL, NULL) != 0) |
|
3313
8e83e0b76105
free moov and cmov when error occurs, fix memleak, patch by Albert Astals Cid, aastals at tv-wan dot es
bcoudurier
parents:
3301
diff
changeset
|
1986 goto free_and_return; |
| 3253 | 1987 atom.type = MKTAG('m','o','o','v'); |
| 1845 | 1988 atom.offset = 0; |
| 1989 atom.size = moov_len; | |
| 1990 #ifdef DEBUG | |
| 1991 // { int fd = open("/tmp/uncompheader.mov", O_WRONLY | O_CREAT); write(fd, moov_data, moov_len); close(fd); } | |
| 1992 #endif | |
| 1993 ret = mov_read_default(c, &ctx, atom); | |
|
3313
8e83e0b76105
free moov and cmov when error occurs, fix memleak, patch by Albert Astals Cid, aastals at tv-wan dot es
bcoudurier
parents:
3301
diff
changeset
|
1994 free_and_return: |
| 1845 | 1995 av_free(moov_data); |
| 1996 av_free(cmov_data); | |
| 1997 return ret; | |
| 1998 #else | |
| 1999 av_log(c->fc, AV_LOG_ERROR, "this file requires zlib support compiled in\n"); | |
| 2000 return -1; | |
| 2001 #endif | |
| 2002 } | |
| 2003 | |
| 2004 /* edit list atom */ | |
| 4079 | 2005 static int mov_read_elst(MOVContext *c, ByteIOContext *pb, MOVAtom atom) |
| 1845 | 2006 { |
|
5164
99c46fe0b8a0
add one missing check for stream existence in read_elst, fix #1364
bcoudurier
parents:
5068
diff
changeset
|
2007 MOVStreamContext *sc; |
| 1845 | 2008 int i, edit_count; |
| 2009 | |
|
5164
99c46fe0b8a0
add one missing check for stream existence in read_elst, fix #1364
bcoudurier
parents:
5068
diff
changeset
|
2010 if (c->fc->nb_streams < 1) |
|
99c46fe0b8a0
add one missing check for stream existence in read_elst, fix #1364
bcoudurier
parents:
5068
diff
changeset
|
2011 return 0; |
|
99c46fe0b8a0
add one missing check for stream existence in read_elst, fix #1364
bcoudurier
parents:
5068
diff
changeset
|
2012 sc = c->fc->streams[c->fc->nb_streams-1]->priv_data; |
|
99c46fe0b8a0
add one missing check for stream existence in read_elst, fix #1364
bcoudurier
parents:
5068
diff
changeset
|
2013 |
| 1845 | 2014 get_byte(pb); /* version */ |
| 3145 | 2015 get_be24(pb); /* flags */ |
| 4410 | 2016 edit_count = get_be32(pb); /* entries */ |
| 1845 | 2017 |
|
5035
e743de5125cd
check atom size against edit_count to avoid very long loop
bcoudurier
parents:
5027
diff
changeset
|
2018 if((uint64_t)edit_count*12+8 > atom.size) |
|
e743de5125cd
check atom size against edit_count to avoid very long loop
bcoudurier
parents:
5027
diff
changeset
|
2019 return -1; |
|
e743de5125cd
check atom size against edit_count to avoid very long loop
bcoudurier
parents:
5027
diff
changeset
|
2020 |
| 1845 | 2021 for(i=0; i<edit_count; i++){ |
|
3038
db12cabbe337
warn use if edit list is not starting at 0, a/v desync might occur
bcoudurier
parents:
3037
diff
changeset
|
2022 int time; |
|
4742
0496cbd94374
Extend mov edit list support to work for a first padding entry with
reimar
parents:
4740
diff
changeset
|
2023 int duration = get_be32(pb); /* Track duration */ |
|
3038
db12cabbe337
warn use if edit list is not starting at 0, a/v desync might occur
bcoudurier
parents:
3037
diff
changeset
|
2024 time = get_be32(pb); /* Media time */ |
| 1845 | 2025 get_be32(pb); /* Media rate */ |
|
4742
0496cbd94374
Extend mov edit list support to work for a first padding entry with
reimar
parents:
4740
diff
changeset
|
2026 if (i == 0 && time >= -1) { |
|
0496cbd94374
Extend mov edit list support to work for a first padding entry with
reimar
parents:
4740
diff
changeset
|
2027 sc->time_offset = time != -1 ? time : -duration; |
| 4447 | 2028 } |
| 1845 | 2029 } |
|
4399
530e55405feb
offset dts according to edit list, hackish but works, based on patch by Reimar
bcoudurier
parents:
4369
diff
changeset
|
2030 |
|
530e55405feb
offset dts according to edit list, hackish but works, based on patch by Reimar
bcoudurier
parents:
4369
diff
changeset
|
2031 if(edit_count > 1) |
|
530e55405feb
offset dts according to edit list, hackish but works, based on patch by Reimar
bcoudurier
parents:
4369
diff
changeset
|
2032 av_log(c->fc, AV_LOG_WARNING, "multiple edit list entries, " |
|
530e55405feb
offset dts according to edit list, hackish but works, based on patch by Reimar
bcoudurier
parents:
4369
diff
changeset
|
2033 "a/v desync might occur, patch welcome\n"); |
|
530e55405feb
offset dts according to edit list, hackish but works, based on patch by Reimar
bcoudurier
parents:
4369
diff
changeset
|
2034 |
|
4429
7ed870203bfe
fix compilation with DEBUG defined, field does not exist anymore
bcoudurier
parents:
4412
diff
changeset
|
2035 dprintf(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, edit_count); |
| 1845 | 2036 return 0; |
| 2037 } | |
| 2038 | |
| 2039 static const MOVParseTableEntry mov_default_parse_table[] = { | |
|
3496
cdbf302a3c00
chinese avs demuxing support, demux AVSFileFormat.mp4
bcoudurier
parents:
3487
diff
changeset
|
2040 { MKTAG('a','v','s','s'), mov_read_extradata }, |
| 3253 | 2041 { MKTAG('c','o','6','4'), mov_read_stco }, |
| 2042 { MKTAG('c','t','t','s'), mov_read_ctts }, /* composition time to sample */ | |
| 2043 { MKTAG('d','i','n','f'), mov_read_default }, | |
| 2044 { MKTAG('d','r','e','f'), mov_read_dref }, | |
| 2045 { MKTAG('e','d','t','s'), mov_read_default }, | |
| 2046 { MKTAG('e','l','s','t'), mov_read_elst }, | |
| 2047 { MKTAG('e','n','d','a'), mov_read_enda }, | |
| 2048 { MKTAG('f','i','e','l'), mov_read_extradata }, | |
| 2049 { MKTAG('f','t','y','p'), mov_read_ftyp }, | |
| 2050 { MKTAG('g','l','b','l'), mov_read_glbl }, | |
| 2051 { MKTAG('h','d','l','r'), mov_read_hdlr }, | |
|
4033
836e25632f0b
read itunes metadata, code based on Reimar's patch
bcoudurier
parents:
4028
diff
changeset
|
2052 { MKTAG('i','l','s','t'), mov_read_ilst }, |
| 3253 | 2053 { MKTAG('j','p','2','h'), mov_read_extradata }, |
| 2054 { MKTAG('m','d','a','t'), mov_read_mdat }, | |
| 2055 { MKTAG('m','d','h','d'), mov_read_mdhd }, | |
| 2056 { MKTAG('m','d','i','a'), mov_read_default }, | |
|
4033
836e25632f0b
read itunes metadata, code based on Reimar's patch
bcoudurier
parents:
4028
diff
changeset
|
2057 { MKTAG('m','e','t','a'), mov_read_meta }, |
| 3253 | 2058 { MKTAG('m','i','n','f'), mov_read_default }, |
| 2059 { MKTAG('m','o','o','f'), mov_read_moof }, | |
| 2060 { MKTAG('m','o','o','v'), mov_read_moov }, | |
| 2061 { MKTAG('m','v','e','x'), mov_read_default }, | |
| 2062 { MKTAG('m','v','h','d'), mov_read_mvhd }, | |
| 2063 { MKTAG('S','M','I',' '), mov_read_smi }, /* Sorenson extension ??? */ | |
| 2064 { MKTAG('a','l','a','c'), mov_read_extradata }, /* alac specific atom */ | |
| 2065 { MKTAG('a','v','c','C'), mov_read_glbl }, | |
| 4080 | 2066 { MKTAG('p','a','s','p'), mov_read_pasp }, |
| 3253 | 2067 { MKTAG('s','t','b','l'), mov_read_default }, |
| 2068 { MKTAG('s','t','c','o'), mov_read_stco }, | |
|
4933
fc6288f47467
parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gop
bcoudurier
parents:
4931
diff
changeset
|
2069 { MKTAG('s','t','p','s'), mov_read_stps }, |
| 3253 | 2070 { MKTAG('s','t','s','c'), mov_read_stsc }, |
| 2071 { MKTAG('s','t','s','d'), mov_read_stsd }, /* sample description */ | |
| 2072 { MKTAG('s','t','s','s'), mov_read_stss }, /* sync sample */ | |
| 2073 { MKTAG('s','t','s','z'), mov_read_stsz }, /* sample size */ | |
| 2074 { MKTAG('s','t','t','s'), mov_read_stts }, | |
| 4739 | 2075 { MKTAG('s','t','z','2'), mov_read_stsz }, /* compact sample size */ |
| 3253 | 2076 { MKTAG('t','k','h','d'), mov_read_tkhd }, /* track header */ |
| 2077 { MKTAG('t','f','h','d'), mov_read_tfhd }, /* track fragment header */ | |
| 2078 { MKTAG('t','r','a','k'), mov_read_trak }, | |
| 2079 { MKTAG('t','r','a','f'), mov_read_default }, | |
| 2080 { MKTAG('t','r','e','x'), mov_read_trex }, | |
| 2081 { MKTAG('t','r','u','n'), mov_read_trun }, | |
| 4028 | 2082 { MKTAG('u','d','t','a'), mov_read_default }, |
| 3253 | 2083 { MKTAG('w','a','v','e'), mov_read_wave }, |
| 2084 { MKTAG('e','s','d','s'), mov_read_esds }, | |
| 2085 { MKTAG('w','i','d','e'), mov_read_wide }, /* place holder */ | |
| 2086 { MKTAG('c','m','o','v'), mov_read_cmov }, | |
| 2826 | 2087 { 0, NULL } |
| 1845 | 2088 }; |
| 2089 | |
| 2090 static int mov_probe(AVProbeData *p) | |
| 2091 { | |
| 2092 unsigned int offset; | |
| 2093 uint32_t tag; | |
| 2094 int score = 0; | |
| 2095 | |
| 2096 /* check file header */ | |
| 2097 offset = 0; | |
| 2098 for(;;) { | |
| 2099 /* ignore invalid offset */ | |
| 2100 if ((offset + 8) > (unsigned int)p->buf_size) | |
| 2101 return score; | |
| 2102 tag = AV_RL32(p->buf + offset + 4); | |
| 2103 switch(tag) { | |
| 2104 /* check for obvious tags */ | |
| 3253 | 2105 case MKTAG('j','P',' ',' '): /* jpeg 2000 signature */ |
| 2106 case MKTAG('m','o','o','v'): | |
| 2107 case MKTAG('m','d','a','t'): | |
| 2108 case MKTAG('p','n','o','t'): /* detect movs with preview pics like ew.mov and april.mov */ | |
| 2109 case MKTAG('u','d','t','a'): /* Packet Video PVAuthor adds this and a lot of more junk */ | |
|
3587
7d5480d3989d
Return max score when ftyp atom is encountered.
bcoudurier
parents:
3496
diff
changeset
|
2110 case MKTAG('f','t','y','p'): |
| 1845 | 2111 return AVPROBE_SCORE_MAX; |
| 2112 /* those are more common words, so rate then a bit less */ | |
| 3253 | 2113 case MKTAG('e','d','i','w'): /* xdcam files have reverted first tags */ |
| 2114 case MKTAG('w','i','d','e'): | |
| 2115 case MKTAG('f','r','e','e'): | |
| 2116 case MKTAG('j','u','n','k'): | |
| 2117 case MKTAG('p','i','c','t'): | |
| 1845 | 2118 return AVPROBE_SCORE_MAX - 5; |
| 3588 | 2119 case MKTAG(0x82,0x82,0x7f,0x7d): |
| 3253 | 2120 case MKTAG('s','k','i','p'): |
| 2121 case MKTAG('u','u','i','d'): | |
| 2122 case MKTAG('p','r','f','l'): | |
| 1845 | 2123 offset = AV_RB32(p->buf+offset) + offset; |
| 2124 /* if we only find those cause probedata is too small at least rate them */ | |
| 2125 score = AVPROBE_SCORE_MAX - 50; | |
| 2126 break; | |
| 2127 default: | |
| 2128 /* unrecognized tag */ | |
| 2129 return score; | |
| 2130 } | |
| 2131 } | |
| 2132 return score; | |
| 2133 } | |
| 2134 | |
| 2135 static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap) | |
| 2136 { | |
| 2006 | 2137 MOVContext *mov = s->priv_data; |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2730
diff
changeset
|
2138 ByteIOContext *pb = s->pb; |
| 3155 | 2139 int err; |
| 4079 | 2140 MOVAtom atom = { 0, 0, 0 }; |
| 1845 | 2141 |
| 2142 mov->fc = s; | |
| 3167 | 2143 /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */ |
| 2144 if(!url_is_streamed(pb)) | |
| 1845 | 2145 atom.size = url_fsize(pb); |
| 2146 else | |
| 2026 | 2147 atom.size = INT64_MAX; |
| 1845 | 2148 |
| 2149 /* check MOV header */ | |
| 3204 | 2150 if ((err = mov_read_default(mov, pb, atom)) < 0) { |
| 2151 av_log(s, AV_LOG_ERROR, "error reading header: %d\n", err); | |
| 2152 return err; | |
| 2153 } | |
| 2154 if (!mov->found_moov) { | |
| 2155 av_log(s, AV_LOG_ERROR, "moov atom not found\n"); | |
| 1845 | 2156 return -1; |
| 2157 } | |
| 3205 | 2158 dprintf(mov->fc, "on_parse_exit_offset=%lld\n", url_ftell(pb)); |
| 1845 | 2159 |
| 2160 return 0; | |
| 2161 } | |
| 2162 | |
|
5063
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2163 static AVIndexEntry *mov_find_next_sample(AVFormatContext *s, AVStream **st) |
| 1845 | 2164 { |
|
5063
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2165 AVIndexEntry *sample = NULL; |
| 1845 | 2166 int64_t best_dts = INT64_MAX; |
|
5063
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2167 int i; |
| 2823 | 2168 for (i = 0; i < s->nb_streams; i++) { |
|
5061
5ff6a72c9686
In mov_read_packet remember the AVStream we want to demux next instead of the
reimar
parents:
5060
diff
changeset
|
2169 AVStream *avst = s->streams[i]; |
|
5ff6a72c9686
In mov_read_packet remember the AVStream we want to demux next instead of the
reimar
parents:
5060
diff
changeset
|
2170 MOVStreamContext *msc = avst->priv_data; |
|
5064
1ed8004a3ef5
mov demuxer: Track the current position also for streams that have AVDISCARD_ALL set.
reimar
parents:
5063
diff
changeset
|
2171 if (msc->pb && msc->current_sample < avst->nb_index_entries) { |
|
5061
5ff6a72c9686
In mov_read_packet remember the AVStream we want to demux next instead of the
reimar
parents:
5060
diff
changeset
|
2172 AVIndexEntry *current_sample = &avst->index_entries[msc->current_sample]; |
|
5015
7b260f4d453d
Remove time_rate, we cannot compute exactly when fragments are
bcoudurier
parents:
5002
diff
changeset
|
2173 int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale); |
| 2030 | 2174 dprintf(s, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts); |
| 2817 | 2175 if (!sample || (url_is_streamed(s->pb) && current_sample->pos < sample->pos) || |
| 2176 (!url_is_streamed(s->pb) && | |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
2177 ((msc->pb != s->pb && dts < best_dts) || (msc->pb == s->pb && |
| 2817 | 2178 ((FFABS(best_dts - dts) <= AV_TIME_BASE && current_sample->pos < sample->pos) || |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
2179 (FFABS(best_dts - dts) > AV_TIME_BASE && dts < best_dts)))))) { |
| 1845 | 2180 sample = current_sample; |
| 2181 best_dts = dts; | |
|
5063
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2182 *st = avst; |
| 1845 | 2183 } |
| 2184 } | |
| 2185 } | |
|
5063
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2186 return sample; |
|
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2187 } |
|
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2188 |
|
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2189 static int mov_read_packet(AVFormatContext *s, AVPacket *pkt) |
|
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2190 { |
|
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2191 MOVContext *mov = s->priv_data; |
|
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2192 MOVStreamContext *sc; |
|
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2193 AVIndexEntry *sample; |
|
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2194 AVStream *st = NULL; |
|
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2195 int ret; |
|
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2196 retry: |
|
dcaea581e24d
mov_read_packet: extract code that searches for the stream/sample to demux next
reimar
parents:
5062
diff
changeset
|
2197 sample = mov_find_next_sample(s, &st); |
| 3170 | 2198 if (!sample) { |
| 2199 mov->found_mdat = 0; | |
| 2200 if (!url_is_streamed(s->pb) || | |
| 4079 | 2201 mov_read_default(mov, s->pb, (MOVAtom){ 0, 0, INT64_MAX }) < 0 || |
| 3170 | 2202 url_feof(s->pb)) |
| 4972 | 2203 return AVERROR_EOF; |
| 3170 | 2204 dprintf(s, "read fragments, offset 0x%llx\n", url_ftell(s->pb)); |
| 2205 goto retry; | |
| 2206 } | |
|
5061
5ff6a72c9686
In mov_read_packet remember the AVStream we want to demux next instead of the
reimar
parents:
5060
diff
changeset
|
2207 sc = st->priv_data; |
| 1845 | 2208 /* must be done just before reading, to avoid infinite loop on sample */ |
| 2209 sc->current_sample++; | |
|
5064
1ed8004a3ef5
mov demuxer: Track the current position also for streams that have AVDISCARD_ALL set.
reimar
parents:
5063
diff
changeset
|
2210 |
|
1ed8004a3ef5
mov demuxer: Track the current position also for streams that have AVDISCARD_ALL set.
reimar
parents:
5063
diff
changeset
|
2211 if (st->discard != AVDISCARD_ALL) { |
| 5065 | 2212 if (url_fseek(sc->pb, sample->pos, SEEK_SET) != sample->pos) { |
| 2213 av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n", | |
| 2214 sc->ffindex, sample->pos); | |
| 2215 return -1; | |
| 2216 } | |
| 2217 ret = av_get_packet(sc->pb, pkt, sample->size); | |
|
5062
8d81bf3822ac
mov_read_packet: if dv_get_packet fails, return exactly its error value
reimar
parents:
5061
diff
changeset
|
2218 if (ret < 0) |
|
8d81bf3822ac
mov_read_packet: if dv_get_packet fails, return exactly its error value
reimar
parents:
5061
diff
changeset
|
2219 return ret; |
| 5065 | 2220 #if CONFIG_DV_DEMUXER |
| 2221 if (mov->dv_demux && sc->dv_audio_container) { | |
| 2222 dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size); | |
| 2223 av_free(pkt->data); | |
| 2224 pkt->size = 0; | |
| 2225 ret = dv_get_packet(mov->dv_demux, pkt); | |
| 2226 if (ret < 0) | |
| 2227 return ret; | |
| 2228 } | |
| 1845 | 2229 #endif |
|
5064
1ed8004a3ef5
mov demuxer: Track the current position also for streams that have AVDISCARD_ALL set.
reimar
parents:
5063
diff
changeset
|
2230 } |
|
1ed8004a3ef5
mov demuxer: Track the current position also for streams that have AVDISCARD_ALL set.
reimar
parents:
5063
diff
changeset
|
2231 |
| 1845 | 2232 pkt->stream_index = sc->ffindex; |
| 2233 pkt->dts = sample->timestamp; | |
| 2234 if (sc->ctts_data) { | |
|
5015
7b260f4d453d
Remove time_rate, we cannot compute exactly when fragments are
bcoudurier
parents:
5002
diff
changeset
|
2235 pkt->pts = pkt->dts + sc->dts_shift + sc->ctts_data[sc->ctts_index].duration; |
| 1845 | 2236 /* update ctts context */ |
| 4411 | 2237 sc->ctts_sample++; |
| 2238 if (sc->ctts_index < sc->ctts_count && | |
| 2239 sc->ctts_data[sc->ctts_index].count == sc->ctts_sample) { | |
| 2240 sc->ctts_index++; | |
| 2241 sc->ctts_sample = 0; | |
| 1845 | 2242 } |
|
3956
8bdecea89071
support negative ctts in some way, unset wrong dts
bcoudurier
parents:
3935
diff
changeset
|
2243 if (sc->wrong_dts) |
|
8bdecea89071
support negative ctts in some way, unset wrong dts
bcoudurier
parents:
3935
diff
changeset
|
2244 pkt->dts = AV_NOPTS_VALUE; |
| 1845 | 2245 } else { |
|
4717
ee2dd1b3afc3
do not modify sample_count, check against index entries
bcoudurier
parents:
4690
diff
changeset
|
2246 int64_t next_dts = (sc->current_sample < st->nb_index_entries) ? |
| 3267 | 2247 st->index_entries[sc->current_sample].timestamp : st->duration; |
| 2248 pkt->duration = next_dts - pkt->dts; | |
| 1845 | 2249 pkt->pts = pkt->dts; |
| 2250 } | |
|
5064
1ed8004a3ef5
mov demuxer: Track the current position also for streams that have AVDISCARD_ALL set.
reimar
parents:
5063
diff
changeset
|
2251 if (st->discard == AVDISCARD_ALL) |
|
1ed8004a3ef5
mov demuxer: Track the current position also for streams that have AVDISCARD_ALL set.
reimar
parents:
5063
diff
changeset
|
2252 goto retry; |
| 1845 | 2253 pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? PKT_FLAG_KEY : 0; |
| 2254 pkt->pos = sample->pos; | |
| 2902 | 2255 dprintf(s, "stream %d, pts %"PRId64", dts %"PRId64", pos 0x%"PRIx64", duration %d\n", |
| 2256 pkt->stream_index, pkt->pts, pkt->dts, pkt->pos, pkt->duration); | |
| 1845 | 2257 return 0; |
| 2258 } | |
| 2259 | |
| 5371 | 2260 static int mov_seek_stream(AVFormatContext *s, AVStream *st, int64_t timestamp, int flags) |
| 1845 | 2261 { |
| 2262 MOVStreamContext *sc = st->priv_data; | |
| 2263 int sample, time_sample; | |
| 2264 int i; | |
| 2265 | |
| 2266 sample = av_index_search_timestamp(st, timestamp, flags); | |
| 5371 | 2267 dprintf(s, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample); |
| 1845 | 2268 if (sample < 0) /* not sure what to do */ |
| 2269 return -1; | |
| 2270 sc->current_sample = sample; | |
| 5371 | 2271 dprintf(s, "stream %d, found sample %d\n", st->index, sc->current_sample); |
| 1845 | 2272 /* adjust ctts index */ |
| 2273 if (sc->ctts_data) { | |
| 2274 time_sample = 0; | |
| 2275 for (i = 0; i < sc->ctts_count; i++) { | |
|
2083
2c3887f02739
fix ctts index computation when seeking, check must be done against next ctts sample, thanks to Uoti
bcoudurier
parents:
2046
diff
changeset
|
2276 int next = time_sample + sc->ctts_data[i].count; |
|
2c3887f02739
fix ctts index computation when seeking, check must be done against next ctts sample, thanks to Uoti
bcoudurier
parents:
2046
diff
changeset
|
2277 if (next > sc->current_sample) { |
| 4411 | 2278 sc->ctts_index = i; |
| 2279 sc->ctts_sample = sc->current_sample - time_sample; | |
| 1845 | 2280 break; |
| 2281 } | |
|
2083
2c3887f02739
fix ctts index computation when seeking, check must be done against next ctts sample, thanks to Uoti
bcoudurier
parents:
2046
diff
changeset
|
2282 time_sample = next; |
| 1845 | 2283 } |
| 2284 } | |
| 2285 return sample; | |
| 2286 } | |
| 2287 | |
| 2288 static int mov_read_seek(AVFormatContext *s, int stream_index, int64_t sample_time, int flags) | |
| 2289 { | |
| 2290 AVStream *st; | |
| 2291 int64_t seek_timestamp, timestamp; | |
| 2292 int sample; | |
| 2293 int i; | |
| 2294 | |
| 2295 if (stream_index >= s->nb_streams) | |
| 2296 return -1; | |
| 4290 | 2297 if (sample_time < 0) |
| 2298 sample_time = 0; | |
| 1845 | 2299 |
| 2300 st = s->streams[stream_index]; | |
| 5371 | 2301 sample = mov_seek_stream(s, st, sample_time, flags); |
| 1845 | 2302 if (sample < 0) |
| 2303 return -1; | |
| 2304 | |
| 2305 /* adjust seek timestamp to found sample timestamp */ | |
| 2306 seek_timestamp = st->index_entries[sample].timestamp; | |
| 2307 | |
| 2308 for (i = 0; i < s->nb_streams; i++) { | |
| 2309 st = s->streams[i]; | |
|
5064
1ed8004a3ef5
mov demuxer: Track the current position also for streams that have AVDISCARD_ALL set.
reimar
parents:
5063
diff
changeset
|
2310 if (stream_index == i) |
| 1845 | 2311 continue; |
| 2312 | |
| 2313 timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base); | |
| 5371 | 2314 mov_seek_stream(s, st, timestamp, flags); |
| 1845 | 2315 } |
| 2316 return 0; | |
| 2317 } | |
| 2318 | |
| 2319 static int mov_read_close(AVFormatContext *s) | |
| 2320 { | |
|
4718
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
2321 MOVContext *mov = s->priv_data; |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
2322 int i, j; |
|
4718
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
2323 |
|
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
2324 for (i = 0; i < s->nb_streams; i++) { |
| 4719 | 2325 AVStream *st = s->streams[i]; |
| 2326 MOVStreamContext *sc = st->priv_data; | |
|
4718
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
2327 |
|
2824
ecbfaa8712a1
do not retain useless pointers to avstream priv_data, use it directly
bcoudurier
parents:
2823
diff
changeset
|
2328 av_freep(&sc->ctts_data); |
|
5369
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
2329 for (j = 0; j < sc->drefs_count; j++) { |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
2330 av_freep(&sc->drefs[j].path); |
|
5369
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
2331 av_freep(&sc->drefs[j].dir); |
|
347123a18feb
Search relative path according to alias record when opening mov reference files.
bcoudurier
parents:
5364
diff
changeset
|
2332 } |
|
3085
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
2333 av_freep(&sc->drefs); |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
2334 if (sc->pb && sc->pb != s->pb) |
|
bae59276377f
support mov reference files, ref.mov/ref.m2v/ref.wav and detect BrianCox.mov
bcoudurier
parents:
3084
diff
changeset
|
2335 url_fclose(sc->pb); |
| 4719 | 2336 |
| 2337 av_freep(&st->codec->palctrl); | |
| 2084 | 2338 } |
|
4718
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
2339 |
|
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
2340 if (mov->dv_demux) { |
|
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
2341 for(i = 0; i < mov->dv_fctx->nb_streams; i++) { |
| 1845 | 2342 av_freep(&mov->dv_fctx->streams[i]->codec); |
| 2343 av_freep(&mov->dv_fctx->streams[i]); | |
| 2344 } | |
| 2345 av_freep(&mov->dv_fctx); | |
| 2346 av_freep(&mov->dv_demux); | |
| 2347 } | |
|
4718
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
2348 |
| 3169 | 2349 av_freep(&mov->trex_data); |
|
4718
7bf091a4b6d9
cosmetics, add some whitespaces and empty lines
bcoudurier
parents:
4717
diff
changeset
|
2350 |
| 1845 | 2351 return 0; |
| 2352 } | |
| 2353 | |
| 2354 AVInputFormat mov_demuxer = { | |
| 2355 "mov,mp4,m4a,3gp,3g2,mj2", | |
|
3424
7a0230981402
Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.
diego
parents:
3362
diff
changeset
|
2356 NULL_IF_CONFIG_SMALL("QuickTime/MPEG-4/Motion JPEG 2000 format"), |
| 1845 | 2357 sizeof(MOVContext), |
| 2358 mov_probe, | |
| 2359 mov_read_header, | |
| 2360 mov_read_packet, | |
| 2361 mov_read_close, | |
| 2362 mov_read_seek, | |
| 2363 }; |
