]> git.sesse.net Git - ffmpeg/blob - libavformat/avidec.c
avformat/flvdec: remove meaningless warning
[ffmpeg] / libavformat / avidec.c
1 /*
2  * AVI demuxer
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include <inttypes.h>
23
24 #include "libavutil/avassert.h"
25 #include "libavutil/avstring.h"
26 #include "libavutil/bswap.h"
27 #include "libavutil/opt.h"
28 #include "libavutil/dict.h"
29 #include "libavutil/internal.h"
30 #include "libavutil/intreadwrite.h"
31 #include "libavutil/mathematics.h"
32 #include "avformat.h"
33 #include "avi.h"
34 #include "dv.h"
35 #include "internal.h"
36 #include "isom.h"
37 #include "riff.h"
38 #include "libavcodec/bytestream.h"
39 #include "libavcodec/exif.h"
40 #include "libavcodec/internal.h"
41
42 typedef struct AVIStream {
43     int64_t frame_offset;   /* current frame (video) or byte (audio) counter
44                              * (used to compute the pts) */
45     int remaining;
46     int packet_size;
47
48     uint32_t handler;
49     uint32_t scale;
50     uint32_t rate;
51     int sample_size;        /* size of one sample (or packet)
52                              * (in the rate/scale sense) in bytes */
53
54     int64_t cum_len;        /* temporary storage (used during seek) */
55     int prefix;             /* normally 'd'<<8 + 'c' or 'w'<<8 + 'b' */
56     int prefix_count;
57     uint32_t pal[256];
58     int has_pal;
59     int dshow_block_align;  /* block align variable used to emulate bugs in
60                              * the MS dshow demuxer */
61
62     AVFormatContext *sub_ctx;
63     AVPacket sub_pkt;
64     uint8_t *sub_buffer;
65
66     int64_t seek_pos;
67 } AVIStream;
68
69 typedef struct AVIContext {
70     const AVClass *class;
71     int64_t riff_end;
72     int64_t movi_end;
73     int64_t fsize;
74     int64_t io_fsize;
75     int64_t movi_list;
76     int64_t last_pkt_pos;
77     int index_loaded;
78     int is_odml;
79     int non_interleaved;
80     int stream_index;
81     DVDemuxContext *dv_demux;
82     int odml_depth;
83     int use_odml;
84 #define MAX_ODML_DEPTH 1000
85     int64_t dts_max;
86 } AVIContext;
87
88
89 static const AVOption options[] = {
90     { "use_odml", "use odml index", offsetof(AVIContext, use_odml), AV_OPT_TYPE_BOOL, {.i64 = 1}, -1, 1, AV_OPT_FLAG_DECODING_PARAM},
91     { NULL },
92 };
93
94 static const AVClass demuxer_class = {
95     .class_name = "avi",
96     .item_name  = av_default_item_name,
97     .option     = options,
98     .version    = LIBAVUTIL_VERSION_INT,
99     .category   = AV_CLASS_CATEGORY_DEMUXER,
100 };
101
102
103 static const char avi_headers[][8] = {
104     { 'R', 'I', 'F', 'F', 'A', 'V', 'I', ' '  },
105     { 'R', 'I', 'F', 'F', 'A', 'V', 'I', 'X'  },
106     { 'R', 'I', 'F', 'F', 'A', 'V', 'I', 0x19 },
107     { 'O', 'N', '2', ' ', 'O', 'N', '2', 'f'  },
108     { 'R', 'I', 'F', 'F', 'A', 'M', 'V', ' '  },
109     { 0 }
110 };
111
112 static const AVMetadataConv avi_metadata_conv[] = {
113     { "strn", "title" },
114     { 0 },
115 };
116
117 static int avi_load_index(AVFormatContext *s);
118 static int guess_ni_flag(AVFormatContext *s);
119
120 #define print_tag(str, tag, size)                        \
121     av_log(NULL, AV_LOG_TRACE, "pos:%"PRIX64" %s: tag=%c%c%c%c size=0x%x\n", \
122             avio_tell(pb), str, tag & 0xff,              \
123             (tag >> 8) & 0xff,                           \
124             (tag >> 16) & 0xff,                          \
125             (tag >> 24) & 0xff,                          \
126             size)
127
128 static inline int get_duration(AVIStream *ast, int len)
129 {
130     if (ast->sample_size)
131         return len;
132     else if (ast->dshow_block_align)
133         return (len + ast->dshow_block_align - 1) / ast->dshow_block_align;
134     else
135         return 1;
136 }
137
138 static int get_riff(AVFormatContext *s, AVIOContext *pb)
139 {
140     AVIContext *avi = s->priv_data;
141     char header[8] = {0};
142     int i;
143
144     /* check RIFF header */
145     avio_read(pb, header, 4);
146     avi->riff_end  = avio_rl32(pb); /* RIFF chunk size */
147     avi->riff_end += avio_tell(pb); /* RIFF chunk end */
148     avio_read(pb, header + 4, 4);
149
150     for (i = 0; avi_headers[i][0]; i++)
151         if (!memcmp(header, avi_headers[i], 8))
152             break;
153     if (!avi_headers[i][0])
154         return AVERROR_INVALIDDATA;
155
156     if (header[7] == 0x19)
157         av_log(s, AV_LOG_INFO,
158                "This file has been generated by a totally broken muxer.\n");
159
160     return 0;
161 }
162
163 static int read_odml_index(AVFormatContext *s, int frame_num)
164 {
165     AVIContext *avi     = s->priv_data;
166     AVIOContext *pb     = s->pb;
167     int longs_per_entry = avio_rl16(pb);
168     int index_sub_type  = avio_r8(pb);
169     int index_type      = avio_r8(pb);
170     int entries_in_use  = avio_rl32(pb);
171     int chunk_id        = avio_rl32(pb);
172     int64_t base        = avio_rl64(pb);
173     int stream_id       = ((chunk_id      & 0xFF) - '0') * 10 +
174                           ((chunk_id >> 8 & 0xFF) - '0');
175     AVStream *st;
176     AVIStream *ast;
177     int i;
178     int64_t last_pos = -1;
179     int64_t filesize = avi->fsize;
180
181     av_log(s, AV_LOG_TRACE,
182             "longs_per_entry:%d index_type:%d entries_in_use:%d "
183             "chunk_id:%X base:%16"PRIX64" frame_num:%d\n",
184             longs_per_entry,
185             index_type,
186             entries_in_use,
187             chunk_id,
188             base,
189             frame_num);
190
191     if (stream_id >= s->nb_streams || stream_id < 0)
192         return AVERROR_INVALIDDATA;
193     st  = s->streams[stream_id];
194     ast = st->priv_data;
195
196     if (index_sub_type)
197         return AVERROR_INVALIDDATA;
198
199     avio_rl32(pb);
200
201     if (index_type && longs_per_entry != 2)
202         return AVERROR_INVALIDDATA;
203     if (index_type > 1)
204         return AVERROR_INVALIDDATA;
205
206     if (filesize > 0 && base >= filesize) {
207         av_log(s, AV_LOG_ERROR, "ODML index invalid\n");
208         if (base >> 32 == (base & 0xFFFFFFFF) &&
209             (base & 0xFFFFFFFF) < filesize    &&
210             filesize <= 0xFFFFFFFF)
211             base &= 0xFFFFFFFF;
212         else
213             return AVERROR_INVALIDDATA;
214     }
215
216     for (i = 0; i < entries_in_use; i++) {
217         if (index_type) {
218             int64_t pos = avio_rl32(pb) + base - 8;
219             int len     = avio_rl32(pb);
220             int key     = len >= 0;
221             len &= 0x7FFFFFFF;
222
223             av_log(s, AV_LOG_TRACE, "pos:%"PRId64", len:%X\n", pos, len);
224
225             if (avio_feof(pb))
226                 return AVERROR_INVALIDDATA;
227
228             if (last_pos == pos || pos == base - 8)
229                 avi->non_interleaved = 1;
230             if (last_pos != pos && len)
231                 av_add_index_entry(st, pos, ast->cum_len, len, 0,
232                                    key ? AVINDEX_KEYFRAME : 0);
233
234             ast->cum_len += get_duration(ast, len);
235             last_pos      = pos;
236         } else {
237             int64_t offset, pos;
238             int duration;
239             offset = avio_rl64(pb);
240             avio_rl32(pb);       /* size */
241             duration = avio_rl32(pb);
242
243             if (avio_feof(pb))
244                 return AVERROR_INVALIDDATA;
245
246             pos = avio_tell(pb);
247
248             if (avi->odml_depth > MAX_ODML_DEPTH) {
249                 av_log(s, AV_LOG_ERROR, "Too deeply nested ODML indexes\n");
250                 return AVERROR_INVALIDDATA;
251             }
252
253             if (avio_seek(pb, offset + 8, SEEK_SET) < 0)
254                 return -1;
255             avi->odml_depth++;
256             read_odml_index(s, frame_num);
257             avi->odml_depth--;
258             frame_num += duration;
259
260             if (avio_seek(pb, pos, SEEK_SET) < 0) {
261                 av_log(s, AV_LOG_ERROR, "Failed to restore position after reading index\n");
262                 return -1;
263             }
264
265         }
266     }
267     avi->index_loaded = 2;
268     return 0;
269 }
270
271 static void clean_index(AVFormatContext *s)
272 {
273     int i;
274     int64_t j;
275
276     for (i = 0; i < s->nb_streams; i++) {
277         AVStream *st   = s->streams[i];
278         AVIStream *ast = st->priv_data;
279         int n          = st->nb_index_entries;
280         int max        = ast->sample_size;
281         int64_t pos, size, ts;
282
283         if (n != 1 || ast->sample_size == 0)
284             continue;
285
286         while (max < 1024)
287             max += max;
288
289         pos  = st->index_entries[0].pos;
290         size = st->index_entries[0].size;
291         ts   = st->index_entries[0].timestamp;
292
293         for (j = 0; j < size; j += max)
294             av_add_index_entry(st, pos + j, ts + j, FFMIN(max, size - j), 0,
295                                AVINDEX_KEYFRAME);
296     }
297 }
298
299 static int avi_read_tag(AVFormatContext *s, AVStream *st, uint32_t tag,
300                         uint32_t size)
301 {
302     AVIOContext *pb = s->pb;
303     char key[5]     = { 0 };
304     char *value;
305
306     size += (size & 1);
307
308     if (size == UINT_MAX)
309         return AVERROR(EINVAL);
310     value = av_malloc(size + 1);
311     if (!value)
312         return AVERROR(ENOMEM);
313     if (avio_read(pb, value, size) != size)
314         return AVERROR_INVALIDDATA;
315     value[size] = 0;
316
317     AV_WL32(key, tag);
318
319     return av_dict_set(st ? &st->metadata : &s->metadata, key, value,
320                        AV_DICT_DONT_STRDUP_VAL);
321 }
322
323 static const char months[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
324                                     "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
325
326 static void avi_metadata_creation_time(AVDictionary **metadata, char *date)
327 {
328     char month[4], time[9], buffer[64];
329     int i, day, year;
330     /* parse standard AVI date format (ie. "Mon Mar 10 15:04:43 2003") */
331     if (sscanf(date, "%*3s%*[ ]%3s%*[ ]%2d%*[ ]%8s%*[ ]%4d",
332                month, &day, time, &year) == 4) {
333         for (i = 0; i < 12; i++)
334             if (!av_strcasecmp(month, months[i])) {
335                 snprintf(buffer, sizeof(buffer), "%.4d-%.2d-%.2d %s",
336                          year, i + 1, day, time);
337                 av_dict_set(metadata, "creation_time", buffer, 0);
338             }
339     } else if (date[4] == '/' && date[7] == '/') {
340         date[4] = date[7] = '-';
341         av_dict_set(metadata, "creation_time", date, 0);
342     }
343 }
344
345 static void avi_read_nikon(AVFormatContext *s, uint64_t end)
346 {
347     while (avio_tell(s->pb) < end && !avio_feof(s->pb)) {
348         uint32_t tag  = avio_rl32(s->pb);
349         uint32_t size = avio_rl32(s->pb);
350         switch (tag) {
351         case MKTAG('n', 'c', 't', 'g'):  /* Nikon Tags */
352         {
353             uint64_t tag_end = avio_tell(s->pb) + size;
354             while (avio_tell(s->pb) < tag_end && !avio_feof(s->pb)) {
355                 uint16_t tag     = avio_rl16(s->pb);
356                 uint16_t size    = avio_rl16(s->pb);
357                 const char *name = NULL;
358                 char buffer[64]  = { 0 };
359                 size = FFMIN(size, tag_end - avio_tell(s->pb));
360                 size -= avio_read(s->pb, buffer,
361                                   FFMIN(size, sizeof(buffer) - 1));
362                 switch (tag) {
363                 case 0x03:
364                     name = "maker";
365                     break;
366                 case 0x04:
367                     name = "model";
368                     break;
369                 case 0x13:
370                     name = "creation_time";
371                     if (buffer[4] == ':' && buffer[7] == ':')
372                         buffer[4] = buffer[7] = '-';
373                     break;
374                 }
375                 if (name)
376                     av_dict_set(&s->metadata, name, buffer, 0);
377                 avio_skip(s->pb, size);
378             }
379             break;
380         }
381         default:
382             avio_skip(s->pb, size);
383             break;
384         }
385     }
386 }
387
388 static int avi_extract_stream_metadata(AVFormatContext *s, AVStream *st)
389 {
390     GetByteContext gb;
391     uint8_t *data = st->codecpar->extradata;
392     int data_size = st->codecpar->extradata_size;
393     int tag, offset;
394
395     if (!data || data_size < 8) {
396         return AVERROR_INVALIDDATA;
397     }
398
399     bytestream2_init(&gb, data, data_size);
400
401     tag = bytestream2_get_le32(&gb);
402
403     switch (tag) {
404     case MKTAG('A', 'V', 'I', 'F'):
405         // skip 4 byte padding
406         bytestream2_skip(&gb, 4);
407         offset = bytestream2_tell(&gb);
408         bytestream2_init(&gb, data + offset, data_size - offset);
409
410         // decode EXIF tags from IFD, AVI is always little-endian
411         return avpriv_exif_decode_ifd(s, &gb, 1, 0, &st->metadata);
412         break;
413     case MKTAG('C', 'A', 'S', 'I'):
414         avpriv_request_sample(s, "RIFF stream data tag type CASI (%u)", tag);
415         break;
416     case MKTAG('Z', 'o', 'r', 'a'):
417         avpriv_request_sample(s, "RIFF stream data tag type Zora (%u)", tag);
418         break;
419     default:
420         break;
421     }
422
423     return 0;
424 }
425
426 static int calculate_bitrate(AVFormatContext *s)
427 {
428     AVIContext *avi = s->priv_data;
429     int i, j;
430     int64_t lensum = 0;
431     int64_t maxpos = 0;
432
433     for (i = 0; i<s->nb_streams; i++) {
434         int64_t len = 0;
435         AVStream *st = s->streams[i];
436
437         if (!st->nb_index_entries)
438             continue;
439
440         for (j = 0; j < st->nb_index_entries; j++)
441             len += st->index_entries[j].size;
442         maxpos = FFMAX(maxpos, st->index_entries[j-1].pos);
443         lensum += len;
444     }
445     if (maxpos < avi->io_fsize*9/10) // index does not cover the whole file
446         return 0;
447     if (lensum*9/10 > maxpos || lensum < maxpos*9/10) // frame sum and filesize mismatch
448         return 0;
449
450     for (i = 0; i<s->nb_streams; i++) {
451         int64_t len = 0;
452         AVStream *st = s->streams[i];
453         int64_t duration;
454         int64_t bitrate;
455
456         for (j = 0; j < st->nb_index_entries; j++)
457             len += st->index_entries[j].size;
458
459         if (st->nb_index_entries < 2 || st->codecpar->bit_rate > 0)
460             continue;
461         duration = st->index_entries[j-1].timestamp - st->index_entries[0].timestamp;
462         bitrate = av_rescale(8*len, st->time_base.den, duration * st->time_base.num);
463         if (bitrate <= INT_MAX && bitrate > 0) {
464             st->codecpar->bit_rate = bitrate;
465         }
466     }
467     return 1;
468 }
469
470 static int avi_read_header(AVFormatContext *s)
471 {
472     AVIContext *avi = s->priv_data;
473     AVIOContext *pb = s->pb;
474     unsigned int tag, tag1, handler;
475     int codec_type, stream_index, frame_period;
476     unsigned int size;
477     int i;
478     AVStream *st;
479     AVIStream *ast      = NULL;
480     int avih_width      = 0, avih_height = 0;
481     int amv_file_format = 0;
482     uint64_t list_end   = 0;
483     int64_t pos;
484     int ret;
485     AVDictionaryEntry *dict_entry;
486
487     avi->stream_index = -1;
488
489     ret = get_riff(s, pb);
490     if (ret < 0)
491         return ret;
492
493     av_log(avi, AV_LOG_DEBUG, "use odml:%d\n", avi->use_odml);
494
495     avi->io_fsize = avi->fsize = avio_size(pb);
496     if (avi->fsize <= 0 || avi->fsize < avi->riff_end)
497         avi->fsize = avi->riff_end == 8 ? INT64_MAX : avi->riff_end;
498
499     /* first list tag */
500     stream_index = -1;
501     codec_type   = -1;
502     frame_period = 0;
503     for (;;) {
504         if (avio_feof(pb))
505             goto fail;
506         tag  = avio_rl32(pb);
507         size = avio_rl32(pb);
508
509         print_tag("tag", tag, size);
510
511         switch (tag) {
512         case MKTAG('L', 'I', 'S', 'T'):
513             list_end = avio_tell(pb) + size;
514             /* Ignored, except at start of video packets. */
515             tag1 = avio_rl32(pb);
516
517             print_tag("list", tag1, 0);
518
519             if (tag1 == MKTAG('m', 'o', 'v', 'i')) {
520                 avi->movi_list = avio_tell(pb) - 4;
521                 if (size)
522                     avi->movi_end = avi->movi_list + size + (size & 1);
523                 else
524                     avi->movi_end = avi->fsize;
525                 av_log(NULL, AV_LOG_TRACE, "movi end=%"PRIx64"\n", avi->movi_end);
526                 goto end_of_header;
527             } else if (tag1 == MKTAG('I', 'N', 'F', 'O'))
528                 ff_read_riff_info(s, size - 4);
529             else if (tag1 == MKTAG('n', 'c', 'd', 't'))
530                 avi_read_nikon(s, list_end);
531
532             break;
533         case MKTAG('I', 'D', 'I', 'T'):
534         {
535             unsigned char date[64] = { 0 };
536             size += (size & 1);
537             size -= avio_read(pb, date, FFMIN(size, sizeof(date) - 1));
538             avio_skip(pb, size);
539             avi_metadata_creation_time(&s->metadata, date);
540             break;
541         }
542         case MKTAG('d', 'm', 'l', 'h'):
543             avi->is_odml = 1;
544             avio_skip(pb, size + (size & 1));
545             break;
546         case MKTAG('a', 'm', 'v', 'h'):
547             amv_file_format = 1;
548         case MKTAG('a', 'v', 'i', 'h'):
549             /* AVI header */
550             /* using frame_period is bad idea */
551             frame_period = avio_rl32(pb);
552             avio_rl32(pb); /* max. bytes per second */
553             avio_rl32(pb);
554             avi->non_interleaved |= avio_rl32(pb) & AVIF_MUSTUSEINDEX;
555
556             avio_skip(pb, 2 * 4);
557             avio_rl32(pb);
558             avio_rl32(pb);
559             avih_width  = avio_rl32(pb);
560             avih_height = avio_rl32(pb);
561
562             avio_skip(pb, size - 10 * 4);
563             break;
564         case MKTAG('s', 't', 'r', 'h'):
565             /* stream header */
566
567             tag1    = avio_rl32(pb);
568             handler = avio_rl32(pb); /* codec tag */
569
570             if (tag1 == MKTAG('p', 'a', 'd', 's')) {
571                 avio_skip(pb, size - 8);
572                 break;
573             } else {
574                 stream_index++;
575                 st = avformat_new_stream(s, NULL);
576                 if (!st)
577                     goto fail;
578
579                 st->id = stream_index;
580                 ast    = av_mallocz(sizeof(AVIStream));
581                 if (!ast)
582                     goto fail;
583                 st->priv_data = ast;
584             }
585             if (amv_file_format)
586                 tag1 = stream_index ? MKTAG('a', 'u', 'd', 's')
587                                     : MKTAG('v', 'i', 'd', 's');
588
589             print_tag("strh", tag1, -1);
590
591             if (tag1 == MKTAG('i', 'a', 'v', 's') ||
592                 tag1 == MKTAG('i', 'v', 'a', 's')) {
593                 int64_t dv_dur;
594
595                 /* After some consideration -- I don't think we
596                  * have to support anything but DV in type1 AVIs. */
597                 if (s->nb_streams != 1)
598                     goto fail;
599
600                 if (handler != MKTAG('d', 'v', 's', 'd') &&
601                     handler != MKTAG('d', 'v', 'h', 'd') &&
602                     handler != MKTAG('d', 'v', 's', 'l'))
603                     goto fail;
604
605                 ast = s->streams[0]->priv_data;
606                 av_freep(&s->streams[0]->codecpar->extradata);
607                 av_freep(&s->streams[0]->codecpar);
608 #if FF_API_LAVF_AVCTX
609 FF_DISABLE_DEPRECATION_WARNINGS
610                 av_freep(&s->streams[0]->codec);
611 FF_ENABLE_DEPRECATION_WARNINGS
612 #endif
613                 if (s->streams[0]->info)
614                     av_freep(&s->streams[0]->info->duration_error);
615                 av_freep(&s->streams[0]->info);
616                 if (s->streams[0]->internal)
617                     av_freep(&s->streams[0]->internal->avctx);
618                 av_freep(&s->streams[0]->internal);
619                 av_freep(&s->streams[0]);
620                 s->nb_streams = 0;
621                 if (CONFIG_DV_DEMUXER) {
622                     avi->dv_demux = avpriv_dv_init_demux(s);
623                     if (!avi->dv_demux)
624                         goto fail;
625                 } else
626                     goto fail;
627                 s->streams[0]->priv_data = ast;
628                 avio_skip(pb, 3 * 4);
629                 ast->scale = avio_rl32(pb);
630                 ast->rate  = avio_rl32(pb);
631                 avio_skip(pb, 4);  /* start time */
632
633                 dv_dur = avio_rl32(pb);
634                 if (ast->scale > 0 && ast->rate > 0 && dv_dur > 0) {
635                     dv_dur     *= AV_TIME_BASE;
636                     s->duration = av_rescale(dv_dur, ast->scale, ast->rate);
637                 }
638                 /* else, leave duration alone; timing estimation in utils.c
639                  * will make a guess based on bitrate. */
640
641                 stream_index = s->nb_streams - 1;
642                 avio_skip(pb, size - 9 * 4);
643                 break;
644             }
645
646             av_assert0(stream_index < s->nb_streams);
647             ast->handler = handler;
648
649             avio_rl32(pb); /* flags */
650             avio_rl16(pb); /* priority */
651             avio_rl16(pb); /* language */
652             avio_rl32(pb); /* initial frame */
653             ast->scale = avio_rl32(pb);
654             ast->rate  = avio_rl32(pb);
655             if (!(ast->scale && ast->rate)) {
656                 av_log(s, AV_LOG_WARNING,
657                        "scale/rate is %"PRIu32"/%"PRIu32" which is invalid. "
658                        "(This file has been generated by broken software.)\n",
659                        ast->scale,
660                        ast->rate);
661                 if (frame_period) {
662                     ast->rate  = 1000000;
663                     ast->scale = frame_period;
664                 } else {
665                     ast->rate  = 25;
666                     ast->scale = 1;
667                 }
668             }
669             avpriv_set_pts_info(st, 64, ast->scale, ast->rate);
670
671             ast->cum_len  = avio_rl32(pb); /* start */
672             st->nb_frames = avio_rl32(pb);
673
674             st->start_time = 0;
675             avio_rl32(pb); /* buffer size */
676             avio_rl32(pb); /* quality */
677             if (ast->cum_len*ast->scale/ast->rate > 3600) {
678                 av_log(s, AV_LOG_ERROR, "crazy start time, iam scared, giving up\n");
679                 ast->cum_len = 0;
680             }
681             ast->sample_size = avio_rl32(pb);
682             ast->cum_len    *= FFMAX(1, ast->sample_size);
683             av_log(s, AV_LOG_TRACE, "%"PRIu32" %"PRIu32" %d\n",
684                     ast->rate, ast->scale, ast->sample_size);
685
686             switch (tag1) {
687             case MKTAG('v', 'i', 'd', 's'):
688                 codec_type = AVMEDIA_TYPE_VIDEO;
689
690                 ast->sample_size = 0;
691                 st->avg_frame_rate = av_inv_q(st->time_base);
692                 break;
693             case MKTAG('a', 'u', 'd', 's'):
694                 codec_type = AVMEDIA_TYPE_AUDIO;
695                 break;
696             case MKTAG('t', 'x', 't', 's'):
697                 codec_type = AVMEDIA_TYPE_SUBTITLE;
698                 break;
699             case MKTAG('d', 'a', 't', 's'):
700                 codec_type = AVMEDIA_TYPE_DATA;
701                 break;
702             default:
703                 av_log(s, AV_LOG_INFO, "unknown stream type %X\n", tag1);
704             }
705
706             if (ast->sample_size < 0) {
707                 if (s->error_recognition & AV_EF_EXPLODE) {
708                     av_log(s, AV_LOG_ERROR,
709                            "Invalid sample_size %d at stream %d\n",
710                            ast->sample_size,
711                            stream_index);
712                     goto fail;
713                 }
714                 av_log(s, AV_LOG_WARNING,
715                        "Invalid sample_size %d at stream %d "
716                        "setting it to 0\n",
717                        ast->sample_size,
718                        stream_index);
719                 ast->sample_size = 0;
720             }
721
722             if (ast->sample_size == 0) {
723                 st->duration = st->nb_frames;
724                 if (st->duration > 0 && avi->io_fsize > 0 && avi->riff_end > avi->io_fsize) {
725                     av_log(s, AV_LOG_DEBUG, "File is truncated adjusting duration\n");
726                     st->duration = av_rescale(st->duration, avi->io_fsize, avi->riff_end);
727                 }
728             }
729             ast->frame_offset = ast->cum_len;
730             avio_skip(pb, size - 12 * 4);
731             break;
732         case MKTAG('s', 't', 'r', 'f'):
733             /* stream header */
734             if (!size)
735                 break;
736             if (stream_index >= (unsigned)s->nb_streams || avi->dv_demux) {
737                 avio_skip(pb, size);
738             } else {
739                 uint64_t cur_pos = avio_tell(pb);
740                 unsigned esize;
741                 if (cur_pos < list_end)
742                     size = FFMIN(size, list_end - cur_pos);
743                 st = s->streams[stream_index];
744                 if (st->codecpar->codec_type != AVMEDIA_TYPE_UNKNOWN) {
745                     avio_skip(pb, size);
746                     break;
747                 }
748                 switch (codec_type) {
749                 case AVMEDIA_TYPE_VIDEO:
750                     if (amv_file_format) {
751                         st->codecpar->width      = avih_width;
752                         st->codecpar->height     = avih_height;
753                         st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
754                         st->codecpar->codec_id   = AV_CODEC_ID_AMV;
755                         avio_skip(pb, size);
756                         break;
757                     }
758                     tag1 = ff_get_bmp_header(pb, st, &esize);
759
760                     if (tag1 == MKTAG('D', 'X', 'S', 'B') ||
761                         tag1 == MKTAG('D', 'X', 'S', 'A')) {
762                         st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
763                         st->codecpar->codec_tag  = tag1;
764                         st->codecpar->codec_id   = AV_CODEC_ID_XSUB;
765                         break;
766                     }
767
768                     if (size > 10 * 4 && size < (1 << 30) && size < avi->fsize) {
769                         if (esize == size-1 && (esize&1)) {
770                             st->codecpar->extradata_size = esize - 10 * 4;
771                         } else
772                             st->codecpar->extradata_size =  size - 10 * 4;
773                         if (st->codecpar->extradata) {
774                             av_log(s, AV_LOG_WARNING, "New extradata in strf chunk, freeing previous one.\n");
775                             av_freep(&st->codecpar->extradata);
776                         }
777                         if (ff_get_extradata(s, st->codecpar, pb, st->codecpar->extradata_size) < 0)
778                             return AVERROR(ENOMEM);
779                     }
780
781                     // FIXME: check if the encoder really did this correctly
782                     if (st->codecpar->extradata_size & 1)
783                         avio_r8(pb);
784
785                     /* Extract palette from extradata if bpp <= 8.
786                      * This code assumes that extradata contains only palette.
787                      * This is true for all paletted codecs implemented in
788                      * FFmpeg. */
789                     if (st->codecpar->extradata_size &&
790                         (st->codecpar->bits_per_coded_sample <= 8)) {
791                         int pal_size = (1 << st->codecpar->bits_per_coded_sample) << 2;
792                         const uint8_t *pal_src;
793
794                         pal_size = FFMIN(pal_size, st->codecpar->extradata_size);
795                         pal_src  = st->codecpar->extradata +
796                                    st->codecpar->extradata_size - pal_size;
797                         /* Exclude the "BottomUp" field from the palette */
798                         if (pal_src - st->codecpar->extradata >= 9 &&
799                             !memcmp(st->codecpar->extradata + st->codecpar->extradata_size - 9, "BottomUp", 9))
800                             pal_src -= 9;
801                         for (i = 0; i < pal_size / 4; i++)
802                             ast->pal[i] = 0xFFU<<24 | AV_RL32(pal_src+4*i);
803                         ast->has_pal = 1;
804                     }
805
806                     print_tag("video", tag1, 0);
807
808                     st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
809                     st->codecpar->codec_tag  = tag1;
810                     st->codecpar->codec_id   = ff_codec_get_id(ff_codec_bmp_tags,
811                                                             tag1);
812                     /* If codec is not found yet, try with the mov tags. */
813                     if (!st->codecpar->codec_id) {
814                         char tag_buf[32];
815                         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), tag1);
816                         st->codecpar->codec_id =
817                             ff_codec_get_id(ff_codec_movvideo_tags, tag1);
818                         if (st->codecpar->codec_id)
819                            av_log(s, AV_LOG_WARNING,
820                                   "mov tag found in avi (fourcc %s)\n",
821                                   tag_buf);
822                     }
823                     /* This is needed to get the pict type which is necessary
824                      * for generating correct pts. */
825                     st->need_parsing = AVSTREAM_PARSE_HEADERS;
826
827                     if (st->codecpar->codec_id == AV_CODEC_ID_MPEG4 &&
828                         ast->handler == MKTAG('X', 'V', 'I', 'D'))
829                         st->codecpar->codec_tag = MKTAG('X', 'V', 'I', 'D');
830
831                     if (st->codecpar->codec_tag == MKTAG('V', 'S', 'S', 'H'))
832                         st->need_parsing = AVSTREAM_PARSE_FULL;
833                     if (st->codecpar->codec_id == AV_CODEC_ID_RV40)
834                         st->need_parsing = AVSTREAM_PARSE_NONE;
835
836                     if (st->codecpar->codec_tag == 0 && st->codecpar->height > 0 &&
837                         st->codecpar->extradata_size < 1U << 30) {
838                         st->codecpar->extradata_size += 9;
839                         if ((ret = av_reallocp(&st->codecpar->extradata,
840                                                st->codecpar->extradata_size +
841                                                AV_INPUT_BUFFER_PADDING_SIZE)) < 0) {
842                             st->codecpar->extradata_size = 0;
843                             return ret;
844                         } else
845                             memcpy(st->codecpar->extradata + st->codecpar->extradata_size - 9,
846                                    "BottomUp", 9);
847                     }
848                     st->codecpar->height = FFABS(st->codecpar->height);
849
850 //                    avio_skip(pb, size - 5 * 4);
851                     break;
852                 case AVMEDIA_TYPE_AUDIO:
853                     ret = ff_get_wav_header(s, pb, st->codecpar, size, 0);
854                     if (ret < 0)
855                         return ret;
856                     ast->dshow_block_align = st->codecpar->block_align;
857                     if (ast->sample_size && st->codecpar->block_align &&
858                         ast->sample_size != st->codecpar->block_align) {
859                         av_log(s,
860                                AV_LOG_WARNING,
861                                "sample size (%d) != block align (%d)\n",
862                                ast->sample_size,
863                                st->codecpar->block_align);
864                         ast->sample_size = st->codecpar->block_align;
865                     }
866                     /* 2-aligned
867                      * (fix for Stargate SG-1 - 3x18 - Shades of Grey.avi) */
868                     if (size & 1)
869                         avio_skip(pb, 1);
870                     /* Force parsing as several audio frames can be in
871                      * one packet and timestamps refer to packet start. */
872                     st->need_parsing = AVSTREAM_PARSE_TIMESTAMPS;
873                     /* ADTS header is in extradata, AAC without header must be
874                      * stored as exact frames. Parser not needed and it will
875                      * fail. */
876                     if (st->codecpar->codec_id == AV_CODEC_ID_AAC &&
877                         st->codecpar->extradata_size)
878                         st->need_parsing = AVSTREAM_PARSE_NONE;
879                     // The flac parser does not work with AVSTREAM_PARSE_TIMESTAMPS
880                     if (st->codecpar->codec_id == AV_CODEC_ID_FLAC)
881                         st->need_parsing = AVSTREAM_PARSE_NONE;
882                     /* AVI files with Xan DPCM audio (wrongly) declare PCM
883                      * audio in the header but have Axan as stream_code_tag. */
884                     if (ast->handler == AV_RL32("Axan")) {
885                         st->codecpar->codec_id  = AV_CODEC_ID_XAN_DPCM;
886                         st->codecpar->codec_tag = 0;
887                         ast->dshow_block_align = 0;
888                     }
889                     if (amv_file_format) {
890                         st->codecpar->codec_id    = AV_CODEC_ID_ADPCM_IMA_AMV;
891                         ast->dshow_block_align = 0;
892                     }
893                     if ((st->codecpar->codec_id == AV_CODEC_ID_AAC  ||
894                          st->codecpar->codec_id == AV_CODEC_ID_FLAC ||
895                          st->codecpar->codec_id == AV_CODEC_ID_MP2 ) && ast->dshow_block_align <= 4 && ast->dshow_block_align) {
896                         av_log(s, AV_LOG_DEBUG, "overriding invalid dshow_block_align of %d\n", ast->dshow_block_align);
897                         ast->dshow_block_align = 0;
898                     }
899                     if (st->codecpar->codec_id == AV_CODEC_ID_AAC && ast->dshow_block_align == 1024 && ast->sample_size == 1024 ||
900                        st->codecpar->codec_id == AV_CODEC_ID_AAC && ast->dshow_block_align == 4096 && ast->sample_size == 4096 ||
901                        st->codecpar->codec_id == AV_CODEC_ID_MP3 && ast->dshow_block_align == 1152 && ast->sample_size == 1152) {
902                         av_log(s, AV_LOG_DEBUG, "overriding sample_size\n");
903                         ast->sample_size = 0;
904                     }
905                     break;
906                 case AVMEDIA_TYPE_SUBTITLE:
907                     st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
908                     st->request_probe= 1;
909                     avio_skip(pb, size);
910                     break;
911                 default:
912                     st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
913                     st->codecpar->codec_id   = AV_CODEC_ID_NONE;
914                     st->codecpar->codec_tag  = 0;
915                     avio_skip(pb, size);
916                     break;
917                 }
918             }
919             break;
920         case MKTAG('s', 't', 'r', 'd'):
921             if (stream_index >= (unsigned)s->nb_streams
922                 || s->streams[stream_index]->codecpar->extradata_size
923                 || s->streams[stream_index]->codecpar->codec_tag == MKTAG('H','2','6','4')) {
924                 avio_skip(pb, size);
925             } else {
926                 uint64_t cur_pos = avio_tell(pb);
927                 if (cur_pos < list_end)
928                     size = FFMIN(size, list_end - cur_pos);
929                 st = s->streams[stream_index];
930
931                 if (size<(1<<30)) {
932                     if (st->codecpar->extradata) {
933                         av_log(s, AV_LOG_WARNING, "New extradata in strd chunk, freeing previous one.\n");
934                         av_freep(&st->codecpar->extradata);
935                     }
936                     if (ff_get_extradata(s, st->codecpar, pb, size) < 0)
937                         return AVERROR(ENOMEM);
938                 }
939
940                 if (st->codecpar->extradata_size & 1) //FIXME check if the encoder really did this correctly
941                     avio_r8(pb);
942
943                 ret = avi_extract_stream_metadata(s, st);
944                 if (ret < 0) {
945                     av_log(s, AV_LOG_WARNING, "could not decoding EXIF data in stream header.\n");
946                 }
947             }
948             break;
949         case MKTAG('i', 'n', 'd', 'x'):
950             pos = avio_tell(pb);
951             if (pb->seekable && !(s->flags & AVFMT_FLAG_IGNIDX) &&
952                 avi->use_odml &&
953                 read_odml_index(s, 0) < 0 &&
954                 (s->error_recognition & AV_EF_EXPLODE))
955                 goto fail;
956             avio_seek(pb, pos + size, SEEK_SET);
957             break;
958         case MKTAG('v', 'p', 'r', 'p'):
959             if (stream_index < (unsigned)s->nb_streams && size > 9 * 4) {
960                 AVRational active, active_aspect;
961
962                 st = s->streams[stream_index];
963                 avio_rl32(pb);
964                 avio_rl32(pb);
965                 avio_rl32(pb);
966                 avio_rl32(pb);
967                 avio_rl32(pb);
968
969                 active_aspect.den = avio_rl16(pb);
970                 active_aspect.num = avio_rl16(pb);
971                 active.num        = avio_rl32(pb);
972                 active.den        = avio_rl32(pb);
973                 avio_rl32(pb); // nbFieldsPerFrame
974
975                 if (active_aspect.num && active_aspect.den &&
976                     active.num && active.den) {
977                     st->sample_aspect_ratio = av_div_q(active_aspect, active);
978                     av_log(s, AV_LOG_TRACE, "vprp %d/%d %d/%d\n",
979                             active_aspect.num, active_aspect.den,
980                             active.num, active.den);
981                 }
982                 size -= 9 * 4;
983             }
984             avio_skip(pb, size);
985             break;
986         case MKTAG('s', 't', 'r', 'n'):
987             if (s->nb_streams) {
988                 ret = avi_read_tag(s, s->streams[s->nb_streams - 1], tag, size);
989                 if (ret < 0)
990                     return ret;
991                 break;
992             }
993         default:
994             if (size > 1000000) {
995                 char tag_buf[32];
996                 av_get_codec_tag_string(tag_buf, sizeof(tag_buf), tag);
997                 av_log(s, AV_LOG_ERROR,
998                        "Something went wrong during header parsing, "
999                        "tag %s has size %u, "
1000                        "I will ignore it and try to continue anyway.\n",
1001                        tag_buf, size);
1002                 if (s->error_recognition & AV_EF_EXPLODE)
1003                     goto fail;
1004                 avi->movi_list = avio_tell(pb) - 4;
1005                 avi->movi_end  = avi->fsize;
1006                 goto end_of_header;
1007             }
1008         /* Do not fail for very large idx1 tags */
1009         case MKTAG('i', 'd', 'x', '1'):
1010             /* skip tag */
1011             size += (size & 1);
1012             avio_skip(pb, size);
1013             break;
1014         }
1015     }
1016
1017 end_of_header:
1018     /* check stream number */
1019     if (stream_index != s->nb_streams - 1) {
1020
1021 fail:
1022         return AVERROR_INVALIDDATA;
1023     }
1024
1025     if (!avi->index_loaded && pb->seekable)
1026         avi_load_index(s);
1027     calculate_bitrate(s);
1028     avi->index_loaded    |= 1;
1029
1030     if ((ret = guess_ni_flag(s)) < 0)
1031         return ret;
1032
1033     avi->non_interleaved |= ret | (s->flags & AVFMT_FLAG_SORT_DTS);
1034
1035     dict_entry = av_dict_get(s->metadata, "ISFT", NULL, 0);
1036     if (dict_entry && !strcmp(dict_entry->value, "PotEncoder"))
1037         for (i = 0; i < s->nb_streams; i++) {
1038             AVStream *st = s->streams[i];
1039             if (   st->codecpar->codec_id == AV_CODEC_ID_MPEG1VIDEO
1040                 || st->codecpar->codec_id == AV_CODEC_ID_MPEG2VIDEO)
1041                 st->need_parsing = AVSTREAM_PARSE_FULL;
1042         }
1043
1044     for (i = 0; i < s->nb_streams; i++) {
1045         AVStream *st = s->streams[i];
1046         if (st->nb_index_entries)
1047             break;
1048     }
1049     // DV-in-AVI cannot be non-interleaved, if set this must be
1050     // a mis-detection.
1051     if (avi->dv_demux)
1052         avi->non_interleaved = 0;
1053     if (i == s->nb_streams && avi->non_interleaved) {
1054         av_log(s, AV_LOG_WARNING,
1055                "Non-interleaved AVI without index, switching to interleaved\n");
1056         avi->non_interleaved = 0;
1057     }
1058
1059     if (avi->non_interleaved) {
1060         av_log(s, AV_LOG_INFO, "non-interleaved AVI\n");
1061         clean_index(s);
1062     }
1063
1064     ff_metadata_conv_ctx(s, NULL, avi_metadata_conv);
1065     ff_metadata_conv_ctx(s, NULL, ff_riff_info_conv);
1066
1067     return 0;
1068 }
1069
1070 static int read_gab2_sub(AVFormatContext *s, AVStream *st, AVPacket *pkt)
1071 {
1072     if (pkt->size >= 7 &&
1073         pkt->size < INT_MAX - AVPROBE_PADDING_SIZE &&
1074         !strcmp(pkt->data, "GAB2") && AV_RL16(pkt->data + 5) == 2) {
1075         uint8_t desc[256];
1076         int score      = AVPROBE_SCORE_EXTENSION, ret;
1077         AVIStream *ast = st->priv_data;
1078         AVInputFormat *sub_demuxer;
1079         AVRational time_base;
1080         int size;
1081         AVIOContext *pb = avio_alloc_context(pkt->data + 7,
1082                                              pkt->size - 7,
1083                                              0, NULL, NULL, NULL, NULL);
1084         AVProbeData pd;
1085         unsigned int desc_len = avio_rl32(pb);
1086
1087         if (desc_len > pb->buf_end - pb->buf_ptr)
1088             goto error;
1089
1090         ret = avio_get_str16le(pb, desc_len, desc, sizeof(desc));
1091         avio_skip(pb, desc_len - ret);
1092         if (*desc)
1093             av_dict_set(&st->metadata, "title", desc, 0);
1094
1095         avio_rl16(pb);   /* flags? */
1096         avio_rl32(pb);   /* data size */
1097
1098         size = pb->buf_end - pb->buf_ptr;
1099         pd = (AVProbeData) { .buf      = av_mallocz(size + AVPROBE_PADDING_SIZE),
1100                              .buf_size = size };
1101         if (!pd.buf)
1102             goto error;
1103         memcpy(pd.buf, pb->buf_ptr, size);
1104         sub_demuxer = av_probe_input_format2(&pd, 1, &score);
1105         av_freep(&pd.buf);
1106         if (!sub_demuxer)
1107             goto error;
1108
1109         if (!(ast->sub_ctx = avformat_alloc_context()))
1110             goto error;
1111
1112         ast->sub_ctx->pb = pb;
1113
1114         if (ff_copy_whiteblacklists(ast->sub_ctx, s) < 0)
1115             goto error;
1116
1117         if (!avformat_open_input(&ast->sub_ctx, "", sub_demuxer, NULL)) {
1118             if (ast->sub_ctx->nb_streams != 1)
1119                 goto error;
1120             ff_read_packet(ast->sub_ctx, &ast->sub_pkt);
1121             avcodec_parameters_copy(st->codecpar, ast->sub_ctx->streams[0]->codecpar);
1122             time_base = ast->sub_ctx->streams[0]->time_base;
1123             avpriv_set_pts_info(st, 64, time_base.num, time_base.den);
1124         }
1125         ast->sub_buffer = pkt->data;
1126         memset(pkt, 0, sizeof(*pkt));
1127         return 1;
1128
1129 error:
1130         av_freep(&ast->sub_ctx);
1131         av_freep(&pb);
1132     }
1133     return 0;
1134 }
1135
1136 static AVStream *get_subtitle_pkt(AVFormatContext *s, AVStream *next_st,
1137                                   AVPacket *pkt)
1138 {
1139     AVIStream *ast, *next_ast = next_st->priv_data;
1140     int64_t ts, next_ts, ts_min = INT64_MAX;
1141     AVStream *st, *sub_st = NULL;
1142     int i;
1143
1144     next_ts = av_rescale_q(next_ast->frame_offset, next_st->time_base,
1145                            AV_TIME_BASE_Q);
1146
1147     for (i = 0; i < s->nb_streams; i++) {
1148         st  = s->streams[i];
1149         ast = st->priv_data;
1150         if (st->discard < AVDISCARD_ALL && ast && ast->sub_pkt.data) {
1151             ts = av_rescale_q(ast->sub_pkt.dts, st->time_base, AV_TIME_BASE_Q);
1152             if (ts <= next_ts && ts < ts_min) {
1153                 ts_min = ts;
1154                 sub_st = st;
1155             }
1156         }
1157     }
1158
1159     if (sub_st) {
1160         ast               = sub_st->priv_data;
1161         *pkt              = ast->sub_pkt;
1162         pkt->stream_index = sub_st->index;
1163
1164         if (ff_read_packet(ast->sub_ctx, &ast->sub_pkt) < 0)
1165             ast->sub_pkt.data = NULL;
1166     }
1167     return sub_st;
1168 }
1169
1170 static int get_stream_idx(const unsigned *d)
1171 {
1172     if (d[0] >= '0' && d[0] <= '9' &&
1173         d[1] >= '0' && d[1] <= '9') {
1174         return (d[0] - '0') * 10 + (d[1] - '0');
1175     } else {
1176         return 100; // invalid stream ID
1177     }
1178 }
1179
1180 /**
1181  *
1182  * @param exit_early set to 1 to just gather packet position without making the changes needed to actually read & return the packet
1183  */
1184 static int avi_sync(AVFormatContext *s, int exit_early)
1185 {
1186     AVIContext *avi = s->priv_data;
1187     AVIOContext *pb = s->pb;
1188     int n;
1189     unsigned int d[8];
1190     unsigned int size;
1191     int64_t i, sync;
1192
1193 start_sync:
1194     memset(d, -1, sizeof(d));
1195     for (i = sync = avio_tell(pb); !avio_feof(pb); i++) {
1196         int j;
1197
1198         for (j = 0; j < 7; j++)
1199             d[j] = d[j + 1];
1200         d[7] = avio_r8(pb);
1201
1202         size = d[4] + (d[5] << 8) + (d[6] << 16) + (d[7] << 24);
1203
1204         n = get_stream_idx(d + 2);
1205         ff_tlog(s, "%X %X %X %X %X %X %X %X %"PRId64" %u %d\n",
1206                 d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7], i, size, n);
1207         if (i*(avi->io_fsize>0) + (uint64_t)size > avi->fsize || d[0] > 127)
1208             continue;
1209
1210         // parse ix##
1211         if ((d[0] == 'i' && d[1] == 'x' && n < s->nb_streams) ||
1212             // parse JUNK
1213             (d[0] == 'J' && d[1] == 'U' && d[2] == 'N' && d[3] == 'K') ||
1214             (d[0] == 'i' && d[1] == 'd' && d[2] == 'x' && d[3] == '1') ||
1215             (d[0] == 'i' && d[1] == 'n' && d[2] == 'd' && d[3] == 'x')) {
1216             avio_skip(pb, size);
1217             goto start_sync;
1218         }
1219
1220         // parse stray LIST
1221         if (d[0] == 'L' && d[1] == 'I' && d[2] == 'S' && d[3] == 'T') {
1222             avio_skip(pb, 4);
1223             goto start_sync;
1224         }
1225
1226         n = get_stream_idx(d);
1227
1228         if (!((i - avi->last_pkt_pos) & 1) &&
1229             get_stream_idx(d + 1) < s->nb_streams)
1230             continue;
1231
1232         // detect ##ix chunk and skip
1233         if (d[2] == 'i' && d[3] == 'x' && n < s->nb_streams) {
1234             avio_skip(pb, size);
1235             goto start_sync;
1236         }
1237
1238         if (avi->dv_demux && n != 0)
1239             continue;
1240
1241         // parse ##dc/##wb
1242         if (n < s->nb_streams) {
1243             AVStream *st;
1244             AVIStream *ast;
1245             st  = s->streams[n];
1246             ast = st->priv_data;
1247
1248             if (!ast) {
1249                 av_log(s, AV_LOG_WARNING, "Skipping foreign stream %d packet\n", n);
1250                 continue;
1251             }
1252
1253             if (s->nb_streams >= 2) {
1254                 AVStream *st1   = s->streams[1];
1255                 AVIStream *ast1 = st1->priv_data;
1256                 // workaround for broken small-file-bug402.avi
1257                 if (   d[2] == 'w' && d[3] == 'b'
1258                    && n == 0
1259                    && st ->codecpar->codec_type == AVMEDIA_TYPE_VIDEO
1260                    && st1->codecpar->codec_type == AVMEDIA_TYPE_AUDIO
1261                    && ast->prefix == 'd'*256+'c'
1262                    && (d[2]*256+d[3] == ast1->prefix || !ast1->prefix_count)
1263                   ) {
1264                     n   = 1;
1265                     st  = st1;
1266                     ast = ast1;
1267                     av_log(s, AV_LOG_WARNING,
1268                            "Invalid stream + prefix combination, assuming audio.\n");
1269                 }
1270             }
1271
1272             if (!avi->dv_demux &&
1273                 ((st->discard >= AVDISCARD_DEFAULT && size == 0) /* ||
1274                  // FIXME: needs a little reordering
1275                  (st->discard >= AVDISCARD_NONKEY &&
1276                  !(pkt->flags & AV_PKT_FLAG_KEY)) */
1277                 || st->discard >= AVDISCARD_ALL)) {
1278                 if (!exit_early) {
1279                     ast->frame_offset += get_duration(ast, size);
1280                     avio_skip(pb, size);
1281                     goto start_sync;
1282                 }
1283             }
1284
1285             if (d[2] == 'p' && d[3] == 'c' && size <= 4 * 256 + 4) {
1286                 int k    = avio_r8(pb);
1287                 int last = (k + avio_r8(pb) - 1) & 0xFF;
1288
1289                 avio_rl16(pb); // flags
1290
1291                 // b + (g << 8) + (r << 16);
1292                 for (; k <= last; k++)
1293                     ast->pal[k] = 0xFFU<<24 | avio_rb32(pb)>>8;
1294
1295                 ast->has_pal = 1;
1296                 goto start_sync;
1297             } else if (((ast->prefix_count < 5 || sync + 9 > i) &&
1298                         d[2] < 128 && d[3] < 128) ||
1299                        d[2] * 256 + d[3] == ast->prefix /* ||
1300                        (d[2] == 'd' && d[3] == 'c') ||
1301                        (d[2] == 'w' && d[3] == 'b') */) {
1302                 if (exit_early)
1303                     return 0;
1304                 if (d[2] * 256 + d[3] == ast->prefix)
1305                     ast->prefix_count++;
1306                 else {
1307                     ast->prefix       = d[2] * 256 + d[3];
1308                     ast->prefix_count = 0;
1309                 }
1310
1311                 avi->stream_index = n;
1312                 ast->packet_size  = size + 8;
1313                 ast->remaining    = size;
1314
1315                 if (size) {
1316                     uint64_t pos = avio_tell(pb) - 8;
1317                     if (!st->index_entries || !st->nb_index_entries ||
1318                         st->index_entries[st->nb_index_entries - 1].pos < pos) {
1319                         av_add_index_entry(st, pos, ast->frame_offset, size,
1320                                            0, AVINDEX_KEYFRAME);
1321                     }
1322                 }
1323                 return 0;
1324             }
1325         }
1326     }
1327
1328     if (pb->error)
1329         return pb->error;
1330     return AVERROR_EOF;
1331 }
1332
1333 static int ni_prepare_read(AVFormatContext *s)
1334 {
1335     AVIContext *avi = s->priv_data;
1336     int best_stream_index = 0;
1337     AVStream *best_st     = NULL;
1338     AVIStream *best_ast;
1339     int64_t best_ts = INT64_MAX;
1340     int i;
1341
1342     for (i = 0; i < s->nb_streams; i++) {
1343         AVStream *st   = s->streams[i];
1344         AVIStream *ast = st->priv_data;
1345         int64_t ts     = ast->frame_offset;
1346         int64_t last_ts;
1347
1348         if (!st->nb_index_entries)
1349             continue;
1350
1351         last_ts = st->index_entries[st->nb_index_entries - 1].timestamp;
1352         if (!ast->remaining && ts > last_ts)
1353             continue;
1354
1355         ts = av_rescale_q(ts, st->time_base,
1356                           (AVRational) { FFMAX(1, ast->sample_size),
1357                                          AV_TIME_BASE });
1358
1359         av_log(s, AV_LOG_TRACE, "%"PRId64" %d/%d %"PRId64"\n", ts,
1360                 st->time_base.num, st->time_base.den, ast->frame_offset);
1361         if (ts < best_ts) {
1362             best_ts           = ts;
1363             best_st           = st;
1364             best_stream_index = i;
1365         }
1366     }
1367     if (!best_st)
1368         return AVERROR_EOF;
1369
1370     best_ast = best_st->priv_data;
1371     best_ts  = best_ast->frame_offset;
1372     if (best_ast->remaining) {
1373         i = av_index_search_timestamp(best_st,
1374                                       best_ts,
1375                                       AVSEEK_FLAG_ANY |
1376                                       AVSEEK_FLAG_BACKWARD);
1377     } else {
1378         i = av_index_search_timestamp(best_st, best_ts, AVSEEK_FLAG_ANY);
1379         if (i >= 0)
1380             best_ast->frame_offset = best_st->index_entries[i].timestamp;
1381     }
1382
1383     if (i >= 0) {
1384         int64_t pos = best_st->index_entries[i].pos;
1385         pos += best_ast->packet_size - best_ast->remaining;
1386         if (avio_seek(s->pb, pos + 8, SEEK_SET) < 0)
1387           return AVERROR_EOF;
1388
1389         av_assert0(best_ast->remaining <= best_ast->packet_size);
1390
1391         avi->stream_index = best_stream_index;
1392         if (!best_ast->remaining)
1393             best_ast->packet_size =
1394             best_ast->remaining   = best_st->index_entries[i].size;
1395     }
1396     else
1397         return AVERROR_EOF;
1398
1399     return 0;
1400 }
1401
1402 static int avi_read_packet(AVFormatContext *s, AVPacket *pkt)
1403 {
1404     AVIContext *avi = s->priv_data;
1405     AVIOContext *pb = s->pb;
1406     int err;
1407
1408     if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1409         int size = avpriv_dv_get_packet(avi->dv_demux, pkt);
1410         if (size >= 0)
1411             return size;
1412         else
1413             goto resync;
1414     }
1415
1416     if (avi->non_interleaved) {
1417         err = ni_prepare_read(s);
1418         if (err < 0)
1419             return err;
1420     }
1421
1422 resync:
1423     if (avi->stream_index >= 0) {
1424         AVStream *st   = s->streams[avi->stream_index];
1425         AVIStream *ast = st->priv_data;
1426         int size, err;
1427
1428         if (get_subtitle_pkt(s, st, pkt))
1429             return 0;
1430
1431         // minorityreport.AVI block_align=1024 sample_size=1 IMA-ADPCM
1432         if (ast->sample_size <= 1)
1433             size = INT_MAX;
1434         else if (ast->sample_size < 32)
1435             // arbitrary multiplier to avoid tiny packets for raw PCM data
1436             size = 1024 * ast->sample_size;
1437         else
1438             size = ast->sample_size;
1439
1440         if (size > ast->remaining)
1441             size = ast->remaining;
1442         avi->last_pkt_pos = avio_tell(pb);
1443         err               = av_get_packet(pb, pkt, size);
1444         if (err < 0)
1445             return err;
1446         size = err;
1447
1448         if (ast->has_pal && pkt->size < (unsigned)INT_MAX / 2) {
1449             uint8_t *pal;
1450             pal = av_packet_new_side_data(pkt,
1451                                           AV_PKT_DATA_PALETTE,
1452                                           AVPALETTE_SIZE);
1453             if (!pal) {
1454                 av_log(s, AV_LOG_ERROR,
1455                        "Failed to allocate data for palette\n");
1456             } else {
1457                 memcpy(pal, ast->pal, AVPALETTE_SIZE);
1458                 ast->has_pal = 0;
1459             }
1460         }
1461
1462         if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1463             AVBufferRef *avbuf = pkt->buf;
1464             size = avpriv_dv_produce_packet(avi->dv_demux, pkt,
1465                                             pkt->data, pkt->size, pkt->pos);
1466             pkt->buf    = avbuf;
1467             pkt->flags |= AV_PKT_FLAG_KEY;
1468             if (size < 0)
1469                 av_packet_unref(pkt);
1470         } else if (st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE &&
1471                    !st->codecpar->codec_tag && read_gab2_sub(s, st, pkt)) {
1472             ast->frame_offset++;
1473             avi->stream_index = -1;
1474             ast->remaining    = 0;
1475             goto resync;
1476         } else {
1477             /* XXX: How to handle B-frames in AVI? */
1478             pkt->dts = ast->frame_offset;
1479 //                pkt->dts += ast->start;
1480             if (ast->sample_size)
1481                 pkt->dts /= ast->sample_size;
1482             av_log(s, AV_LOG_TRACE,
1483                     "dts:%"PRId64" offset:%"PRId64" %d/%d smpl_siz:%d "
1484                     "base:%d st:%d size:%d\n",
1485                     pkt->dts,
1486                     ast->frame_offset,
1487                     ast->scale,
1488                     ast->rate,
1489                     ast->sample_size,
1490                     AV_TIME_BASE,
1491                     avi->stream_index,
1492                     size);
1493             pkt->stream_index = avi->stream_index;
1494
1495             if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && st->index_entries) {
1496                 AVIndexEntry *e;
1497                 int index;
1498
1499                 index = av_index_search_timestamp(st, ast->frame_offset, AVSEEK_FLAG_ANY);
1500                 e     = &st->index_entries[index];
1501
1502                 if (index >= 0 && e->timestamp == ast->frame_offset) {
1503                     if (index == st->nb_index_entries-1) {
1504                         int key=1;
1505                         uint32_t state=-1;
1506                         if (st->codecpar->codec_id == AV_CODEC_ID_MPEG4) {
1507                             const uint8_t *ptr = pkt->data, *end = ptr + FFMIN(size, 256);
1508                             while (ptr < end) {
1509                                 ptr = avpriv_find_start_code(ptr, end, &state);
1510                                 if (state == 0x1B6 && ptr < end) {
1511                                     key = !(*ptr & 0xC0);
1512                                     break;
1513                                 }
1514                             }
1515                         }
1516                         if (!key)
1517                             e->flags &= ~AVINDEX_KEYFRAME;
1518                     }
1519                     if (e->flags & AVINDEX_KEYFRAME)
1520                         pkt->flags |= AV_PKT_FLAG_KEY;
1521                 }
1522             } else {
1523                 pkt->flags |= AV_PKT_FLAG_KEY;
1524             }
1525             ast->frame_offset += get_duration(ast, pkt->size);
1526         }
1527         ast->remaining -= err;
1528         if (!ast->remaining) {
1529             avi->stream_index = -1;
1530             ast->packet_size  = 0;
1531         }
1532
1533         if (!avi->non_interleaved && pkt->pos >= 0 && ast->seek_pos > pkt->pos) {
1534             av_packet_unref(pkt);
1535             goto resync;
1536         }
1537         ast->seek_pos= 0;
1538
1539         if (!avi->non_interleaved && st->nb_index_entries>1 && avi->index_loaded>1) {
1540             int64_t dts= av_rescale_q(pkt->dts, st->time_base, AV_TIME_BASE_Q);
1541
1542             if (avi->dts_max - dts > 2*AV_TIME_BASE) {
1543                 avi->non_interleaved= 1;
1544                 av_log(s, AV_LOG_INFO, "Switching to NI mode, due to poor interleaving\n");
1545             }else if (avi->dts_max < dts)
1546                 avi->dts_max = dts;
1547         }
1548
1549         return 0;
1550     }
1551
1552     if ((err = avi_sync(s, 0)) < 0)
1553         return err;
1554     goto resync;
1555 }
1556
1557 /* XXX: We make the implicit supposition that the positions are sorted
1558  * for each stream. */
1559 static int avi_read_idx1(AVFormatContext *s, int size)
1560 {
1561     AVIContext *avi = s->priv_data;
1562     AVIOContext *pb = s->pb;
1563     int nb_index_entries, i;
1564     AVStream *st;
1565     AVIStream *ast;
1566     int64_t pos;
1567     unsigned int index, tag, flags, len, first_packet = 1;
1568     int64_t last_pos = -1;
1569     unsigned last_idx = -1;
1570     int64_t idx1_pos, first_packet_pos = 0, data_offset = 0;
1571     int anykey = 0;
1572
1573     nb_index_entries = size / 16;
1574     if (nb_index_entries <= 0)
1575         return AVERROR_INVALIDDATA;
1576
1577     idx1_pos = avio_tell(pb);
1578     avio_seek(pb, avi->movi_list + 4, SEEK_SET);
1579     if (avi_sync(s, 1) == 0)
1580         first_packet_pos = avio_tell(pb) - 8;
1581     avi->stream_index = -1;
1582     avio_seek(pb, idx1_pos, SEEK_SET);
1583
1584     if (s->nb_streams == 1 && s->streams[0]->codecpar->codec_tag == AV_RL32("MMES")) {
1585         first_packet_pos = 0;
1586         data_offset = avi->movi_list;
1587     }
1588
1589     /* Read the entries and sort them in each stream component. */
1590     for (i = 0; i < nb_index_entries; i++) {
1591         if (avio_feof(pb))
1592             return -1;
1593
1594         tag   = avio_rl32(pb);
1595         flags = avio_rl32(pb);
1596         pos   = avio_rl32(pb);
1597         len   = avio_rl32(pb);
1598         av_log(s, AV_LOG_TRACE, "%d: tag=0x%x flags=0x%x pos=0x%"PRIx64" len=%d/",
1599                 i, tag, flags, pos, len);
1600
1601         index  = ((tag      & 0xff) - '0') * 10;
1602         index +=  (tag >> 8 & 0xff) - '0';
1603         if (index >= s->nb_streams)
1604             continue;
1605         st  = s->streams[index];
1606         ast = st->priv_data;
1607
1608         /* Skip 'xxpc' palette change entries in the index until a logic
1609          * to process these is properly implemented. */
1610         if ((tag >> 16 & 0xff) == 'p' && (tag >> 24 & 0xff) == 'c')
1611             continue;
1612
1613         if (first_packet && first_packet_pos) {
1614             if (avi->movi_list + 4 != pos || pos + 500 > first_packet_pos)
1615                 data_offset  = first_packet_pos - pos;
1616             first_packet = 0;
1617         }
1618         pos += data_offset;
1619
1620         av_log(s, AV_LOG_TRACE, "%d cum_len=%"PRId64"\n", len, ast->cum_len);
1621
1622         // even if we have only a single stream, we should
1623         // switch to non-interleaved to get correct timestamps
1624         if (last_pos == pos)
1625             avi->non_interleaved = 1;
1626         if (last_idx != pos && len) {
1627             av_add_index_entry(st, pos, ast->cum_len, len, 0,
1628                                (flags & AVIIF_INDEX) ? AVINDEX_KEYFRAME : 0);
1629             last_idx= pos;
1630         }
1631         ast->cum_len += get_duration(ast, len);
1632         last_pos      = pos;
1633         anykey       |= flags&AVIIF_INDEX;
1634     }
1635     if (!anykey) {
1636         for (index = 0; index < s->nb_streams; index++) {
1637             st = s->streams[index];
1638             if (st->nb_index_entries)
1639                 st->index_entries[0].flags |= AVINDEX_KEYFRAME;
1640         }
1641     }
1642     return 0;
1643 }
1644
1645 /* Scan the index and consider any file with streams more than
1646  * 2 seconds or 64MB apart non-interleaved. */
1647 static int check_stream_max_drift(AVFormatContext *s)
1648 {
1649     int64_t min_pos, pos;
1650     int i;
1651     int *idx = av_mallocz_array(s->nb_streams, sizeof(*idx));
1652     if (!idx)
1653         return AVERROR(ENOMEM);
1654     for (min_pos = pos = 0; min_pos != INT64_MAX; pos = min_pos + 1LU) {
1655         int64_t max_dts = INT64_MIN / 2;
1656         int64_t min_dts = INT64_MAX / 2;
1657         int64_t max_buffer = 0;
1658
1659         min_pos = INT64_MAX;
1660
1661         for (i = 0; i < s->nb_streams; i++) {
1662             AVStream *st = s->streams[i];
1663             AVIStream *ast = st->priv_data;
1664             int n = st->nb_index_entries;
1665             while (idx[i] < n && st->index_entries[idx[i]].pos < pos)
1666                 idx[i]++;
1667             if (idx[i] < n) {
1668                 int64_t dts;
1669                 dts = av_rescale_q(st->index_entries[idx[i]].timestamp /
1670                                    FFMAX(ast->sample_size, 1),
1671                                    st->time_base, AV_TIME_BASE_Q);
1672                 min_dts = FFMIN(min_dts, dts);
1673                 min_pos = FFMIN(min_pos, st->index_entries[idx[i]].pos);
1674             }
1675         }
1676         for (i = 0; i < s->nb_streams; i++) {
1677             AVStream *st = s->streams[i];
1678             AVIStream *ast = st->priv_data;
1679
1680             if (idx[i] && min_dts != INT64_MAX / 2) {
1681                 int64_t dts;
1682                 dts = av_rescale_q(st->index_entries[idx[i] - 1].timestamp /
1683                                    FFMAX(ast->sample_size, 1),
1684                                    st->time_base, AV_TIME_BASE_Q);
1685                 max_dts = FFMAX(max_dts, dts);
1686                 max_buffer = FFMAX(max_buffer,
1687                                    av_rescale(dts - min_dts,
1688                                               st->codecpar->bit_rate,
1689                                               AV_TIME_BASE));
1690             }
1691         }
1692         if (max_dts - min_dts > 2 * AV_TIME_BASE ||
1693             max_buffer > 1024 * 1024 * 8 * 8) {
1694             av_free(idx);
1695             return 1;
1696         }
1697     }
1698     av_free(idx);
1699     return 0;
1700 }
1701
1702 static int guess_ni_flag(AVFormatContext *s)
1703 {
1704     int i;
1705     int64_t last_start = 0;
1706     int64_t first_end  = INT64_MAX;
1707     int64_t oldpos     = avio_tell(s->pb);
1708
1709     for (i = 0; i < s->nb_streams; i++) {
1710         AVStream *st = s->streams[i];
1711         int n        = st->nb_index_entries;
1712         unsigned int size;
1713
1714         if (n <= 0)
1715             continue;
1716
1717         if (n >= 2) {
1718             int64_t pos = st->index_entries[0].pos;
1719             unsigned tag[2];
1720             avio_seek(s->pb, pos, SEEK_SET);
1721             tag[0] = avio_r8(s->pb);
1722             tag[1] = avio_r8(s->pb);
1723             avio_rl16(s->pb);
1724             size = avio_rl32(s->pb);
1725             if (get_stream_idx(tag) == i && pos + size > st->index_entries[1].pos)
1726                 last_start = INT64_MAX;
1727             if (get_stream_idx(tag) == i && size == st->index_entries[0].size + 8)
1728                 last_start = INT64_MAX;
1729         }
1730
1731         if (st->index_entries[0].pos > last_start)
1732             last_start = st->index_entries[0].pos;
1733         if (st->index_entries[n - 1].pos < first_end)
1734             first_end = st->index_entries[n - 1].pos;
1735     }
1736     avio_seek(s->pb, oldpos, SEEK_SET);
1737
1738     if (last_start > first_end)
1739         return 1;
1740
1741     return check_stream_max_drift(s);
1742 }
1743
1744 static int avi_load_index(AVFormatContext *s)
1745 {
1746     AVIContext *avi = s->priv_data;
1747     AVIOContext *pb = s->pb;
1748     uint32_t tag, size;
1749     int64_t pos = avio_tell(pb);
1750     int64_t next;
1751     int ret     = -1;
1752
1753     if (avio_seek(pb, avi->movi_end, SEEK_SET) < 0)
1754         goto the_end; // maybe truncated file
1755     av_log(s, AV_LOG_TRACE, "movi_end=0x%"PRIx64"\n", avi->movi_end);
1756     for (;;) {
1757         tag  = avio_rl32(pb);
1758         size = avio_rl32(pb);
1759         if (avio_feof(pb))
1760             break;
1761         next = avio_tell(pb) + size + (size & 1);
1762
1763         av_log(s, AV_LOG_TRACE, "tag=%c%c%c%c size=0x%x\n",
1764                  tag        & 0xff,
1765                 (tag >>  8) & 0xff,
1766                 (tag >> 16) & 0xff,
1767                 (tag >> 24) & 0xff,
1768                 size);
1769
1770         if (tag == MKTAG('i', 'd', 'x', '1') &&
1771             avi_read_idx1(s, size) >= 0) {
1772             avi->index_loaded=2;
1773             ret = 0;
1774         }else if (tag == MKTAG('L', 'I', 'S', 'T')) {
1775             uint32_t tag1 = avio_rl32(pb);
1776
1777             if (tag1 == MKTAG('I', 'N', 'F', 'O'))
1778                 ff_read_riff_info(s, size - 4);
1779         }else if (!ret)
1780             break;
1781
1782         if (avio_seek(pb, next, SEEK_SET) < 0)
1783             break; // something is wrong here
1784     }
1785
1786 the_end:
1787     avio_seek(pb, pos, SEEK_SET);
1788     return ret;
1789 }
1790
1791 static void seek_subtitle(AVStream *st, AVStream *st2, int64_t timestamp)
1792 {
1793     AVIStream *ast2 = st2->priv_data;
1794     int64_t ts2     = av_rescale_q(timestamp, st->time_base, st2->time_base);
1795     av_packet_unref(&ast2->sub_pkt);
1796     if (avformat_seek_file(ast2->sub_ctx, 0, INT64_MIN, ts2, ts2, 0) >= 0 ||
1797         avformat_seek_file(ast2->sub_ctx, 0, ts2, ts2, INT64_MAX, 0) >= 0)
1798         ff_read_packet(ast2->sub_ctx, &ast2->sub_pkt);
1799 }
1800
1801 static int avi_read_seek(AVFormatContext *s, int stream_index,
1802                          int64_t timestamp, int flags)
1803 {
1804     AVIContext *avi = s->priv_data;
1805     AVStream *st;
1806     int i, index;
1807     int64_t pos, pos_min;
1808     AVIStream *ast;
1809
1810     /* Does not matter which stream is requested dv in avi has the
1811      * stream information in the first video stream.
1812      */
1813     if (avi->dv_demux)
1814         stream_index = 0;
1815
1816     if (!avi->index_loaded) {
1817         /* we only load the index on demand */
1818         avi_load_index(s);
1819         avi->index_loaded |= 1;
1820     }
1821     av_assert0(stream_index >= 0);
1822
1823     st    = s->streams[stream_index];
1824     ast   = st->priv_data;
1825     index = av_index_search_timestamp(st,
1826                                       timestamp * FFMAX(ast->sample_size, 1),
1827                                       flags);
1828     if (index < 0) {
1829         if (st->nb_index_entries > 0)
1830             av_log(s, AV_LOG_DEBUG, "Failed to find timestamp %"PRId64 " in index %"PRId64 " .. %"PRId64 "\n",
1831                    timestamp * FFMAX(ast->sample_size, 1),
1832                    st->index_entries[0].timestamp,
1833                    st->index_entries[st->nb_index_entries - 1].timestamp);
1834         return AVERROR_INVALIDDATA;
1835     }
1836
1837     /* find the position */
1838     pos       = st->index_entries[index].pos;
1839     timestamp = st->index_entries[index].timestamp / FFMAX(ast->sample_size, 1);
1840
1841     av_log(s, AV_LOG_TRACE, "XX %"PRId64" %d %"PRId64"\n",
1842             timestamp, index, st->index_entries[index].timestamp);
1843
1844     if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1845         /* One and only one real stream for DV in AVI, and it has video  */
1846         /* offsets. Calling with other stream indexes should have failed */
1847         /* the av_index_search_timestamp call above.                     */
1848
1849         if (avio_seek(s->pb, pos, SEEK_SET) < 0)
1850             return -1;
1851
1852         /* Feed the DV video stream version of the timestamp to the */
1853         /* DV demux so it can synthesize correct timestamps.        */
1854         ff_dv_offset_reset(avi->dv_demux, timestamp);
1855
1856         avi->stream_index = -1;
1857         return 0;
1858     }
1859
1860     pos_min = pos;
1861     for (i = 0; i < s->nb_streams; i++) {
1862         AVStream *st2   = s->streams[i];
1863         AVIStream *ast2 = st2->priv_data;
1864
1865         ast2->packet_size =
1866         ast2->remaining   = 0;
1867
1868         if (ast2->sub_ctx) {
1869             seek_subtitle(st, st2, timestamp);
1870             continue;
1871         }
1872
1873         if (st2->nb_index_entries <= 0)
1874             continue;
1875
1876 //        av_assert1(st2->codecpar->block_align);
1877         index = av_index_search_timestamp(st2,
1878                                           av_rescale_q(timestamp,
1879                                                        st->time_base,
1880                                                        st2->time_base) *
1881                                           FFMAX(ast2->sample_size, 1),
1882                                           flags |
1883                                           AVSEEK_FLAG_BACKWARD |
1884                                           (st2->codecpar->codec_type != AVMEDIA_TYPE_VIDEO ? AVSEEK_FLAG_ANY : 0));
1885         if (index < 0)
1886             index = 0;
1887         ast2->seek_pos = st2->index_entries[index].pos;
1888         pos_min = FFMIN(pos_min,ast2->seek_pos);
1889     }
1890     for (i = 0; i < s->nb_streams; i++) {
1891         AVStream *st2 = s->streams[i];
1892         AVIStream *ast2 = st2->priv_data;
1893
1894         if (ast2->sub_ctx || st2->nb_index_entries <= 0)
1895             continue;
1896
1897         index = av_index_search_timestamp(
1898                 st2,
1899                 av_rescale_q(timestamp, st->time_base, st2->time_base) * FFMAX(ast2->sample_size, 1),
1900                 flags | AVSEEK_FLAG_BACKWARD | (st2->codecpar->codec_type != AVMEDIA_TYPE_VIDEO ? AVSEEK_FLAG_ANY : 0));
1901         if (index < 0)
1902             index = 0;
1903         while (!avi->non_interleaved && index>0 && st2->index_entries[index-1].pos >= pos_min)
1904             index--;
1905         ast2->frame_offset = st2->index_entries[index].timestamp;
1906     }
1907
1908     /* do the seek */
1909     if (avio_seek(s->pb, pos_min, SEEK_SET) < 0) {
1910         av_log(s, AV_LOG_ERROR, "Seek failed\n");
1911         return -1;
1912     }
1913     avi->stream_index = -1;
1914     avi->dts_max      = INT_MIN;
1915     return 0;
1916 }
1917
1918 static int avi_read_close(AVFormatContext *s)
1919 {
1920     int i;
1921     AVIContext *avi = s->priv_data;
1922
1923     for (i = 0; i < s->nb_streams; i++) {
1924         AVStream *st   = s->streams[i];
1925         AVIStream *ast = st->priv_data;
1926         if (ast) {
1927             if (ast->sub_ctx) {
1928                 av_freep(&ast->sub_ctx->pb);
1929                 avformat_close_input(&ast->sub_ctx);
1930             }
1931             av_freep(&ast->sub_buffer);
1932             av_packet_unref(&ast->sub_pkt);
1933         }
1934     }
1935
1936     av_freep(&avi->dv_demux);
1937
1938     return 0;
1939 }
1940
1941 static int avi_probe(AVProbeData *p)
1942 {
1943     int i;
1944
1945     /* check file header */
1946     for (i = 0; avi_headers[i][0]; i++)
1947         if (AV_RL32(p->buf    ) == AV_RL32(avi_headers[i]    ) &&
1948             AV_RL32(p->buf + 8) == AV_RL32(avi_headers[i] + 4))
1949             return AVPROBE_SCORE_MAX;
1950
1951     return 0;
1952 }
1953
1954 AVInputFormat ff_avi_demuxer = {
1955     .name           = "avi",
1956     .long_name      = NULL_IF_CONFIG_SMALL("AVI (Audio Video Interleaved)"),
1957     .priv_data_size = sizeof(AVIContext),
1958     .extensions     = "avi",
1959     .read_probe     = avi_probe,
1960     .read_header    = avi_read_header,
1961     .read_packet    = avi_read_packet,
1962     .read_close     = avi_read_close,
1963     .read_seek      = avi_read_seek,
1964     .priv_class = &demuxer_class,
1965 };