Mercurial > libavformat.hg
annotate avidec.c @ 988:fb8b2bb9f716 libavformat
fixing demuxing of minorityreport.AVI
| author | michael |
|---|---|
| date | Thu, 02 Mar 2006 14:27:41 +0000 |
| parents | b644fe79f7a2 |
| children | e4eb95d550ca |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2 * AVI decoder. | |
| 3 * Copyright (c) 2001 Fabrice Bellard. | |
| 4 * | |
| 5 * This library is free software; you can redistribute it and/or | |
| 6 * modify it under the terms of the GNU Lesser General Public | |
| 7 * License as published by the Free Software Foundation; either | |
| 8 * version 2 of the License, or (at your option) any later version. | |
| 9 * | |
| 10 * This library is distributed in the hope that it will be useful, | |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 13 * Lesser General Public License for more details. | |
| 14 * | |
| 15 * You should have received a copy of the GNU Lesser General Public | |
| 16 * License along with this library; if not, write to the Free Software | |
|
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
887
diff
changeset
|
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 0 | 18 */ |
| 19 #include "avformat.h" | |
| 20 #include "avi.h" | |
|
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
227
diff
changeset
|
21 #include "dv.h" |
| 0 | 22 |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
23 #undef NDEBUG |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
24 #include <assert.h> |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
25 |
| 0 | 26 //#define DEBUG |
| 311 | 27 //#define DEBUG_SEEK |
| 0 | 28 |
| 311 | 29 typedef struct AVIStream { |
| 701 | 30 int64_t frame_offset; /* current frame (video) or byte (audio) counter |
| 311 | 31 (used to compute the pts) */ |
| 701 | 32 int remaining; |
| 33 int packet_size; | |
| 34 | |
| 311 | 35 int scale; |
| 885 | 36 int rate; |
| 982 | 37 int sample_size; /* size of one sample (or packet) (in the rate/scale sense) in bytes */ |
| 457 | 38 int start; |
| 885 | 39 |
| 977 | 40 int64_t cum_len; /* temporary storage (used during seek) */ |
| 885 | 41 |
| 519 | 42 int prefix; ///< normally 'd'<<8 + 'c' or 'w'<<8 + 'b' |
| 43 int prefix_count; | |
| 311 | 44 } AVIStream; |
| 0 | 45 |
| 46 typedef struct { | |
|
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
227
diff
changeset
|
47 int64_t riff_end; |
|
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
227
diff
changeset
|
48 int64_t movi_end; |
| 0 | 49 offset_t movi_list; |
| 311 | 50 int index_loaded; |
| 510 | 51 int is_odml; |
| 701 | 52 int non_interleaved; |
| 53 int stream_index; | |
|
296
252946de6d3f
* DV demuxer is now capable of decoding auxilary audio stream. So,
romansh
parents:
262
diff
changeset
|
54 DVDemuxContext* dv_demux; |
| 0 | 55 } AVIContext; |
| 56 | |
|
469
6a4cc19e8d9b
exporting keyframe flags, fixes keyframe stuff with streamcopy
michael
parents:
466
diff
changeset
|
57 static int avi_load_index(AVFormatContext *s); |
| 979 | 58 static int guess_ni_flag(AVFormatContext *s); |
|
469
6a4cc19e8d9b
exporting keyframe flags, fixes keyframe stuff with streamcopy
michael
parents:
466
diff
changeset
|
59 |
| 0 | 60 #ifdef DEBUG |
| 61 static void print_tag(const char *str, unsigned int tag, int size) | |
| 62 { | |
| 63 printf("%s: tag=%c%c%c%c size=0x%x\n", | |
| 64 str, tag & 0xff, | |
| 65 (tag >> 8) & 0xff, | |
| 66 (tag >> 16) & 0xff, | |
| 67 (tag >> 24) & 0xff, | |
| 68 size); | |
| 69 } | |
| 70 #endif | |
| 71 | |
|
92
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
72 static int get_riff(AVIContext *avi, ByteIOContext *pb) |
|
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
73 { |
| 885 | 74 uint32_t tag; |
|
92
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
75 /* check RIFF header */ |
|
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
76 tag = get_le32(pb); |
|
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
77 |
|
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
78 if (tag != MKTAG('R', 'I', 'F', 'F')) |
|
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
79 return -1; |
|
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
80 avi->riff_end = get_le32(pb); /* RIFF chunk size */ |
|
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
81 avi->riff_end += url_ftell(pb); /* RIFF chunk end */ |
|
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
82 tag = get_le32(pb); |
|
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
83 if (tag != MKTAG('A', 'V', 'I', ' ') && tag != MKTAG('A', 'V', 'I', 'X')) |
|
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
84 return -1; |
| 885 | 85 |
|
92
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
86 return 0; |
|
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
87 } |
|
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
88 |
| 977 | 89 static int read_braindead_odml_indx(AVFormatContext *s, int frame_num){ |
|
984
b644fe79f7a2
fixing av sync in videotest.avi (index doesnt match chunks, header doesnt indicate that)
michael
parents:
983
diff
changeset
|
90 AVIContext *avi = s->priv_data; |
| 977 | 91 ByteIOContext *pb = &s->pb; |
| 92 int longs_pre_entry= get_le16(pb); | |
| 93 int index_sub_type = get_byte(pb); | |
| 94 int index_type = get_byte(pb); | |
| 95 int entries_in_use = get_le32(pb); | |
| 96 int chunk_id = get_le32(pb); | |
| 97 int64_t base = get_le64(pb); | |
| 98 int stream_id= 10*((chunk_id&0xFF) - '0') + (((chunk_id>>8)&0xFF) - '0'); | |
| 99 AVStream *st; | |
| 100 AVIStream *ast; | |
| 101 int i; | |
|
984
b644fe79f7a2
fixing av sync in videotest.avi (index doesnt match chunks, header doesnt indicate that)
michael
parents:
983
diff
changeset
|
102 int64_t last_pos= -1; |
| 977 | 103 |
| 104 // av_log(s, AV_LOG_ERROR, "longs_pre_entry:%d index_type:%d entries_in_use:%d chunk_id:%X base:%Ld\n", | |
| 105 // longs_pre_entry,index_type, entries_in_use, chunk_id, base); | |
| 106 | |
| 107 if(stream_id > s->nb_streams || stream_id < 0) | |
| 108 return -1; | |
| 109 st= s->streams[stream_id]; | |
| 110 ast = st->priv_data; | |
| 111 | |
| 112 if(index_sub_type) | |
| 113 return -1; | |
| 114 | |
| 115 get_le32(pb); | |
| 116 | |
| 117 if(index_type && longs_pre_entry != 2) | |
| 118 return -1; | |
| 119 if(index_type>1) | |
| 120 return -1; | |
| 121 | |
| 122 for(i=0; i<entries_in_use; i++){ | |
| 123 if(index_type){ | |
| 979 | 124 int64_t pos= get_le32(pb) + base - 8; |
| 977 | 125 int len = get_le32(pb); |
| 979 | 126 int key= len >= 0; |
| 127 len &= 0x7FFFFFFF; | |
| 977 | 128 |
| 979 | 129 //av_log(s, AV_LOG_ERROR, "pos:%Ld, len:%X\n", pos, len); |
|
984
b644fe79f7a2
fixing av sync in videotest.avi (index doesnt match chunks, header doesnt indicate that)
michael
parents:
983
diff
changeset
|
130 if(last_pos == pos || pos == base - 8) |
|
b644fe79f7a2
fixing av sync in videotest.avi (index doesnt match chunks, header doesnt indicate that)
michael
parents:
983
diff
changeset
|
131 avi->non_interleaved= 1; |
|
b644fe79f7a2
fixing av sync in videotest.avi (index doesnt match chunks, header doesnt indicate that)
michael
parents:
983
diff
changeset
|
132 else |
|
b644fe79f7a2
fixing av sync in videotest.avi (index doesnt match chunks, header doesnt indicate that)
michael
parents:
983
diff
changeset
|
133 av_add_index_entry(st, pos, ast->cum_len, len, 0, key ? AVINDEX_KEYFRAME : 0); |
| 977 | 134 |
| 135 if(ast->sample_size) | |
| 136 ast->cum_len += len / ast->sample_size; | |
| 137 else | |
| 138 ast->cum_len ++; | |
|
984
b644fe79f7a2
fixing av sync in videotest.avi (index doesnt match chunks, header doesnt indicate that)
michael
parents:
983
diff
changeset
|
139 last_pos= pos; |
| 977 | 140 }else{ |
| 141 int64_t offset= get_le64(pb); | |
| 142 int size = get_le32(pb); | |
| 143 int duration = get_le32(pb); | |
| 144 int64_t pos= url_ftell(pb); | |
| 145 | |
| 146 url_fseek(pb, offset+8, SEEK_SET); | |
| 147 read_braindead_odml_indx(s, frame_num); | |
| 148 frame_num += duration; | |
| 149 | |
| 150 url_fseek(pb, pos, SEEK_SET); | |
| 151 } | |
| 152 } | |
| 153 return 0; | |
| 154 } | |
| 155 | |
|
983
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
156 static void clean_index(AVFormatContext *s){ |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
157 int i, j; |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
158 |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
159 for(i=0; i<s->nb_streams; i++){ |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
160 AVStream *st = s->streams[i]; |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
161 AVIStream *ast = st->priv_data; |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
162 int n= st->nb_index_entries; |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
163 int max= ast->sample_size; |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
164 int64_t pos, size, ts; |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
165 |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
166 if(n != 1 || ast->sample_size==0) |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
167 continue; |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
168 |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
169 while(max < 1024) max+=max; |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
170 |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
171 pos= st->index_entries[0].pos; |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
172 size= st->index_entries[0].size; |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
173 ts= st->index_entries[0].timestamp; |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
174 |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
175 for(j=0; j<size; j+=max){ |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
176 av_add_index_entry(st, pos+j, ts + j/ast->sample_size, FFMIN(max, size-j), 0, AVINDEX_KEYFRAME); |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
177 } |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
178 } |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
179 } |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
180 |
| 0 | 181 static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap) |
| 182 { | |
| 183 AVIContext *avi = s->priv_data; | |
| 184 ByteIOContext *pb = &s->pb; | |
|
98
cae6ddfadf51
AVI type 1 support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
92
diff
changeset
|
185 uint32_t tag, tag1, handler; |
| 703 | 186 int codec_type, stream_index, frame_period, bit_rate; |
|
188
6c9d6422a2f6
update duration and start_time - add av_new_stream() usage
bellard
parents:
149
diff
changeset
|
187 unsigned int size, nb_frames; |
|
6c9d6422a2f6
update duration and start_time - add av_new_stream() usage
bellard
parents:
149
diff
changeset
|
188 int i, n; |
| 0 | 189 AVStream *st; |
| 311 | 190 AVIStream *ast; |
| 227 | 191 int xan_video = 0; /* hack to support Xan A/V */ |
| 0 | 192 |
| 701 | 193 avi->stream_index= -1; |
| 885 | 194 |
|
92
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
195 if (get_riff(avi, pb) < 0) |
| 0 | 196 return -1; |
| 197 | |
| 198 /* first list tag */ | |
| 199 stream_index = -1; | |
| 200 codec_type = -1; | |
| 201 frame_period = 0; | |
| 202 for(;;) { | |
| 203 if (url_feof(pb)) | |
| 204 goto fail; | |
| 205 tag = get_le32(pb); | |
| 206 size = get_le32(pb); | |
| 207 #ifdef DEBUG | |
| 208 print_tag("tag", tag, size); | |
| 209 #endif | |
| 210 | |
| 211 switch(tag) { | |
| 212 case MKTAG('L', 'I', 'S', 'T'): | |
| 213 /* ignored, except when start of video packets */ | |
| 214 tag1 = get_le32(pb); | |
| 215 #ifdef DEBUG | |
| 216 print_tag("list", tag1, 0); | |
| 217 #endif | |
| 218 if (tag1 == MKTAG('m', 'o', 'v', 'i')) { | |
| 311 | 219 avi->movi_list = url_ftell(pb) - 4; |
| 495 | 220 if(size) avi->movi_end = avi->movi_list + size; |
|
764
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
743
diff
changeset
|
221 else avi->movi_end = url_fsize(pb); |
| 0 | 222 #ifdef DEBUG |
| 223 printf("movi end=%Lx\n", avi->movi_end); | |
| 224 #endif | |
| 225 goto end_of_header; | |
| 226 } | |
| 227 break; | |
| 510 | 228 case MKTAG('d', 'm', 'l', 'h'): |
| 887 | 229 avi->is_odml = 1; |
| 230 url_fskip(pb, size + (size & 1)); | |
| 231 break; | |
| 0 | 232 case MKTAG('a', 'v', 'i', 'h'): |
| 887 | 233 /* avi header */ |
| 0 | 234 /* using frame_period is bad idea */ |
| 235 frame_period = get_le32(pb); | |
| 236 bit_rate = get_le32(pb) * 8; | |
|
981
55519fa957c3
fix demuxing of XviD_with_3_AAC-HE_audio_streams.avi
michael
parents:
980
diff
changeset
|
237 get_le32(pb); |
|
55519fa957c3
fix demuxing of XviD_with_3_AAC-HE_audio_streams.avi
michael
parents:
980
diff
changeset
|
238 avi->non_interleaved |= get_le32(pb) & AVIF_MUSTUSEINDEX; |
|
55519fa957c3
fix demuxing of XviD_with_3_AAC-HE_audio_streams.avi
michael
parents:
980
diff
changeset
|
239 |
|
55519fa957c3
fix demuxing of XviD_with_3_AAC-HE_audio_streams.avi
michael
parents:
980
diff
changeset
|
240 url_fskip(pb, 2 * 4); |
|
188
6c9d6422a2f6
update duration and start_time - add av_new_stream() usage
bellard
parents:
149
diff
changeset
|
241 n = get_le32(pb); |
|
6c9d6422a2f6
update duration and start_time - add av_new_stream() usage
bellard
parents:
149
diff
changeset
|
242 for(i=0;i<n;i++) { |
| 311 | 243 AVIStream *ast; |
|
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
227
diff
changeset
|
244 st = av_new_stream(s, i); |
| 0 | 245 if (!st) |
| 246 goto fail; | |
|
462
b69898ffc92a
move time_base (pts_num/pts_den) from AVFormatContext -> AVStream
michael
parents:
457
diff
changeset
|
247 |
| 311 | 248 ast = av_mallocz(sizeof(AVIStream)); |
| 249 if (!ast) | |
| 250 goto fail; | |
| 251 st->priv_data = ast; | |
| 887 | 252 } |
| 0 | 253 url_fskip(pb, size - 7 * 4); |
| 254 break; | |
| 255 case MKTAG('s', 't', 'r', 'h'): | |
| 256 /* stream header */ | |
| 257 stream_index++; | |
| 258 tag1 = get_le32(pb); | |
|
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
227
diff
changeset
|
259 handler = get_le32(pb); /* codec tag */ |
| 471 | 260 #ifdef DEBUG |
| 261 print_tag("strh", tag1, -1); | |
| 262 #endif | |
| 703 | 263 if(tag1 == MKTAG('i', 'a', 'v', 's') || tag1 == MKTAG('i', 'v', 'a', 's')){ |
| 885 | 264 /* |
| 887 | 265 * After some consideration -- I don't think we |
| 266 * have to support anything but DV in a type1 AVIs. | |
| 267 */ | |
| 268 if (s->nb_streams != 1) | |
| 269 goto fail; | |
| 885 | 270 |
| 887 | 271 if (handler != MKTAG('d', 'v', 's', 'd') && |
| 272 handler != MKTAG('d', 'v', 'h', 'd') && | |
| 273 handler != MKTAG('d', 'v', 's', 'l')) | |
| 274 goto fail; | |
| 885 | 275 |
| 887 | 276 ast = s->streams[0]->priv_data; |
| 277 av_freep(&s->streams[0]->codec->extradata); | |
| 278 av_freep(&s->streams[0]); | |
| 279 s->nb_streams = 0; | |
| 280 avi->dv_demux = dv_init_demux(s); | |
| 281 if (!avi->dv_demux) | |
| 282 goto fail; | |
| 283 s->streams[0]->priv_data = ast; | |
| 284 url_fskip(pb, 3 * 4); | |
| 285 ast->scale = get_le32(pb); | |
| 286 ast->rate = get_le32(pb); | |
| 287 stream_index = s->nb_streams - 1; | |
| 288 url_fskip(pb, size - 7*4); | |
| 703 | 289 break; |
| 290 } | |
| 291 | |
| 292 if (stream_index >= s->nb_streams) { | |
| 293 url_fskip(pb, size - 8); | |
| 294 break; | |
| 885 | 295 } |
| 703 | 296 st = s->streams[stream_index]; |
| 297 ast = st->priv_data; | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
298 st->codec->stream_codec_tag= handler; |
| 703 | 299 |
| 300 get_le32(pb); /* flags */ | |
| 301 get_le16(pb); /* priority */ | |
| 302 get_le16(pb); /* language */ | |
| 303 get_le32(pb); /* initial frame */ | |
| 304 ast->scale = get_le32(pb); | |
| 305 ast->rate = get_le32(pb); | |
| 306 if(ast->scale && ast->rate){ | |
| 307 }else if(frame_period){ | |
| 308 ast->rate = 1000000; | |
| 309 ast->scale = frame_period; | |
| 310 }else{ | |
| 311 ast->rate = 25; | |
| 312 ast->scale = 1; | |
| 313 } | |
| 314 av_set_pts_info(st, 64, ast->scale, ast->rate); | |
| 885 | 315 |
| 703 | 316 ast->start= get_le32(pb); /* start */ |
| 317 nb_frames = get_le32(pb); | |
| 318 | |
| 319 st->start_time = 0; | |
| 743 | 320 st->duration = nb_frames; |
| 703 | 321 get_le32(pb); /* buffer size */ |
| 322 get_le32(pb); /* quality */ | |
| 323 ast->sample_size = get_le32(pb); /* sample ssize */ | |
| 324 // av_log(NULL, AV_LOG_DEBUG, "%d %d %d %d\n", ast->rate, ast->scale, ast->start, ast->sample_size); | |
| 325 | |
| 326 switch(tag1) { | |
| 887 | 327 case MKTAG('v', 'i', 'd', 's'): |
| 0 | 328 codec_type = CODEC_TYPE_VIDEO; |
|
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
329 |
| 703 | 330 ast->sample_size = 0; |
| 0 | 331 break; |
| 332 case MKTAG('a', 'u', 'd', 's'): | |
| 703 | 333 codec_type = CODEC_TYPE_AUDIO; |
|
73
d40ddc73858a
reversing not yet reversed changes from r1.7 -> r1.8 except the static/const stuff
michaelni
parents:
65
diff
changeset
|
334 break; |
| 471 | 335 case MKTAG('t', 'x', 't', 's'): |
| 885 | 336 //FIXME |
| 471 | 337 codec_type = CODEC_TYPE_DATA; //CODEC_TYPE_SUB ? FIXME |
| 338 break; | |
| 534 | 339 case MKTAG('p', 'a', 'd', 's'): |
| 340 codec_type = CODEC_TYPE_UNKNOWN; | |
| 341 stream_index--; | |
| 342 break; | |
|
73
d40ddc73858a
reversing not yet reversed changes from r1.7 -> r1.8 except the static/const stuff
michaelni
parents:
65
diff
changeset
|
343 default: |
| 534 | 344 av_log(s, AV_LOG_ERROR, "unknown stream type %X\n", tag1); |
|
73
d40ddc73858a
reversing not yet reversed changes from r1.7 -> r1.8 except the static/const stuff
michaelni
parents:
65
diff
changeset
|
345 goto fail; |
| 0 | 346 } |
| 703 | 347 url_fskip(pb, size - 12 * 4); |
| 0 | 348 break; |
| 349 case MKTAG('s', 't', 'r', 'f'): | |
| 350 /* stream header */ | |
|
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
227
diff
changeset
|
351 if (stream_index >= s->nb_streams || avi->dv_demux) { |
| 0 | 352 url_fskip(pb, size); |
| 353 } else { | |
| 354 st = s->streams[stream_index]; | |
| 355 switch(codec_type) { | |
| 356 case CODEC_TYPE_VIDEO: | |
| 357 get_le32(pb); /* size */ | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
358 st->codec->width = get_le32(pb); |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
359 st->codec->height = get_le32(pb); |
| 0 | 360 get_le16(pb); /* panes */ |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
361 st->codec->bits_per_sample= get_le16(pb); /* depth */ |
| 0 | 362 tag1 = get_le32(pb); |
|
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
363 get_le32(pb); /* ImageSize */ |
|
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
364 get_le32(pb); /* XPelsPerMeter */ |
|
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
365 get_le32(pb); /* YPelsPerMeter */ |
|
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
366 get_le32(pb); /* ClrUsed */ |
|
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
367 get_le32(pb); /* ClrImportant */ |
|
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
368 |
| 639 | 369 if(size > 10*4 && size<(1<<30)){ |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
370 st->codec->extradata_size= size - 10*4; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
371 st->codec->extradata= av_malloc(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
372 get_buffer(pb, st->codec->extradata, st->codec->extradata_size); |
| 639 | 373 } |
| 885 | 374 |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
375 if(st->codec->extradata_size & 1) //FIXME check if the encoder really did this correctly |
| 76 | 376 get_byte(pb); |
|
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
377 |
|
297
85d558a18134
Make avi and asf demuxer export palette in palctrl
rtognimp
parents:
296
diff
changeset
|
378 /* Extract palette from extradata if bpp <= 8 */ |
|
85d558a18134
Make avi and asf demuxer export palette in palctrl
rtognimp
parents:
296
diff
changeset
|
379 /* This code assumes that extradata contains only palette */ |
|
85d558a18134
Make avi and asf demuxer export palette in palctrl
rtognimp
parents:
296
diff
changeset
|
380 /* This is true for all paletted codecs implemented in ffmpeg */ |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
381 if (st->codec->extradata_size && (st->codec->bits_per_sample <= 8)) { |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
382 st->codec->palctrl = av_mallocz(sizeof(AVPaletteControl)); |
|
297
85d558a18134
Make avi and asf demuxer export palette in palctrl
rtognimp
parents:
296
diff
changeset
|
383 #ifdef WORDS_BIGENDIAN |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
384 for (i = 0; i < FFMIN(st->codec->extradata_size, AVPALETTE_SIZE)/4; i++) |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
385 st->codec->palctrl->palette[i] = bswap_32(((uint32_t*)st->codec->extradata)[i]); |
|
297
85d558a18134
Make avi and asf demuxer export palette in palctrl
rtognimp
parents:
296
diff
changeset
|
386 #else |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
387 memcpy(st->codec->palctrl->palette, st->codec->extradata, |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
388 FFMIN(st->codec->extradata_size, AVPALETTE_SIZE)); |
|
297
85d558a18134
Make avi and asf demuxer export palette in palctrl
rtognimp
parents:
296
diff
changeset
|
389 #endif |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
390 st->codec->palctrl->palette_changed = 1; |
|
297
85d558a18134
Make avi and asf demuxer export palette in palctrl
rtognimp
parents:
296
diff
changeset
|
391 } |
|
85d558a18134
Make avi and asf demuxer export palette in palctrl
rtognimp
parents:
296
diff
changeset
|
392 |
| 0 | 393 #ifdef DEBUG |
| 394 print_tag("video", tag1, 0); | |
| 395 #endif | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
396 st->codec->codec_type = CODEC_TYPE_VIDEO; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
397 st->codec->codec_tag = tag1; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
398 st->codec->codec_id = codec_get_id(codec_bmp_tags, tag1); |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
399 if (st->codec->codec_id == CODEC_ID_XAN_WC4) |
| 227 | 400 xan_video = 1; |
| 842 | 401 st->need_parsing = 2; //only parse headers dont do slower repacketization, this is needed to get the pict type which is needed for generating correct pts |
|
75
78bec272ce3a
read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
michaelni
parents:
73
diff
changeset
|
402 // url_fskip(pb, size - 5 * 4); |
| 0 | 403 break; |
|
73
d40ddc73858a
reversing not yet reversed changes from r1.7 -> r1.8 except the static/const stuff
michaelni
parents:
65
diff
changeset
|
404 case CODEC_TYPE_AUDIO: |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
405 get_wav_header(pb, st->codec, size); |
| 988 | 406 if(ast->sample_size && st->codec->block_align && ast->sample_size % st->codec->block_align) |
| 407 av_log(s, AV_LOG_DEBUG, "invalid sample size or block align detected\n"); | |
|
13
8a5285a0ca2f
Fix for odd strf tag in Stargate SG-1 - 3x18 - Shades of Grey.avi
mmu_man
parents:
5
diff
changeset
|
408 if (size%2) /* 2-aligned (fix for Stargate SG-1 - 3x18 - Shades of Grey.avi) */ |
|
8a5285a0ca2f
Fix for odd strf tag in Stargate SG-1 - 3x18 - Shades of Grey.avi
mmu_man
parents:
5
diff
changeset
|
409 url_fskip(pb, 1); |
| 227 | 410 /* special case time: To support Xan DPCM, hardcode |
| 411 * the format if Xxan is the video codec */ | |
| 311 | 412 st->need_parsing = 1; |
| 413 /* force parsing as several audio frames can be in | |
| 414 one packet */ | |
| 227 | 415 if (xan_video) |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
416 st->codec->codec_id = CODEC_ID_XAN_DPCM; |
| 0 | 417 break; |
| 418 default: | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
419 st->codec->codec_type = CODEC_TYPE_DATA; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
420 st->codec->codec_id= CODEC_ID_NONE; |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
421 st->codec->codec_tag= 0; |
| 0 | 422 url_fskip(pb, size); |
| 423 break; | |
| 424 } | |
| 425 } | |
| 426 break; | |
| 977 | 427 case MKTAG('i', 'n', 'd', 'x'): |
| 428 i= url_ftell(pb); | |
| 429 read_braindead_odml_indx(s, 0); | |
| 430 avi->index_loaded=1; | |
| 431 url_fseek(pb, i+size, SEEK_SET); | |
| 432 break; | |
| 0 | 433 default: |
| 434 /* skip tag */ | |
| 435 size += (size & 1); | |
| 436 url_fskip(pb, size); | |
| 437 break; | |
| 438 } | |
| 439 } | |
| 440 end_of_header: | |
| 441 /* check stream number */ | |
| 442 if (stream_index != s->nb_streams - 1) { | |
| 443 fail: | |
| 444 for(i=0;i<s->nb_streams;i++) { | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
445 av_freep(&s->streams[i]->codec->extradata); |
| 0 | 446 av_freep(&s->streams[i]); |
| 447 } | |
| 448 return -1; | |
| 449 } | |
| 450 | |
| 977 | 451 if(!avi->index_loaded) |
| 452 avi_load_index(s); | |
|
469
6a4cc19e8d9b
exporting keyframe flags, fixes keyframe stuff with streamcopy
michael
parents:
466
diff
changeset
|
453 avi->index_loaded = 1; |
| 979 | 454 avi->non_interleaved |= guess_ni_flag(s); |
|
983
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
455 if(avi->non_interleaved) |
|
558381bf97d2
support seeking in RenderAvi.avi (audio stream == single huge chunk)
michael
parents:
982
diff
changeset
|
456 clean_index(s); |
| 885 | 457 |
| 0 | 458 return 0; |
| 459 } | |
| 460 | |
| 461 static int avi_read_packet(AVFormatContext *s, AVPacket *pkt) | |
| 462 { | |
| 463 AVIContext *avi = s->priv_data; | |
| 464 ByteIOContext *pb = &s->pb; | |
| 510 | 465 int n, d[8], size; |
| 569 | 466 offset_t i, sync; |
|
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
227
diff
changeset
|
467 void* dstr; |
| 885 | 468 |
|
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
227
diff
changeset
|
469 if (avi->dv_demux) { |
|
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
227
diff
changeset
|
470 size = dv_get_packet(avi->dv_demux, pkt); |
| 887 | 471 if (size >= 0) |
| 472 return size; | |
| 149 | 473 } |
| 885 | 474 |
| 701 | 475 if(avi->non_interleaved){ |
|
851
62e66722e9bb
Kill some compiler warnings. Compiled code verified identical after changes.
mru
parents:
842
diff
changeset
|
476 int best_stream_index = 0; |
| 701 | 477 AVStream *best_st= NULL; |
| 478 AVIStream *best_ast; | |
| 479 int64_t best_ts= INT64_MAX; | |
| 480 int i; | |
| 885 | 481 |
| 701 | 482 for(i=0; i<s->nb_streams; i++){ |
| 483 AVStream *st = s->streams[i]; | |
| 484 AVIStream *ast = st->priv_data; | |
| 485 int64_t ts= ast->frame_offset; | |
| 569 | 486 |
| 701 | 487 if(ast->sample_size) |
| 488 ts /= ast->sample_size; | |
| 489 ts= av_rescale(ts, AV_TIME_BASE * (int64_t)st->time_base.num, st->time_base.den); | |
| 490 | |
| 491 // av_log(NULL, AV_LOG_DEBUG, "%Ld %d/%d %Ld\n", ts, st->time_base.num, st->time_base.den, ast->frame_offset); | |
| 492 if(ts < best_ts){ | |
| 493 best_ts= ts; | |
| 494 best_st= st; | |
| 495 best_stream_index= i; | |
| 496 } | |
| 497 } | |
| 498 best_ast = best_st->priv_data; | |
| 499 best_ts= av_rescale(best_ts, best_st->time_base.den, AV_TIME_BASE * (int64_t)best_st->time_base.num); //FIXME a little ugly | |
| 500 if(best_ast->remaining) | |
| 501 i= av_index_search_timestamp(best_st, best_ts, AVSEEK_FLAG_ANY | AVSEEK_FLAG_BACKWARD); | |
| 502 else | |
| 503 i= av_index_search_timestamp(best_st, best_ts, AVSEEK_FLAG_ANY); | |
| 504 | |
| 505 // av_log(NULL, AV_LOG_DEBUG, "%d\n", i); | |
| 506 if(i>=0){ | |
| 507 int64_t pos= best_st->index_entries[i].pos; | |
| 980 | 508 pos += best_ast->packet_size - best_ast->remaining; |
|
981
55519fa957c3
fix demuxing of XviD_with_3_AAC-HE_audio_streams.avi
michael
parents:
980
diff
changeset
|
509 url_fseek(&s->pb, pos + 8, SEEK_SET); |
| 701 | 510 // av_log(NULL, AV_LOG_DEBUG, "pos=%Ld\n", pos); |
| 885 | 511 |
| 982 | 512 assert(best_ast->remaining <= best_ast->packet_size); |
| 513 | |
|
981
55519fa957c3
fix demuxing of XviD_with_3_AAC-HE_audio_streams.avi
michael
parents:
980
diff
changeset
|
514 avi->stream_index= best_stream_index; |
|
55519fa957c3
fix demuxing of XviD_with_3_AAC-HE_audio_streams.avi
michael
parents:
980
diff
changeset
|
515 if(!best_ast->remaining) |
| 982 | 516 best_ast->packet_size= |
|
981
55519fa957c3
fix demuxing of XviD_with_3_AAC-HE_audio_streams.avi
michael
parents:
980
diff
changeset
|
517 best_ast->remaining= best_st->index_entries[i].size; |
| 701 | 518 } |
| 519 } | |
| 885 | 520 |
| 569 | 521 resync: |
| 701 | 522 if(avi->stream_index >= 0){ |
| 523 AVStream *st= s->streams[ avi->stream_index ]; | |
| 524 AVIStream *ast= st->priv_data; | |
| 525 int size; | |
| 885 | 526 |
| 988 | 527 if(ast->sample_size <= 1) // minorityreport.AVI block_align=1024 sample_size=1 IMA-ADPCM |
| 701 | 528 size= INT_MAX; |
| 885 | 529 else if(ast->sample_size < 32) |
| 701 | 530 size= 64*ast->sample_size; |
| 531 else | |
| 532 size= ast->sample_size; | |
| 533 | |
| 534 if(size > ast->remaining) | |
| 535 size= ast->remaining; | |
| 775 | 536 av_get_packet(pb, pkt, size); |
| 885 | 537 |
| 701 | 538 if (avi->dv_demux) { |
| 539 dstr = pkt->destruct; | |
| 540 size = dv_produce_packet(avi->dv_demux, pkt, | |
| 541 pkt->data, pkt->size); | |
| 542 pkt->destruct = dstr; | |
| 543 pkt->flags |= PKT_FLAG_KEY; | |
| 544 } else { | |
| 545 /* XXX: how to handle B frames in avi ? */ | |
| 546 pkt->dts = ast->frame_offset; | |
| 547 // pkt->dts += ast->start; | |
| 548 if(ast->sample_size) | |
| 549 pkt->dts /= ast->sample_size; | |
| 982 | 550 //av_log(NULL, AV_LOG_DEBUG, "dts:%Ld offset:%Ld %d/%d smpl_siz:%d base:%d st:%d size:%d\n", pkt->dts, ast->frame_offset, ast->scale, ast->rate, ast->sample_size, AV_TIME_BASE, avi->stream_index, size); |
| 701 | 551 pkt->stream_index = avi->stream_index; |
| 552 | |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
553 if (st->codec->codec_type == CODEC_TYPE_VIDEO) { |
| 701 | 554 if(st->index_entries){ |
| 555 AVIndexEntry *e; | |
| 556 int index; | |
| 557 | |
| 558 index= av_index_search_timestamp(st, pkt->dts, 0); | |
| 559 e= &st->index_entries[index]; | |
| 885 | 560 |
| 718 | 561 if(index >= 0 && e->timestamp == ast->frame_offset){ |
| 701 | 562 if (e->flags & AVINDEX_KEYFRAME) |
| 563 pkt->flags |= PKT_FLAG_KEY; | |
| 564 } | |
| 565 } else { | |
| 566 /* if no index, better to say that all frames | |
| 567 are key frames */ | |
| 568 pkt->flags |= PKT_FLAG_KEY; | |
| 569 } | |
| 570 } else { | |
| 885 | 571 pkt->flags |= PKT_FLAG_KEY; |
| 701 | 572 } |
| 573 if(ast->sample_size) | |
| 574 ast->frame_offset += pkt->size; | |
| 575 else | |
| 576 ast->frame_offset++; | |
| 577 } | |
| 578 ast->remaining -= size; | |
| 579 if(!ast->remaining){ | |
| 580 avi->stream_index= -1; | |
| 581 ast->packet_size= 0; | |
| 582 if (size & 1) { | |
| 583 get_byte(pb); | |
| 584 size++; | |
| 585 } | |
| 586 } | |
| 587 | |
| 588 return size; | |
| 589 } | |
| 590 | |
| 569 | 591 memset(d, -1, sizeof(int)*8); |
| 592 for(i=sync=url_ftell(pb); !url_feof(pb); i++) { | |
| 82 | 593 int j; |
| 594 | |
| 887 | 595 if (i >= avi->movi_end) { |
| 596 if (avi->is_odml) { | |
| 597 url_fskip(pb, avi->riff_end - i); | |
| 598 avi->riff_end = avi->movi_end = url_fsize(pb); | |
| 599 } else | |
| 600 break; | |
| 601 } | |
|
92
5a4b5f03d13e
OpenDML AVI > 2Gb support patch by (Roman Shaposhnick <rvs at sun dot com>)
michaelni
parents:
91
diff
changeset
|
602 |
| 82 | 603 for(j=0; j<7; j++) |
| 604 d[j]= d[j+1]; | |
| 605 d[7]= get_byte(pb); | |
| 885 | 606 |
| 82 | 607 size= d[4] + (d[5]<<8) + (d[6]<<16) + (d[7]<<24); |
| 885 | 608 |
| 519 | 609 if( d[2] >= '0' && d[2] <= '9' |
| 610 && d[3] >= '0' && d[3] <= '9'){ | |
| 611 n= (d[2] - '0') * 10 + (d[3] - '0'); | |
| 612 }else{ | |
| 613 n= 100; //invalid stream id | |
| 614 } | |
| 615 //av_log(NULL, AV_LOG_DEBUG, "%X %X %X %X %X %X %X %X %lld %d %d\n", d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7], i, size, n); | |
| 616 if(i + size > avi->movi_end || d[0]<0) | |
| 617 continue; | |
| 885 | 618 |
| 82 | 619 //parse ix## |
| 519 | 620 if( (d[0] == 'i' && d[1] == 'x' && n < s->nb_streams) |
| 887 | 621 //parse JUNK |
| 519 | 622 ||(d[0] == 'J' && d[1] == 'U' && d[2] == 'N' && d[3] == 'K')){ |
| 82 | 623 url_fskip(pb, size); |
| 519 | 624 //av_log(NULL, AV_LOG_DEBUG, "SKIP\n"); |
| 569 | 625 goto resync; |
| 82 | 626 } |
| 510 | 627 |
| 519 | 628 if( d[0] >= '0' && d[0] <= '9' |
| 629 && d[1] >= '0' && d[1] <= '9'){ | |
| 630 n= (d[0] - '0') * 10 + (d[1] - '0'); | |
| 631 }else{ | |
| 632 n= 100; //invalid stream id | |
| 510 | 633 } |
| 885 | 634 |
| 82 | 635 //parse ##dc/##wb |
| 705 | 636 if(n < s->nb_streams){ |
| 519 | 637 AVStream *st; |
| 638 AVIStream *ast; | |
| 639 st = s->streams[n]; | |
| 640 ast = st->priv_data; | |
| 885 | 641 |
| 708 | 642 if( (st->discard >= AVDISCARD_DEFAULT && size==0) |
| 643 /*|| (st->discard >= AVDISCARD_NONKEY && !(pkt->flags & PKT_FLAG_KEY))*/ //FIXME needs a little reordering | |
| 644 || st->discard >= AVDISCARD_ALL){ | |
| 645 if(ast->sample_size) ast->frame_offset += pkt->size; | |
| 646 else ast->frame_offset++; | |
| 650 | 647 url_fskip(pb, size); |
| 648 goto resync; | |
| 649 } | |
| 519 | 650 |
| 885 | 651 if( ((ast->prefix_count<5 || sync+9 > i) && d[2]<128 && d[3]<128) || |
| 519 | 652 d[2]*256+d[3] == ast->prefix /*|| |
| 885 | 653 (d[2] == 'd' && d[3] == 'c') || |
| 887 | 654 (d[2] == 'w' && d[3] == 'b')*/) { |
| 519 | 655 |
| 656 //av_log(NULL, AV_LOG_DEBUG, "OK\n"); | |
| 657 if(d[2]*256+d[3] == ast->prefix) | |
| 658 ast->prefix_count++; | |
| 659 else{ | |
| 660 ast->prefix= d[2]*256+d[3]; | |
| 661 ast->prefix_count= 0; | |
| 662 } | |
| 663 | |
| 701 | 664 avi->stream_index= n; |
| 665 ast->packet_size= size + 8; | |
| 666 ast->remaining= size; | |
| 667 goto resync; | |
| 519 | 668 } |
| 82 | 669 } |
|
520
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
670 /* palette changed chunk */ |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
671 if ( d[0] >= '0' && d[0] <= '9' |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
672 && d[1] >= '0' && d[1] <= '9' |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
673 && ((d[2] == 'p' && d[3] == 'c')) |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
674 && n < s->nb_streams && i + size <= avi->movi_end) { |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
675 |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
676 AVStream *st; |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
677 int first, clr, flags, k, p; |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
678 |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
679 st = s->streams[n]; |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
680 |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
681 first = get_byte(pb); |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
682 clr = get_byte(pb); |
| 887 | 683 if(!clr) /* all 256 colors used */ |
| 684 clr = 256; | |
|
520
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
685 flags = get_le16(pb); |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
686 p = 4; |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
687 for (k = first; k < clr + first; k++) { |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
688 int r, g, b; |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
689 r = get_byte(pb); |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
690 g = get_byte(pb); |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
691 b = get_byte(pb); |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
692 get_byte(pb); |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
693 st->codec->palctrl->palette[k] = b + (g << 8) + (r << 16); |
|
520
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
694 } |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
695 st->codec->palctrl->palette_changed = 1; |
| 569 | 696 goto resync; |
|
520
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
697 } |
|
5d96fe8f6560
added support for the elusive AVI palette change chunk, courtesy of
melanson
parents:
519
diff
changeset
|
698 |
| 82 | 699 } |
| 519 | 700 |
| 82 | 701 return -1; |
| 0 | 702 } |
| 703 | |
| 311 | 704 /* XXX: we make the implicit supposition that the position are sorted |
| 705 for each stream */ | |
| 706 static int avi_read_idx1(AVFormatContext *s, int size) | |
| 707 { | |
| 701 | 708 AVIContext *avi = s->priv_data; |
| 311 | 709 ByteIOContext *pb = &s->pb; |
| 710 int nb_index_entries, i; | |
| 711 AVStream *st; | |
| 712 AVIStream *ast; | |
| 713 unsigned int index, tag, flags, pos, len; | |
| 701 | 714 unsigned last_pos= -1; |
| 885 | 715 |
| 311 | 716 nb_index_entries = size / 16; |
| 717 if (nb_index_entries <= 0) | |
| 718 return -1; | |
| 719 | |
| 720 /* read the entries and sort them in each stream component */ | |
| 721 for(i = 0; i < nb_index_entries; i++) { | |
| 722 tag = get_le32(pb); | |
| 723 flags = get_le32(pb); | |
| 724 pos = get_le32(pb); | |
| 725 len = get_le32(pb); | |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
726 #if defined(DEBUG_SEEK) |
| 885 | 727 av_log(NULL, AV_LOG_DEBUG, "%d: tag=0x%x flags=0x%x pos=0x%x len=%d/", |
| 311 | 728 i, tag, flags, pos, len); |
| 729 #endif | |
| 701 | 730 if(i==0 && pos > avi->movi_list) |
| 731 avi->movi_list= 0; //FIXME better check | |
| 980 | 732 pos += avi->movi_list; |
| 701 | 733 |
| 311 | 734 index = ((tag & 0xff) - '0') * 10; |
| 735 index += ((tag >> 8) & 0xff) - '0'; | |
| 736 if (index >= s->nb_streams) | |
| 737 continue; | |
| 738 st = s->streams[index]; | |
| 739 ast = st->priv_data; | |
| 885 | 740 |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
741 #if defined(DEBUG_SEEK) |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
742 av_log(NULL, AV_LOG_DEBUG, "%d cum_len=%d\n", len, ast->cum_len); |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
743 #endif |
| 705 | 744 if(last_pos == pos) |
| 745 avi->non_interleaved= 1; | |
| 746 else | |
| 979 | 747 av_add_index_entry(st, pos, ast->cum_len, len, 0, (flags&AVIIF_INDEX) ? AVINDEX_KEYFRAME : 0); |
| 701 | 748 if(ast->sample_size) |
| 749 ast->cum_len += len / ast->sample_size; | |
| 750 else | |
| 751 ast->cum_len ++; | |
| 752 last_pos= pos; | |
| 311 | 753 } |
| 754 return 0; | |
| 755 } | |
| 756 | |
| 701 | 757 static int guess_ni_flag(AVFormatContext *s){ |
| 758 int i; | |
| 759 int64_t last_start=0; | |
| 760 int64_t first_end= INT64_MAX; | |
| 885 | 761 |
| 701 | 762 for(i=0; i<s->nb_streams; i++){ |
| 763 AVStream *st = s->streams[i]; | |
| 764 int n= st->nb_index_entries; | |
| 765 | |
| 766 if(n <= 0) | |
| 767 continue; | |
| 768 | |
| 769 if(st->index_entries[0].pos > last_start) | |
| 770 last_start= st->index_entries[0].pos; | |
| 771 if(st->index_entries[n-1].pos < first_end) | |
| 772 first_end= st->index_entries[n-1].pos; | |
| 773 } | |
| 774 return last_start > first_end; | |
| 775 } | |
| 776 | |
| 311 | 777 static int avi_load_index(AVFormatContext *s) |
| 778 { | |
| 779 AVIContext *avi = s->priv_data; | |
| 780 ByteIOContext *pb = &s->pb; | |
| 781 uint32_t tag, size; | |
| 343 | 782 offset_t pos= url_ftell(pb); |
| 885 | 783 |
| 311 | 784 url_fseek(pb, avi->movi_end, SEEK_SET); |
| 785 #ifdef DEBUG_SEEK | |
| 786 printf("movi_end=0x%llx\n", avi->movi_end); | |
| 787 #endif | |
| 788 for(;;) { | |
| 789 if (url_feof(pb)) | |
| 790 break; | |
| 791 tag = get_le32(pb); | |
| 792 size = get_le32(pb); | |
| 793 #ifdef DEBUG_SEEK | |
| 794 printf("tag=%c%c%c%c size=0x%x\n", | |
| 795 tag & 0xff, | |
| 796 (tag >> 8) & 0xff, | |
| 797 (tag >> 16) & 0xff, | |
| 798 (tag >> 24) & 0xff, | |
| 799 size); | |
| 800 #endif | |
| 801 switch(tag) { | |
| 802 case MKTAG('i', 'd', 'x', '1'): | |
| 803 if (avi_read_idx1(s, size) < 0) | |
| 804 goto skip; | |
| 805 else | |
| 806 goto the_end; | |
| 807 break; | |
| 808 default: | |
| 809 skip: | |
| 810 size += (size & 1); | |
| 811 url_fskip(pb, size); | |
| 812 break; | |
| 813 } | |
| 814 } | |
| 815 the_end: | |
| 343 | 816 url_fseek(pb, pos, SEEK_SET); |
| 311 | 817 return 0; |
| 818 } | |
| 819 | |
| 558 | 820 static int avi_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) |
| 311 | 821 { |
| 822 AVIContext *avi = s->priv_data; | |
| 823 AVStream *st; | |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
824 int i, index; |
| 311 | 825 int64_t pos; |
| 826 | |
| 827 if (!avi->index_loaded) { | |
| 828 /* we only load the index on demand */ | |
| 829 avi_load_index(s); | |
| 830 avi->index_loaded = 1; | |
| 831 } | |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
832 assert(stream_index>= 0); |
| 311 | 833 |
| 834 st = s->streams[stream_index]; | |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
835 index= av_index_search_timestamp(st, timestamp, flags); |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
836 if(index<0) |
| 311 | 837 return -1; |
| 885 | 838 |
| 311 | 839 /* find the position */ |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
840 pos = st->index_entries[index].pos; |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
841 timestamp = st->index_entries[index].timestamp; |
| 311 | 842 |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
843 // av_log(NULL, AV_LOG_DEBUG, "XX %Ld %d %Ld\n", timestamp, index, st->index_entries[index].timestamp); |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
844 |
| 311 | 845 for(i = 0; i < s->nb_streams; i++) { |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
846 AVStream *st2 = s->streams[i]; |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
847 AVIStream *ast2 = st2->priv_data; |
| 701 | 848 |
| 849 ast2->packet_size= | |
| 850 ast2->remaining= 0; | |
| 851 | |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
852 if (st2->nb_index_entries <= 0) |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
853 continue; |
| 885 | 854 |
| 988 | 855 // assert(st2->codec->block_align); |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
856 assert(st2->time_base.den == ast2->rate); |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
857 assert(st2->time_base.num == ast2->scale); |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
858 index = av_index_search_timestamp( |
| 885 | 859 st2, |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
860 av_rescale(timestamp, st2->time_base.den*(int64_t)st->time_base.num, st->time_base.den * (int64_t)st2->time_base.num), |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
861 flags | AVSEEK_FLAG_BACKWARD); |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
862 if(index<0) |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
863 index=0; |
| 885 | 864 |
| 701 | 865 if(!avi->non_interleaved){ |
| 866 while(index>0 && st2->index_entries[index].pos > pos) | |
| 867 index--; | |
| 868 while(index+1 < st2->nb_index_entries && st2->index_entries[index].pos < pos) | |
| 869 index++; | |
| 870 } | |
| 871 | |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
872 // av_log(NULL, AV_LOG_DEBUG, "%Ld %d %Ld\n", timestamp, index, st2->index_entries[index].timestamp); |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
873 /* extract the current frame number */ |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
874 ast2->frame_offset = st2->index_entries[index].timestamp; |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
875 if(ast2->sample_size) |
|
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
876 ast2->frame_offset *=ast2->sample_size; |
| 311 | 877 } |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
878 |
|
562
bf3231dd1d7c
* static allocation for audio packets. This will make it a little bit
romansh
parents:
558
diff
changeset
|
879 if (avi->dv_demux) |
|
bf3231dd1d7c
* static allocation for audio packets. This will make it a little bit
romansh
parents:
558
diff
changeset
|
880 dv_flush_audio_packets(avi->dv_demux); |
| 311 | 881 /* do the seek */ |
| 882 url_fseek(&s->pb, pos, SEEK_SET); | |
| 701 | 883 avi->stream_index= -1; |
| 311 | 884 return 0; |
| 885 } | |
| 886 | |
| 0 | 887 static int avi_read_close(AVFormatContext *s) |
| 888 { | |
| 110 | 889 int i; |
| 890 AVIContext *avi = s->priv_data; | |
| 891 | |
| 892 for(i=0;i<s->nb_streams;i++) { | |
| 893 AVStream *st = s->streams[i]; | |
| 311 | 894 AVIStream *ast = st->priv_data; |
|
700
a5e6e0e61e24
use libavformats index system instead of the half duplicated mess in avidec.c
michael
parents:
673
diff
changeset
|
895 av_free(ast); |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
896 av_free(st->codec->extradata); |
|
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
897 av_free(st->codec->palctrl); |
| 110 | 898 } |
| 899 | |
|
262
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
227
diff
changeset
|
900 if (avi->dv_demux) |
|
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
227
diff
changeset
|
901 av_free(avi->dv_demux); |
|
f174d9c00bce
* DV handling was streamlined for both muxing/demuxing and
romansh
parents:
227
diff
changeset
|
902 |
| 0 | 903 return 0; |
| 904 } | |
| 905 | |
| 906 static int avi_probe(AVProbeData *p) | |
| 907 { | |
| 908 /* check file header */ | |
| 909 if (p->buf_size <= 32) | |
| 910 return 0; | |
| 911 if (p->buf[0] == 'R' && p->buf[1] == 'I' && | |
| 912 p->buf[2] == 'F' && p->buf[3] == 'F' && | |
| 913 p->buf[8] == 'A' && p->buf[9] == 'V' && | |
| 914 p->buf[10] == 'I' && p->buf[11] == ' ') | |
| 915 return AVPROBE_SCORE_MAX; | |
| 916 else | |
| 917 return 0; | |
| 918 } | |
| 919 | |
| 920 static AVInputFormat avi_iformat = { | |
| 921 "avi", | |
| 922 "avi format", | |
| 923 sizeof(AVIContext), | |
| 924 avi_probe, | |
| 925 avi_read_header, | |
| 926 avi_read_packet, | |
| 927 avi_read_close, | |
| 311 | 928 avi_read_seek, |
| 0 | 929 }; |
| 930 | |
| 931 int avidec_init(void) | |
| 932 { | |
| 933 av_register_input_format(&avi_iformat); | |
| 934 return 0; | |
| 935 } |
