ac3dec: simplify zero-bit mantissa dithering by calculating it
[FFMpeg-mirror/lagarith.git] / libavformat / avidec.c
blob86e5357950a9ede132ab60f9dacdbc4ba9ca7dae
1 /*
2 * AVI demuxer
3 * Copyright (c) 2001 Fabrice Bellard
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 //#define DEBUG
23 //#define DEBUG_SEEK
25 #include "libavutil/intreadwrite.h"
26 #include "libavutil/bswap.h"
27 #include "avformat.h"
28 #include "avi.h"
29 #include "dv.h"
30 #include "riff.h"
32 #undef NDEBUG
33 #include <assert.h>
35 typedef struct AVIStream {
36 int64_t frame_offset; /* current frame (video) or byte (audio) counter
37 (used to compute the pts) */
38 int remaining;
39 int packet_size;
41 int scale;
42 int rate;
43 int sample_size; /* size of one sample (or packet) (in the rate/scale sense) in bytes */
45 int64_t cum_len; /* temporary storage (used during seek) */
47 int prefix; ///< normally 'd'<<8 + 'c' or 'w'<<8 + 'b'
48 int prefix_count;
49 uint32_t pal[256];
50 int has_pal;
51 } AVIStream;
53 typedef struct {
54 int64_t riff_end;
55 int64_t movi_end;
56 int64_t fsize;
57 int64_t movi_list;
58 int64_t last_pkt_pos;
59 int index_loaded;
60 int is_odml;
61 int non_interleaved;
62 int stream_index;
63 DVDemuxContext* dv_demux;
64 } AVIContext;
66 static const char avi_headers[][8] = {
67 { 'R', 'I', 'F', 'F', 'A', 'V', 'I', ' ' },
68 { 'R', 'I', 'F', 'F', 'A', 'V', 'I', 'X' },
69 { 'R', 'I', 'F', 'F', 'A', 'V', 'I', 0x19},
70 { 'O', 'N', '2', ' ', 'O', 'N', '2', 'f' },
71 { 'R', 'I', 'F', 'F', 'A', 'M', 'V', ' ' },
72 { 0 }
75 static int avi_load_index(AVFormatContext *s);
76 static int guess_ni_flag(AVFormatContext *s);
78 #ifdef DEBUG
79 static void print_tag(const char *str, unsigned int tag, int size)
81 dprintf(NULL, "%s: tag=%c%c%c%c size=0x%x\n",
82 str, tag & 0xff,
83 (tag >> 8) & 0xff,
84 (tag >> 16) & 0xff,
85 (tag >> 24) & 0xff,
86 size);
88 #endif
90 static int get_riff(AVFormatContext *s, ByteIOContext *pb)
92 AVIContext *avi = s->priv_data;
93 char header[8];
94 int i;
96 /* check RIFF header */
97 get_buffer(pb, header, 4);
98 avi->riff_end = get_le32(pb); /* RIFF chunk size */
99 avi->riff_end += url_ftell(pb); /* RIFF chunk end */
100 get_buffer(pb, header+4, 4);
102 for(i=0; avi_headers[i][0]; i++)
103 if(!memcmp(header, avi_headers[i], 8))
104 break;
105 if(!avi_headers[i][0])
106 return -1;
108 if(header[7] == 0x19)
109 av_log(s, AV_LOG_INFO, "This file has been generated by a totally broken muxer.\n");
111 return 0;
114 static int read_braindead_odml_indx(AVFormatContext *s, int frame_num){
115 AVIContext *avi = s->priv_data;
116 ByteIOContext *pb = s->pb;
117 int longs_pre_entry= get_le16(pb);
118 int index_sub_type = get_byte(pb);
119 int index_type = get_byte(pb);
120 int entries_in_use = get_le32(pb);
121 int chunk_id = get_le32(pb);
122 int64_t base = get_le64(pb);
123 int stream_id= 10*((chunk_id&0xFF) - '0') + (((chunk_id>>8)&0xFF) - '0');
124 AVStream *st;
125 AVIStream *ast;
126 int i;
127 int64_t last_pos= -1;
128 int64_t filesize= url_fsize(s->pb);
130 #ifdef DEBUG_SEEK
131 av_log(s, AV_LOG_ERROR, "longs_pre_entry:%d index_type:%d entries_in_use:%d chunk_id:%X base:%16"PRIX64"\n",
132 longs_pre_entry,index_type, entries_in_use, chunk_id, base);
133 #endif
135 if(stream_id > s->nb_streams || stream_id < 0)
136 return -1;
137 st= s->streams[stream_id];
138 ast = st->priv_data;
140 if(index_sub_type)
141 return -1;
143 get_le32(pb);
145 if(index_type && longs_pre_entry != 2)
146 return -1;
147 if(index_type>1)
148 return -1;
150 if(filesize > 0 && base >= filesize){
151 av_log(s, AV_LOG_ERROR, "ODML index invalid\n");
152 if(base>>32 == (base & 0xFFFFFFFF) && (base & 0xFFFFFFFF) < filesize && filesize <= 0xFFFFFFFF)
153 base &= 0xFFFFFFFF;
154 else
155 return -1;
158 for(i=0; i<entries_in_use; i++){
159 if(index_type){
160 int64_t pos= get_le32(pb) + base - 8;
161 int len = get_le32(pb);
162 int key= len >= 0;
163 len &= 0x7FFFFFFF;
165 #ifdef DEBUG_SEEK
166 av_log(s, AV_LOG_ERROR, "pos:%"PRId64", len:%X\n", pos, len);
167 #endif
168 if(url_feof(pb))
169 return -1;
171 if(last_pos == pos || pos == base - 8)
172 avi->non_interleaved= 1;
173 if(last_pos != pos)
174 av_add_index_entry(st, pos, ast->cum_len / FFMAX(1, ast->sample_size), len, 0, key ? AVINDEX_KEYFRAME : 0);
176 if(ast->sample_size)
177 ast->cum_len += len;
178 else
179 ast->cum_len ++;
180 last_pos= pos;
181 }else{
182 int64_t offset, pos;
183 int duration;
184 offset = get_le64(pb);
185 get_le32(pb); /* size */
186 duration = get_le32(pb);
188 if(url_feof(pb))
189 return -1;
191 pos = url_ftell(pb);
193 url_fseek(pb, offset+8, SEEK_SET);
194 read_braindead_odml_indx(s, frame_num);
195 frame_num += duration;
197 url_fseek(pb, pos, SEEK_SET);
200 avi->index_loaded=1;
201 return 0;
204 static void clean_index(AVFormatContext *s){
205 int i;
206 int64_t j;
208 for(i=0; i<s->nb_streams; i++){
209 AVStream *st = s->streams[i];
210 AVIStream *ast = st->priv_data;
211 int n= st->nb_index_entries;
212 int max= ast->sample_size;
213 int64_t pos, size, ts;
215 if(n != 1 || ast->sample_size==0)
216 continue;
218 while(max < 1024) max+=max;
220 pos= st->index_entries[0].pos;
221 size= st->index_entries[0].size;
222 ts= st->index_entries[0].timestamp;
224 for(j=0; j<size; j+=max){
225 av_add_index_entry(st, pos+j, ts + j/ast->sample_size, FFMIN(max, size-j), 0, AVINDEX_KEYFRAME);
230 static int avi_read_tag(AVFormatContext *s, const char *key, unsigned int size)
232 ByteIOContext *pb = s->pb;
233 uint8_t value[1024];
235 int64_t i = url_ftell(pb);
236 size += (size & 1);
237 get_strz(pb, value, sizeof(value));
238 url_fseek(pb, i+size, SEEK_SET);
240 return av_metadata_set(&s->metadata, key, value);
243 static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
245 AVIContext *avi = s->priv_data;
246 ByteIOContext *pb = s->pb;
247 unsigned int tag, tag1, handler;
248 int codec_type, stream_index, frame_period, bit_rate;
249 unsigned int size, nb_frames;
250 int i;
251 AVStream *st;
252 AVIStream *ast = NULL;
253 int avih_width=0, avih_height=0;
254 int amv_file_format=0;
255 uint64_t list_end = 0;
257 avi->stream_index= -1;
259 if (get_riff(s, pb) < 0)
260 return -1;
262 avi->fsize = url_fsize(pb);
263 if(avi->fsize<=0)
264 avi->fsize= avi->riff_end == 8 ? INT64_MAX : avi->riff_end;
266 /* first list tag */
267 stream_index = -1;
268 codec_type = -1;
269 frame_period = 0;
270 for(;;) {
271 if (url_feof(pb))
272 goto fail;
273 tag = get_le32(pb);
274 size = get_le32(pb);
275 #ifdef DEBUG
276 print_tag("tag", tag, size);
277 #endif
279 switch(tag) {
280 case MKTAG('L', 'I', 'S', 'T'):
281 list_end = url_ftell(pb) + size;
282 /* Ignored, except at start of video packets. */
283 tag1 = get_le32(pb);
284 #ifdef DEBUG
285 print_tag("list", tag1, 0);
286 #endif
287 if (tag1 == MKTAG('m', 'o', 'v', 'i')) {
288 avi->movi_list = url_ftell(pb) - 4;
289 if(size) avi->movi_end = avi->movi_list + size + (size & 1);
290 else avi->movi_end = url_fsize(pb);
291 dprintf(NULL, "movi end=%"PRIx64"\n", avi->movi_end);
292 goto end_of_header;
294 break;
295 case MKTAG('d', 'm', 'l', 'h'):
296 avi->is_odml = 1;
297 url_fskip(pb, size + (size & 1));
298 break;
299 case MKTAG('a', 'm', 'v', 'h'):
300 amv_file_format=1;
301 case MKTAG('a', 'v', 'i', 'h'):
302 /* AVI header */
303 /* using frame_period is bad idea */
304 frame_period = get_le32(pb);
305 bit_rate = get_le32(pb) * 8;
306 get_le32(pb);
307 avi->non_interleaved |= get_le32(pb) & AVIF_MUSTUSEINDEX;
309 url_fskip(pb, 2 * 4);
310 get_le32(pb);
311 get_le32(pb);
312 avih_width=get_le32(pb);
313 avih_height=get_le32(pb);
315 url_fskip(pb, size - 10 * 4);
316 break;
317 case MKTAG('s', 't', 'r', 'h'):
318 /* stream header */
320 tag1 = get_le32(pb);
321 handler = get_le32(pb); /* codec tag */
323 if(tag1 == MKTAG('p', 'a', 'd', 's')){
324 url_fskip(pb, size - 8);
325 break;
326 }else{
327 stream_index++;
328 st = av_new_stream(s, stream_index);
329 if (!st)
330 goto fail;
332 ast = av_mallocz(sizeof(AVIStream));
333 if (!ast)
334 goto fail;
335 st->priv_data = ast;
337 if(amv_file_format)
338 tag1 = stream_index ? MKTAG('a','u','d','s') : MKTAG('v','i','d','s');
340 #ifdef DEBUG
341 print_tag("strh", tag1, -1);
342 #endif
343 if(tag1 == MKTAG('i', 'a', 'v', 's') || tag1 == MKTAG('i', 'v', 'a', 's')){
344 int64_t dv_dur;
347 * After some consideration -- I don't think we
348 * have to support anything but DV in type1 AVIs.
350 if (s->nb_streams != 1)
351 goto fail;
353 if (handler != MKTAG('d', 'v', 's', 'd') &&
354 handler != MKTAG('d', 'v', 'h', 'd') &&
355 handler != MKTAG('d', 'v', 's', 'l'))
356 goto fail;
358 ast = s->streams[0]->priv_data;
359 av_freep(&s->streams[0]->codec->extradata);
360 av_freep(&s->streams[0]);
361 s->nb_streams = 0;
362 if (CONFIG_DV_DEMUXER) {
363 avi->dv_demux = dv_init_demux(s);
364 if (!avi->dv_demux)
365 goto fail;
367 s->streams[0]->priv_data = ast;
368 url_fskip(pb, 3 * 4);
369 ast->scale = get_le32(pb);
370 ast->rate = get_le32(pb);
371 url_fskip(pb, 4); /* start time */
373 dv_dur = get_le32(pb);
374 if (ast->scale > 0 && ast->rate > 0 && dv_dur > 0) {
375 dv_dur *= AV_TIME_BASE;
376 s->duration = av_rescale(dv_dur, ast->scale, ast->rate);
379 * else, leave duration alone; timing estimation in utils.c
380 * will make a guess based on bitrate.
383 stream_index = s->nb_streams - 1;
384 url_fskip(pb, size - 9*4);
385 break;
388 assert(stream_index < s->nb_streams);
389 st->codec->stream_codec_tag= handler;
391 get_le32(pb); /* flags */
392 get_le16(pb); /* priority */
393 get_le16(pb); /* language */
394 get_le32(pb); /* initial frame */
395 ast->scale = get_le32(pb);
396 ast->rate = get_le32(pb);
397 if(!(ast->scale && ast->rate)){
398 av_log(s, AV_LOG_WARNING, "scale/rate is %u/%u which is invalid. (This file has been generated by broken software.)\n", ast->scale, ast->rate);
399 if(frame_period){
400 ast->rate = 1000000;
401 ast->scale = frame_period;
402 }else{
403 ast->rate = 25;
404 ast->scale = 1;
407 av_set_pts_info(st, 64, ast->scale, ast->rate);
409 ast->cum_len=get_le32(pb); /* start */
410 nb_frames = get_le32(pb);
412 st->start_time = 0;
413 st->duration = nb_frames;
414 get_le32(pb); /* buffer size */
415 get_le32(pb); /* quality */
416 ast->sample_size = get_le32(pb); /* sample ssize */
417 ast->cum_len *= FFMAX(1, ast->sample_size);
418 // av_log(s, AV_LOG_DEBUG, "%d %d %d %d\n", ast->rate, ast->scale, ast->start, ast->sample_size);
420 switch(tag1) {
421 case MKTAG('v', 'i', 'd', 's'):
422 codec_type = CODEC_TYPE_VIDEO;
424 ast->sample_size = 0;
425 break;
426 case MKTAG('a', 'u', 'd', 's'):
427 codec_type = CODEC_TYPE_AUDIO;
428 break;
429 case MKTAG('t', 'x', 't', 's'):
430 //FIXME
431 codec_type = CODEC_TYPE_DATA; //CODEC_TYPE_SUB ? FIXME
432 break;
433 case MKTAG('d', 'a', 't', 's'):
434 codec_type = CODEC_TYPE_DATA;
435 break;
436 default:
437 av_log(s, AV_LOG_ERROR, "unknown stream type %X\n", tag1);
438 goto fail;
440 ast->frame_offset= ast->cum_len;
441 url_fskip(pb, size - 12 * 4);
442 break;
443 case MKTAG('s', 't', 'r', 'f'):
444 /* stream header */
445 if (stream_index >= (unsigned)s->nb_streams || avi->dv_demux) {
446 url_fskip(pb, size);
447 } else {
448 uint64_t cur_pos = url_ftell(pb);
449 if (cur_pos < list_end)
450 size = FFMIN(size, list_end - cur_pos);
451 st = s->streams[stream_index];
452 switch(codec_type) {
453 case CODEC_TYPE_VIDEO:
454 if(amv_file_format){
455 st->codec->width=avih_width;
456 st->codec->height=avih_height;
457 st->codec->codec_type = CODEC_TYPE_VIDEO;
458 st->codec->codec_id = CODEC_ID_AMV;
459 url_fskip(pb, size);
460 break;
462 get_le32(pb); /* size */
463 st->codec->width = get_le32(pb);
464 st->codec->height = (int32_t)get_le32(pb);
465 get_le16(pb); /* panes */
466 st->codec->bits_per_coded_sample= get_le16(pb); /* depth */
467 tag1 = get_le32(pb);
468 get_le32(pb); /* ImageSize */
469 get_le32(pb); /* XPelsPerMeter */
470 get_le32(pb); /* YPelsPerMeter */
471 get_le32(pb); /* ClrUsed */
472 get_le32(pb); /* ClrImportant */
474 if (tag1 == MKTAG('D', 'X', 'S', 'B')) {
475 st->codec->codec_type = CODEC_TYPE_SUBTITLE;
476 st->codec->codec_tag = tag1;
477 st->codec->codec_id = CODEC_ID_XSUB;
478 break;
481 if(size > 10*4 && size<(1<<30)){
482 st->codec->extradata_size= size - 10*4;
483 st->codec->extradata= av_malloc(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
484 if (!st->codec->extradata) {
485 st->codec->extradata_size= 0;
486 return AVERROR(ENOMEM);
488 get_buffer(pb, st->codec->extradata, st->codec->extradata_size);
491 if(st->codec->extradata_size & 1) //FIXME check if the encoder really did this correctly
492 get_byte(pb);
494 /* Extract palette from extradata if bpp <= 8. */
495 /* This code assumes that extradata contains only palette. */
496 /* This is true for all paletted codecs implemented in FFmpeg. */
497 if (st->codec->extradata_size && (st->codec->bits_per_coded_sample <= 8)) {
498 st->codec->palctrl = av_mallocz(sizeof(AVPaletteControl));
499 #if HAVE_BIGENDIAN
500 for (i = 0; i < FFMIN(st->codec->extradata_size, AVPALETTE_SIZE)/4; i++)
501 st->codec->palctrl->palette[i] = bswap_32(((uint32_t*)st->codec->extradata)[i]);
502 #else
503 memcpy(st->codec->palctrl->palette, st->codec->extradata,
504 FFMIN(st->codec->extradata_size, AVPALETTE_SIZE));
505 #endif
506 st->codec->palctrl->palette_changed = 1;
509 #ifdef DEBUG
510 print_tag("video", tag1, 0);
511 #endif
512 st->codec->codec_type = CODEC_TYPE_VIDEO;
513 st->codec->codec_tag = tag1;
514 st->codec->codec_id = ff_codec_get_id(ff_codec_bmp_tags, tag1);
515 st->need_parsing = AVSTREAM_PARSE_HEADERS; // This is needed to get the pict type which is necessary for generating correct pts.
517 if(st->codec->codec_tag==0 && st->codec->height > 0 && st->codec->extradata_size < 1U<<30){
518 st->codec->extradata_size+= 9;
519 st->codec->extradata= av_realloc(st->codec->extradata, st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
520 if(st->codec->extradata)
521 memcpy(st->codec->extradata + st->codec->extradata_size - 9, "BottomUp", 9);
523 st->codec->height= FFABS(st->codec->height);
525 // url_fskip(pb, size - 5 * 4);
526 break;
527 case CODEC_TYPE_AUDIO:
528 ff_get_wav_header(pb, st->codec, size);
529 if(ast->sample_size && st->codec->block_align && ast->sample_size != st->codec->block_align){
530 av_log(s, AV_LOG_WARNING, "sample size (%d) != block align (%d)\n", ast->sample_size, st->codec->block_align);
531 ast->sample_size= st->codec->block_align;
533 if (size%2) /* 2-aligned (fix for Stargate SG-1 - 3x18 - Shades of Grey.avi) */
534 url_fskip(pb, 1);
535 /* Force parsing as several audio frames can be in
536 * one packet and timestamps refer to packet start. */
537 st->need_parsing = AVSTREAM_PARSE_TIMESTAMPS;
538 /* ADTS header is in extradata, AAC without header must be
539 * stored as exact frames. Parser not needed and it will
540 * fail. */
541 if (st->codec->codec_id == CODEC_ID_AAC && st->codec->extradata_size)
542 st->need_parsing = AVSTREAM_PARSE_NONE;
543 /* AVI files with Xan DPCM audio (wrongly) declare PCM
544 * audio in the header but have Axan as stream_code_tag. */
545 if (st->codec->stream_codec_tag == AV_RL32("Axan")){
546 st->codec->codec_id = CODEC_ID_XAN_DPCM;
547 st->codec->codec_tag = 0;
549 if (amv_file_format)
550 st->codec->codec_id = CODEC_ID_ADPCM_IMA_AMV;
551 break;
552 default:
553 st->codec->codec_type = CODEC_TYPE_DATA;
554 st->codec->codec_id= CODEC_ID_NONE;
555 st->codec->codec_tag= 0;
556 url_fskip(pb, size);
557 break;
560 break;
561 case MKTAG('i', 'n', 'd', 'x'):
562 i= url_ftell(pb);
563 if(!url_is_streamed(pb) && !(s->flags & AVFMT_FLAG_IGNIDX)){
564 read_braindead_odml_indx(s, 0);
566 url_fseek(pb, i+size, SEEK_SET);
567 break;
568 case MKTAG('v', 'p', 'r', 'p'):
569 if(stream_index < (unsigned)s->nb_streams && size > 9*4){
570 AVRational active, active_aspect;
572 st = s->streams[stream_index];
573 get_le32(pb);
574 get_le32(pb);
575 get_le32(pb);
576 get_le32(pb);
577 get_le32(pb);
579 active_aspect.den= get_le16(pb);
580 active_aspect.num= get_le16(pb);
581 active.num = get_le32(pb);
582 active.den = get_le32(pb);
583 get_le32(pb); //nbFieldsPerFrame
585 if(active_aspect.num && active_aspect.den && active.num && active.den){
586 st->sample_aspect_ratio= av_div_q(active_aspect, active);
587 //av_log(s, AV_LOG_ERROR, "vprp %d/%d %d/%d\n", active_aspect.num, active_aspect.den, active.num, active.den);
589 size -= 9*4;
591 url_fseek(pb, size, SEEK_CUR);
592 break;
593 case MKTAG('I', 'N', 'A', 'M'):
594 avi_read_tag(s, "Title", size);
595 break;
596 case MKTAG('I', 'A', 'R', 'T'):
597 avi_read_tag(s, "Artist", size);
598 break;
599 case MKTAG('I', 'C', 'O', 'P'):
600 avi_read_tag(s, "Copyright", size);
601 break;
602 case MKTAG('I', 'C', 'M', 'T'):
603 avi_read_tag(s, "Comment", size);
604 break;
605 case MKTAG('I', 'G', 'N', 'R'):
606 avi_read_tag(s, "Genre", size);
607 break;
608 case MKTAG('I', 'P', 'R', 'D'):
609 avi_read_tag(s, "Album", size);
610 break;
611 case MKTAG('I', 'P', 'R', 'T'):
612 avi_read_tag(s, "Track", size);
613 break;
614 default:
615 if(size > 1000000){
616 av_log(s, AV_LOG_ERROR, "Something went wrong during header parsing, "
617 "I will ignore it and try to continue anyway.\n");
618 avi->movi_list = url_ftell(pb) - 4;
619 avi->movi_end = url_fsize(pb);
620 goto end_of_header;
622 /* skip tag */
623 size += (size & 1);
624 url_fskip(pb, size);
625 break;
628 end_of_header:
629 /* check stream number */
630 if (stream_index != s->nb_streams - 1) {
631 fail:
632 return -1;
635 if(!avi->index_loaded && !url_is_streamed(pb))
636 avi_load_index(s);
637 avi->index_loaded = 1;
638 avi->non_interleaved |= guess_ni_flag(s);
639 if(avi->non_interleaved) {
640 av_log(s, AV_LOG_INFO, "non-interleaved AVI\n");
641 clean_index(s);
644 return 0;
647 static int get_stream_idx(int *d){
648 if( d[0] >= '0' && d[0] <= '9'
649 && d[1] >= '0' && d[1] <= '9'){
650 return (d[0] - '0') * 10 + (d[1] - '0');
651 }else{
652 return 100; //invalid stream ID
656 static int avi_read_packet(AVFormatContext *s, AVPacket *pkt)
658 AVIContext *avi = s->priv_data;
659 ByteIOContext *pb = s->pb;
660 int n, d[8];
661 unsigned int size;
662 int64_t i, sync;
663 void* dstr;
665 if (CONFIG_DV_DEMUXER && avi->dv_demux) {
666 int size = dv_get_packet(avi->dv_demux, pkt);
667 if (size >= 0)
668 return size;
671 if(avi->non_interleaved){
672 int best_stream_index = 0;
673 AVStream *best_st= NULL;
674 AVIStream *best_ast;
675 int64_t best_ts= INT64_MAX;
676 int i;
678 for(i=0; i<s->nb_streams; i++){
679 AVStream *st = s->streams[i];
680 AVIStream *ast = st->priv_data;
681 int64_t ts= ast->frame_offset;
683 if(ast->sample_size)
684 ts /= ast->sample_size;
685 ts= av_rescale(ts, AV_TIME_BASE * (int64_t)st->time_base.num, st->time_base.den);
687 // av_log(s, AV_LOG_DEBUG, "%"PRId64" %d/%d %"PRId64"\n", ts, st->time_base.num, st->time_base.den, ast->frame_offset);
688 if(ts < best_ts && st->nb_index_entries){
689 best_ts= ts;
690 best_st= st;
691 best_stream_index= i;
694 if(!best_st)
695 return -1;
697 best_ast = best_st->priv_data;
698 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
699 if(best_ast->remaining)
700 i= av_index_search_timestamp(best_st, best_ts, AVSEEK_FLAG_ANY | AVSEEK_FLAG_BACKWARD);
701 else{
702 i= av_index_search_timestamp(best_st, best_ts, AVSEEK_FLAG_ANY);
703 if(i>=0)
704 best_ast->frame_offset= best_st->index_entries[i].timestamp
705 * FFMAX(1, best_ast->sample_size);
708 // av_log(s, AV_LOG_DEBUG, "%d\n", i);
709 if(i>=0){
710 int64_t pos= best_st->index_entries[i].pos;
711 pos += best_ast->packet_size - best_ast->remaining;
712 url_fseek(s->pb, pos + 8, SEEK_SET);
713 // av_log(s, AV_LOG_DEBUG, "pos=%"PRId64"\n", pos);
715 assert(best_ast->remaining <= best_ast->packet_size);
717 avi->stream_index= best_stream_index;
718 if(!best_ast->remaining)
719 best_ast->packet_size=
720 best_ast->remaining= best_st->index_entries[i].size;
724 resync:
725 if(avi->stream_index >= 0){
726 AVStream *st= s->streams[ avi->stream_index ];
727 AVIStream *ast= st->priv_data;
728 int size, err;
730 if(ast->sample_size <= 1) // minorityreport.AVI block_align=1024 sample_size=1 IMA-ADPCM
731 size= INT_MAX;
732 else if(ast->sample_size < 32)
733 size= 64*ast->sample_size;
734 else
735 size= ast->sample_size;
737 if(size > ast->remaining)
738 size= ast->remaining;
739 avi->last_pkt_pos= url_ftell(pb);
740 err= av_get_packet(pb, pkt, size);
741 if(err<0)
742 return err;
744 if(ast->has_pal && pkt->data && pkt->size<(unsigned)INT_MAX/2){
745 void *ptr= av_realloc(pkt->data, pkt->size + 4*256 + FF_INPUT_BUFFER_PADDING_SIZE);
746 if(ptr){
747 ast->has_pal=0;
748 pkt->size += 4*256;
749 pkt->data= ptr;
750 memcpy(pkt->data + pkt->size - 4*256, ast->pal, 4*256);
751 }else
752 av_log(s, AV_LOG_ERROR, "Failed to append palette\n");
755 if (CONFIG_DV_DEMUXER && avi->dv_demux) {
756 dstr = pkt->destruct;
757 size = dv_produce_packet(avi->dv_demux, pkt,
758 pkt->data, pkt->size);
759 pkt->destruct = dstr;
760 pkt->flags |= PKT_FLAG_KEY;
761 } else {
762 /* XXX: How to handle B-frames in AVI? */
763 pkt->dts = ast->frame_offset;
764 // pkt->dts += ast->start;
765 if(ast->sample_size)
766 pkt->dts /= ast->sample_size;
767 //av_log(s, AV_LOG_DEBUG, "dts:%"PRId64" offset:%"PRId64" %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);
768 pkt->stream_index = avi->stream_index;
770 if (st->codec->codec_type == CODEC_TYPE_VIDEO) {
771 AVIndexEntry *e;
772 int index;
773 assert(st->index_entries);
775 index= av_index_search_timestamp(st, pkt->dts, 0);
776 e= &st->index_entries[index];
778 if(index >= 0 && e->timestamp == ast->frame_offset){
779 if (e->flags & AVINDEX_KEYFRAME)
780 pkt->flags |= PKT_FLAG_KEY;
782 } else {
783 pkt->flags |= PKT_FLAG_KEY;
785 if(ast->sample_size)
786 ast->frame_offset += pkt->size;
787 else
788 ast->frame_offset++;
790 ast->remaining -= size;
791 if(!ast->remaining){
792 avi->stream_index= -1;
793 ast->packet_size= 0;
796 return size;
799 memset(d, -1, sizeof(int)*8);
800 for(i=sync=url_ftell(pb); !url_feof(pb); i++) {
801 int j;
803 for(j=0; j<7; j++)
804 d[j]= d[j+1];
805 d[7]= get_byte(pb);
807 size= d[4] + (d[5]<<8) + (d[6]<<16) + (d[7]<<24);
809 n= get_stream_idx(d+2);
810 //av_log(s, AV_LOG_DEBUG, "%X %X %X %X %X %X %X %X %"PRId64" %d %d\n", d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7], i, size, n);
811 if(i + (uint64_t)size > avi->fsize || d[0]<0)
812 continue;
814 //parse ix##
815 if( (d[0] == 'i' && d[1] == 'x' && n < s->nb_streams)
816 //parse JUNK
817 ||(d[0] == 'J' && d[1] == 'U' && d[2] == 'N' && d[3] == 'K')
818 ||(d[0] == 'i' && d[1] == 'd' && d[2] == 'x' && d[3] == '1')){
819 url_fskip(pb, size);
820 //av_log(s, AV_LOG_DEBUG, "SKIP\n");
821 goto resync;
824 n= get_stream_idx(d);
826 if(!((i-avi->last_pkt_pos)&1) && get_stream_idx(d+1) < s->nb_streams)
827 continue;
829 //parse ##dc/##wb
830 if(n < s->nb_streams){
831 AVStream *st;
832 AVIStream *ast;
833 st = s->streams[n];
834 ast = st->priv_data;
836 if(s->nb_streams>=2){
837 AVStream *st1 = s->streams[1];
838 AVIStream *ast1= st1->priv_data;
839 //workaround for broken small-file-bug402.avi
840 if( d[2] == 'w' && d[3] == 'b'
841 && n==0
842 && st ->codec->codec_type == CODEC_TYPE_VIDEO
843 && st1->codec->codec_type == CODEC_TYPE_AUDIO
844 && ast->prefix == 'd'*256+'c'
845 && (d[2]*256+d[3] == ast1->prefix || !ast1->prefix_count)
847 n=1;
848 st = st1;
849 ast = ast1;
850 av_log(s, AV_LOG_WARNING, "Invalid stream + prefix combination, assuming audio.\n");
855 if( (st->discard >= AVDISCARD_DEFAULT && size==0)
856 /*|| (st->discard >= AVDISCARD_NONKEY && !(pkt->flags & PKT_FLAG_KEY))*/ //FIXME needs a little reordering
857 || st->discard >= AVDISCARD_ALL){
858 if(ast->sample_size) ast->frame_offset += pkt->size;
859 else ast->frame_offset++;
860 url_fskip(pb, size);
861 goto resync;
864 if (d[2] == 'p' && d[3] == 'c' && size<=4*256+4) {
865 int k = get_byte(pb);
866 int last = (k + get_byte(pb) - 1) & 0xFF;
868 get_le16(pb); //flags
870 for (; k <= last; k++)
871 ast->pal[k] = get_be32(pb)>>8;// b + (g << 8) + (r << 16);
872 ast->has_pal= 1;
873 goto resync;
874 } else if( ((ast->prefix_count<5 || sync+9 > i) && d[2]<128 && d[3]<128) ||
875 d[2]*256+d[3] == ast->prefix /*||
876 (d[2] == 'd' && d[3] == 'c') ||
877 (d[2] == 'w' && d[3] == 'b')*/) {
879 //av_log(s, AV_LOG_DEBUG, "OK\n");
880 if(d[2]*256+d[3] == ast->prefix)
881 ast->prefix_count++;
882 else{
883 ast->prefix= d[2]*256+d[3];
884 ast->prefix_count= 0;
887 avi->stream_index= n;
888 ast->packet_size= size + 8;
889 ast->remaining= size;
892 uint64_t pos= url_ftell(pb) - 8;
893 if(!st->index_entries || !st->nb_index_entries || st->index_entries[st->nb_index_entries - 1].pos < pos){
894 av_add_index_entry(st, pos, ast->frame_offset / FFMAX(1, ast->sample_size), size, 0, AVINDEX_KEYFRAME);
897 goto resync;
902 return AVERROR_EOF;
905 /* XXX: We make the implicit supposition that the positions are sorted
906 for each stream. */
907 static int avi_read_idx1(AVFormatContext *s, int size)
909 AVIContext *avi = s->priv_data;
910 ByteIOContext *pb = s->pb;
911 int nb_index_entries, i;
912 AVStream *st;
913 AVIStream *ast;
914 unsigned int index, tag, flags, pos, len;
915 unsigned last_pos= -1;
917 nb_index_entries = size / 16;
918 if (nb_index_entries <= 0)
919 return -1;
921 /* Read the entries and sort them in each stream component. */
922 for(i = 0; i < nb_index_entries; i++) {
923 tag = get_le32(pb);
924 flags = get_le32(pb);
925 pos = get_le32(pb);
926 len = get_le32(pb);
927 #if defined(DEBUG_SEEK)
928 av_log(s, AV_LOG_DEBUG, "%d: tag=0x%x flags=0x%x pos=0x%x len=%d/",
929 i, tag, flags, pos, len);
930 #endif
931 if(i==0 && pos > avi->movi_list)
932 avi->movi_list= 0; //FIXME better check
933 pos += avi->movi_list;
935 index = ((tag & 0xff) - '0') * 10;
936 index += ((tag >> 8) & 0xff) - '0';
937 if (index >= s->nb_streams)
938 continue;
939 st = s->streams[index];
940 ast = st->priv_data;
942 #if defined(DEBUG_SEEK)
943 av_log(s, AV_LOG_DEBUG, "%d cum_len=%"PRId64"\n", len, ast->cum_len);
944 #endif
945 if(url_feof(pb))
946 return -1;
948 if(last_pos == pos)
949 avi->non_interleaved= 1;
950 else
951 av_add_index_entry(st, pos, ast->cum_len / FFMAX(1, ast->sample_size), len, 0, (flags&AVIIF_INDEX) ? AVINDEX_KEYFRAME : 0);
952 if(ast->sample_size)
953 ast->cum_len += len;
954 else
955 ast->cum_len ++;
956 last_pos= pos;
958 return 0;
961 static int guess_ni_flag(AVFormatContext *s){
962 int i;
963 int64_t last_start=0;
964 int64_t first_end= INT64_MAX;
965 int64_t oldpos= url_ftell(s->pb);
967 for(i=0; i<s->nb_streams; i++){
968 AVStream *st = s->streams[i];
969 int n= st->nb_index_entries;
970 unsigned int size;
972 if(n <= 0)
973 continue;
975 if(n >= 2){
976 int64_t pos= st->index_entries[0].pos;
977 url_fseek(s->pb, pos + 4, SEEK_SET);
978 size= get_le32(s->pb);
979 if(pos + size > st->index_entries[1].pos)
980 last_start= INT64_MAX;
983 if(st->index_entries[0].pos > last_start)
984 last_start= st->index_entries[0].pos;
985 if(st->index_entries[n-1].pos < first_end)
986 first_end= st->index_entries[n-1].pos;
988 url_fseek(s->pb, oldpos, SEEK_SET);
989 return last_start > first_end;
992 static int avi_load_index(AVFormatContext *s)
994 AVIContext *avi = s->priv_data;
995 ByteIOContext *pb = s->pb;
996 uint32_t tag, size;
997 int64_t pos= url_ftell(pb);
999 url_fseek(pb, avi->movi_end, SEEK_SET);
1000 #ifdef DEBUG_SEEK
1001 printf("movi_end=0x%"PRIx64"\n", avi->movi_end);
1002 #endif
1003 for(;;) {
1004 if (url_feof(pb))
1005 break;
1006 tag = get_le32(pb);
1007 size = get_le32(pb);
1008 #ifdef DEBUG_SEEK
1009 printf("tag=%c%c%c%c size=0x%x\n",
1010 tag & 0xff,
1011 (tag >> 8) & 0xff,
1012 (tag >> 16) & 0xff,
1013 (tag >> 24) & 0xff,
1014 size);
1015 #endif
1016 switch(tag) {
1017 case MKTAG('i', 'd', 'x', '1'):
1018 if (avi_read_idx1(s, size) < 0)
1019 goto skip;
1020 else
1021 goto the_end;
1022 break;
1023 default:
1024 skip:
1025 size += (size & 1);
1026 url_fskip(pb, size);
1027 break;
1030 the_end:
1031 url_fseek(pb, pos, SEEK_SET);
1032 return 0;
1035 static int avi_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
1037 AVIContext *avi = s->priv_data;
1038 AVStream *st;
1039 int i, index;
1040 int64_t pos;
1042 if (!avi->index_loaded) {
1043 /* we only load the index on demand */
1044 avi_load_index(s);
1045 avi->index_loaded = 1;
1047 assert(stream_index>= 0);
1049 st = s->streams[stream_index];
1050 index= av_index_search_timestamp(st, timestamp, flags);
1051 if(index<0)
1052 return -1;
1054 /* find the position */
1055 pos = st->index_entries[index].pos;
1056 timestamp = st->index_entries[index].timestamp;
1058 // av_log(s, AV_LOG_DEBUG, "XX %"PRId64" %d %"PRId64"\n", timestamp, index, st->index_entries[index].timestamp);
1060 if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1061 /* One and only one real stream for DV in AVI, and it has video */
1062 /* offsets. Calling with other stream indexes should have failed */
1063 /* the av_index_search_timestamp call above. */
1064 assert(stream_index == 0);
1066 /* Feed the DV video stream version of the timestamp to the */
1067 /* DV demux so it can synthesize correct timestamps. */
1068 dv_offset_reset(avi->dv_demux, timestamp);
1070 url_fseek(s->pb, pos, SEEK_SET);
1071 avi->stream_index= -1;
1072 return 0;
1075 for(i = 0; i < s->nb_streams; i++) {
1076 AVStream *st2 = s->streams[i];
1077 AVIStream *ast2 = st2->priv_data;
1079 ast2->packet_size=
1080 ast2->remaining= 0;
1082 if (st2->nb_index_entries <= 0)
1083 continue;
1085 // assert(st2->codec->block_align);
1086 assert((int64_t)st2->time_base.num*ast2->rate == (int64_t)st2->time_base.den*ast2->scale);
1087 index = av_index_search_timestamp(
1088 st2,
1089 av_rescale(timestamp, st2->time_base.den*(int64_t)st->time_base.num, st->time_base.den * (int64_t)st2->time_base.num),
1090 flags | AVSEEK_FLAG_BACKWARD);
1091 if(index<0)
1092 index=0;
1094 if(!avi->non_interleaved){
1095 while(index>0 && st2->index_entries[index].pos > pos)
1096 index--;
1097 while(index+1 < st2->nb_index_entries && st2->index_entries[index].pos < pos)
1098 index++;
1101 // av_log(s, AV_LOG_DEBUG, "%"PRId64" %d %"PRId64"\n", timestamp, index, st2->index_entries[index].timestamp);
1102 /* extract the current frame number */
1103 ast2->frame_offset = st2->index_entries[index].timestamp;
1104 if(ast2->sample_size)
1105 ast2->frame_offset *=ast2->sample_size;
1108 /* do the seek */
1109 url_fseek(s->pb, pos, SEEK_SET);
1110 avi->stream_index= -1;
1111 return 0;
1114 static int avi_read_close(AVFormatContext *s)
1116 int i;
1117 AVIContext *avi = s->priv_data;
1119 for(i=0;i<s->nb_streams;i++) {
1120 AVStream *st = s->streams[i];
1121 av_free(st->codec->palctrl);
1124 if (avi->dv_demux)
1125 av_free(avi->dv_demux);
1127 return 0;
1130 static int avi_probe(AVProbeData *p)
1132 int i;
1134 /* check file header */
1135 for(i=0; avi_headers[i][0]; i++)
1136 if(!memcmp(p->buf , avi_headers[i] , 4) &&
1137 !memcmp(p->buf+8, avi_headers[i]+4, 4))
1138 return AVPROBE_SCORE_MAX;
1140 return 0;
1143 AVInputFormat avi_demuxer = {
1144 "avi",
1145 NULL_IF_CONFIG_SMALL("AVI format"),
1146 sizeof(AVIContext),
1147 avi_probe,
1148 avi_read_header,
1149 avi_read_packet,
1150 avi_read_close,
1151 avi_read_seek,