]> git.sesse.net Git - ffmpeg/blob - libavformat/avidec.c
Merge commit '440e8dd374b732c48d564d9f1bb0ec3b1b786fb9'
[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_INT, {.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 > 1)
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_braindead_odml_indx(AVFormatContext *s, int frame_num)
164 {
165     AVIContext *avi     = s->priv_data;
166     AVIOContext *pb     = s->pb;
167     int longs_pre_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_pre_entry:%d index_type:%d entries_in_use:%d "
183             "chunk_id:%X base:%16"PRIX64" frame_num:%d\n",
184             longs_pre_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_pre_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_braindead_odml_indx(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) {
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) {
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(AVStream *st)
389 {
390     GetByteContext gb;
391     uint8_t *data = st->codec->extradata;
392     int data_size = st->codec->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(st->codec, &gb, 1, 0, &st->metadata);
412         break;
413     case MKTAG('C', 'A', 'S', 'I'):
414         avpriv_request_sample(st->codec, "RIFF stream data tag type CASI (%u)", tag);
415         break;
416     case MKTAG('Z', 'o', 'r', 'a'):
417         avpriv_request_sample(st->codec, "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
455         for (j = 0; j < st->nb_index_entries; j++)
456             len += st->index_entries[j].size;
457
458         if (st->nb_index_entries < 2 || st->codec->bit_rate > 0)
459             continue;
460         duration = st->index_entries[j-1].timestamp - st->index_entries[0].timestamp;
461         st->codec->bit_rate = av_rescale(8*len, st->time_base.den, duration * st->time_base.num);
462     }
463     return 1;
464 }
465
466 static int avi_read_header(AVFormatContext *s)
467 {
468     AVIContext *avi = s->priv_data;
469     AVIOContext *pb = s->pb;
470     unsigned int tag, tag1, handler;
471     int codec_type, stream_index, frame_period;
472     unsigned int size;
473     int i;
474     AVStream *st;
475     AVIStream *ast      = NULL;
476     int avih_width      = 0, avih_height = 0;
477     int amv_file_format = 0;
478     uint64_t list_end   = 0;
479     int ret;
480     AVDictionaryEntry *dict_entry;
481
482     avi->stream_index = -1;
483
484     ret = get_riff(s, pb);
485     if (ret < 0)
486         return ret;
487
488     av_log(avi, AV_LOG_DEBUG, "use odml:%d\n", avi->use_odml);
489
490     avi->io_fsize = avi->fsize = avio_size(pb);
491     if (avi->fsize <= 0 || avi->fsize < avi->riff_end)
492         avi->fsize = avi->riff_end == 8 ? INT64_MAX : avi->riff_end;
493
494     /* first list tag */
495     stream_index = -1;
496     codec_type   = -1;
497     frame_period = 0;
498     for (;;) {
499         if (avio_feof(pb))
500             goto fail;
501         tag  = avio_rl32(pb);
502         size = avio_rl32(pb);
503
504         print_tag("tag", tag, size);
505
506         switch (tag) {
507         case MKTAG('L', 'I', 'S', 'T'):
508             list_end = avio_tell(pb) + size;
509             /* Ignored, except at start of video packets. */
510             tag1 = avio_rl32(pb);
511
512             print_tag("list", tag1, 0);
513
514             if (tag1 == MKTAG('m', 'o', 'v', 'i')) {
515                 avi->movi_list = avio_tell(pb) - 4;
516                 if (size)
517                     avi->movi_end = avi->movi_list + size + (size & 1);
518                 else
519                     avi->movi_end = avi->fsize;
520                 av_log(NULL, AV_LOG_TRACE, "movi end=%"PRIx64"\n", avi->movi_end);
521                 goto end_of_header;
522             } else if (tag1 == MKTAG('I', 'N', 'F', 'O'))
523                 ff_read_riff_info(s, size - 4);
524             else if (tag1 == MKTAG('n', 'c', 'd', 't'))
525                 avi_read_nikon(s, list_end);
526
527             break;
528         case MKTAG('I', 'D', 'I', 'T'):
529         {
530             unsigned char date[64] = { 0 };
531             size += (size & 1);
532             size -= avio_read(pb, date, FFMIN(size, sizeof(date) - 1));
533             avio_skip(pb, size);
534             avi_metadata_creation_time(&s->metadata, date);
535             break;
536         }
537         case MKTAG('d', 'm', 'l', 'h'):
538             avi->is_odml = 1;
539             avio_skip(pb, size + (size & 1));
540             break;
541         case MKTAG('a', 'm', 'v', 'h'):
542             amv_file_format = 1;
543         case MKTAG('a', 'v', 'i', 'h'):
544             /* AVI header */
545             /* using frame_period is bad idea */
546             frame_period = avio_rl32(pb);
547             avio_rl32(pb); /* max. bytes per second */
548             avio_rl32(pb);
549             avi->non_interleaved |= avio_rl32(pb) & AVIF_MUSTUSEINDEX;
550
551             avio_skip(pb, 2 * 4);
552             avio_rl32(pb);
553             avio_rl32(pb);
554             avih_width  = avio_rl32(pb);
555             avih_height = avio_rl32(pb);
556
557             avio_skip(pb, size - 10 * 4);
558             break;
559         case MKTAG('s', 't', 'r', 'h'):
560             /* stream header */
561
562             tag1    = avio_rl32(pb);
563             handler = avio_rl32(pb); /* codec tag */
564
565             if (tag1 == MKTAG('p', 'a', 'd', 's')) {
566                 avio_skip(pb, size - 8);
567                 break;
568             } else {
569                 stream_index++;
570                 st = avformat_new_stream(s, NULL);
571                 if (!st)
572                     goto fail;
573
574                 st->id = stream_index;
575                 ast    = av_mallocz(sizeof(AVIStream));
576                 if (!ast)
577                     goto fail;
578                 st->priv_data = ast;
579             }
580             if (amv_file_format)
581                 tag1 = stream_index ? MKTAG('a', 'u', 'd', 's')
582                                     : MKTAG('v', 'i', 'd', 's');
583
584             print_tag("strh", tag1, -1);
585
586             if (tag1 == MKTAG('i', 'a', 'v', 's') ||
587                 tag1 == MKTAG('i', 'v', 'a', 's')) {
588                 int64_t dv_dur;
589
590                 /* After some consideration -- I don't think we
591                  * have to support anything but DV in type1 AVIs. */
592                 if (s->nb_streams != 1)
593                     goto fail;
594
595                 if (handler != MKTAG('d', 'v', 's', 'd') &&
596                     handler != MKTAG('d', 'v', 'h', 'd') &&
597                     handler != MKTAG('d', 'v', 's', 'l'))
598                     goto fail;
599
600                 ast = s->streams[0]->priv_data;
601                 av_freep(&s->streams[0]->codec->extradata);
602                 av_freep(&s->streams[0]->codec);
603                 if (s->streams[0]->info)
604                     av_freep(&s->streams[0]->info->duration_error);
605                 av_freep(&s->streams[0]->info);
606                 av_freep(&s->streams[0]);
607                 s->nb_streams = 0;
608                 if (CONFIG_DV_DEMUXER) {
609                     avi->dv_demux = avpriv_dv_init_demux(s);
610                     if (!avi->dv_demux)
611                         goto fail;
612                 } else
613                     goto fail;
614                 s->streams[0]->priv_data = ast;
615                 avio_skip(pb, 3 * 4);
616                 ast->scale = avio_rl32(pb);
617                 ast->rate  = avio_rl32(pb);
618                 avio_skip(pb, 4);  /* start time */
619
620                 dv_dur = avio_rl32(pb);
621                 if (ast->scale > 0 && ast->rate > 0 && dv_dur > 0) {
622                     dv_dur     *= AV_TIME_BASE;
623                     s->duration = av_rescale(dv_dur, ast->scale, ast->rate);
624                 }
625                 /* else, leave duration alone; timing estimation in utils.c
626                  * will make a guess based on bitrate. */
627
628                 stream_index = s->nb_streams - 1;
629                 avio_skip(pb, size - 9 * 4);
630                 break;
631             }
632
633             av_assert0(stream_index < s->nb_streams);
634             ast->handler = handler;
635
636             avio_rl32(pb); /* flags */
637             avio_rl16(pb); /* priority */
638             avio_rl16(pb); /* language */
639             avio_rl32(pb); /* initial frame */
640             ast->scale = avio_rl32(pb);
641             ast->rate  = avio_rl32(pb);
642             if (!(ast->scale && ast->rate)) {
643                 av_log(s, AV_LOG_WARNING,
644                        "scale/rate is %"PRIu32"/%"PRIu32" which is invalid. "
645                        "(This file has been generated by broken software.)\n",
646                        ast->scale,
647                        ast->rate);
648                 if (frame_period) {
649                     ast->rate  = 1000000;
650                     ast->scale = frame_period;
651                 } else {
652                     ast->rate  = 25;
653                     ast->scale = 1;
654                 }
655             }
656             avpriv_set_pts_info(st, 64, ast->scale, ast->rate);
657
658             ast->cum_len  = avio_rl32(pb); /* start */
659             st->nb_frames = avio_rl32(pb);
660
661             st->start_time = 0;
662             avio_rl32(pb); /* buffer size */
663             avio_rl32(pb); /* quality */
664             if (ast->cum_len*ast->scale/ast->rate > 3600) {
665                 av_log(s, AV_LOG_ERROR, "crazy start time, iam scared, giving up\n");
666                 ast->cum_len = 0;
667             }
668             ast->sample_size = avio_rl32(pb); /* sample ssize */
669             ast->cum_len    *= FFMAX(1, ast->sample_size);
670             av_log(s, AV_LOG_TRACE, "%"PRIu32" %"PRIu32" %d\n",
671                     ast->rate, ast->scale, ast->sample_size);
672
673             switch (tag1) {
674             case MKTAG('v', 'i', 'd', 's'):
675                 codec_type = AVMEDIA_TYPE_VIDEO;
676
677                 ast->sample_size = 0;
678                 st->avg_frame_rate = av_inv_q(st->time_base);
679                 break;
680             case MKTAG('a', 'u', 'd', 's'):
681                 codec_type = AVMEDIA_TYPE_AUDIO;
682                 break;
683             case MKTAG('t', 'x', 't', 's'):
684                 codec_type = AVMEDIA_TYPE_SUBTITLE;
685                 break;
686             case MKTAG('d', 'a', 't', 's'):
687                 codec_type = AVMEDIA_TYPE_DATA;
688                 break;
689             default:
690                 av_log(s, AV_LOG_INFO, "unknown stream type %X\n", tag1);
691             }
692             if (ast->sample_size == 0) {
693                 st->duration = st->nb_frames;
694                 if (st->duration > 0 && avi->io_fsize > 0 && avi->riff_end > avi->io_fsize) {
695                     av_log(s, AV_LOG_DEBUG, "File is truncated adjusting duration\n");
696                     st->duration = av_rescale(st->duration, avi->io_fsize, avi->riff_end);
697                 }
698             }
699             ast->frame_offset = ast->cum_len;
700             avio_skip(pb, size - 12 * 4);
701             break;
702         case MKTAG('s', 't', 'r', 'f'):
703             /* stream header */
704             if (!size)
705                 break;
706             if (stream_index >= (unsigned)s->nb_streams || avi->dv_demux) {
707                 avio_skip(pb, size);
708             } else {
709                 uint64_t cur_pos = avio_tell(pb);
710                 unsigned esize;
711                 if (cur_pos < list_end)
712                     size = FFMIN(size, list_end - cur_pos);
713                 st = s->streams[stream_index];
714                 if (st->codec->codec_type != AVMEDIA_TYPE_UNKNOWN) {
715                     avio_skip(pb, size);
716                     break;
717                 }
718                 switch (codec_type) {
719                 case AVMEDIA_TYPE_VIDEO:
720                     if (amv_file_format) {
721                         st->codec->width      = avih_width;
722                         st->codec->height     = avih_height;
723                         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
724                         st->codec->codec_id   = AV_CODEC_ID_AMV;
725                         avio_skip(pb, size);
726                         break;
727                     }
728                     tag1 = ff_get_bmp_header(pb, st, &esize);
729
730                     if (tag1 == MKTAG('D', 'X', 'S', 'B') ||
731                         tag1 == MKTAG('D', 'X', 'S', 'A')) {
732                         st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
733                         st->codec->codec_tag  = tag1;
734                         st->codec->codec_id   = AV_CODEC_ID_XSUB;
735                         break;
736                     }
737
738                     if (size > 10 * 4 && size < (1 << 30) && size < avi->fsize) {
739                         if (esize == size-1 && (esize&1)) {
740                             st->codec->extradata_size = esize - 10 * 4;
741                         } else
742                             st->codec->extradata_size =  size - 10 * 4;
743                         if (ff_get_extradata(st->codec, pb, st->codec->extradata_size) < 0)
744                             return AVERROR(ENOMEM);
745                     }
746
747                     // FIXME: check if the encoder really did this correctly
748                     if (st->codec->extradata_size & 1)
749                         avio_r8(pb);
750
751                     /* Extract palette from extradata if bpp <= 8.
752                      * This code assumes that extradata contains only palette.
753                      * This is true for all paletted codecs implemented in
754                      * FFmpeg. */
755                     if (st->codec->extradata_size &&
756                         (st->codec->bits_per_coded_sample <= 8)) {
757                         int pal_size = (1 << st->codec->bits_per_coded_sample) << 2;
758                         const uint8_t *pal_src;
759
760                         pal_size = FFMIN(pal_size, st->codec->extradata_size);
761                         pal_src  = st->codec->extradata +
762                                    st->codec->extradata_size - pal_size;
763                         /* Exclude the "BottomUp" field from the palette */
764                         if (pal_src - st->codec->extradata >= 9 &&
765                             !memcmp(st->codec->extradata + st->codec->extradata_size - 9, "BottomUp", 9))
766                             pal_src -= 9;
767                         for (i = 0; i < pal_size / 4; i++)
768                             ast->pal[i] = 0xFFU<<24 | AV_RL32(pal_src+4*i);
769                         ast->has_pal = 1;
770                     }
771
772                     print_tag("video", tag1, 0);
773
774                     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
775                     st->codec->codec_tag  = tag1;
776                     st->codec->codec_id   = ff_codec_get_id(ff_codec_bmp_tags,
777                                                             tag1);
778                     /* If codec is not found yet, try with the mov tags. */
779                     if (!st->codec->codec_id) {
780                         char tag_buf[32];
781                         av_get_codec_tag_string(tag_buf, sizeof(tag_buf), tag1);
782                         st->codec->codec_id =
783                             ff_codec_get_id(ff_codec_movvideo_tags, tag1);
784                         if (st->codec->codec_id)
785                            av_log(s, AV_LOG_WARNING,
786                                   "mov tag found in avi (fourcc %s)\n",
787                                   tag_buf);
788                     }
789                     /* This is needed to get the pict type which is necessary
790                      * for generating correct pts. */
791                     st->need_parsing = AVSTREAM_PARSE_HEADERS;
792
793                     if (st->codec->codec_id == AV_CODEC_ID_MPEG4 &&
794                         ast->handler == MKTAG('X', 'V', 'I', 'D'))
795                         st->codec->codec_tag = MKTAG('X', 'V', 'I', 'D');
796
797                     if (st->codec->codec_tag == MKTAG('V', 'S', 'S', 'H'))
798                         st->need_parsing = AVSTREAM_PARSE_FULL;
799
800                     if (st->codec->codec_tag == 0 && st->codec->height > 0 &&
801                         st->codec->extradata_size < 1U << 30) {
802                         st->codec->extradata_size += 9;
803                         if ((ret = av_reallocp(&st->codec->extradata,
804                                                st->codec->extradata_size +
805                                                FF_INPUT_BUFFER_PADDING_SIZE)) < 0) {
806                             st->codec->extradata_size = 0;
807                             return ret;
808                         } else
809                             memcpy(st->codec->extradata + st->codec->extradata_size - 9,
810                                    "BottomUp", 9);
811                     }
812                     st->codec->height = FFABS(st->codec->height);
813
814 //                    avio_skip(pb, size - 5 * 4);
815                     break;
816                 case AVMEDIA_TYPE_AUDIO:
817                     ret = ff_get_wav_header(pb, st->codec, size, 0);
818                     if (ret < 0)
819                         return ret;
820                     ast->dshow_block_align = st->codec->block_align;
821                     if (ast->sample_size && st->codec->block_align &&
822                         ast->sample_size != st->codec->block_align) {
823                         av_log(s,
824                                AV_LOG_WARNING,
825                                "sample size (%d) != block align (%d)\n",
826                                ast->sample_size,
827                                st->codec->block_align);
828                         ast->sample_size = st->codec->block_align;
829                     }
830                     /* 2-aligned
831                      * (fix for Stargate SG-1 - 3x18 - Shades of Grey.avi) */
832                     if (size & 1)
833                         avio_skip(pb, 1);
834                     /* Force parsing as several audio frames can be in
835                      * one packet and timestamps refer to packet start. */
836                     st->need_parsing = AVSTREAM_PARSE_TIMESTAMPS;
837                     /* ADTS header is in extradata, AAC without header must be
838                      * stored as exact frames. Parser not needed and it will
839                      * fail. */
840                     if (st->codec->codec_id == AV_CODEC_ID_AAC &&
841                         st->codec->extradata_size)
842                         st->need_parsing = AVSTREAM_PARSE_NONE;
843                     /* AVI files with Xan DPCM audio (wrongly) declare PCM
844                      * audio in the header but have Axan as stream_code_tag. */
845                     if (ast->handler == AV_RL32("Axan")) {
846                         st->codec->codec_id  = AV_CODEC_ID_XAN_DPCM;
847                         st->codec->codec_tag = 0;
848                         ast->dshow_block_align = 0;
849                     }
850                     if (amv_file_format) {
851                         st->codec->codec_id    = AV_CODEC_ID_ADPCM_IMA_AMV;
852                         ast->dshow_block_align = 0;
853                     }
854                     if (st->codec->codec_id == AV_CODEC_ID_AAC && ast->dshow_block_align <= 4 && ast->dshow_block_align) {
855                         av_log(s, AV_LOG_DEBUG, "overriding invalid dshow_block_align of %d\n", ast->dshow_block_align);
856                         ast->dshow_block_align = 0;
857                     }
858                     if (st->codec->codec_id == AV_CODEC_ID_AAC && ast->dshow_block_align == 1024 && ast->sample_size == 1024 ||
859                        st->codec->codec_id == AV_CODEC_ID_AAC && ast->dshow_block_align == 4096 && ast->sample_size == 4096 ||
860                        st->codec->codec_id == AV_CODEC_ID_MP3 && ast->dshow_block_align == 1152 && ast->sample_size == 1152) {
861                         av_log(s, AV_LOG_DEBUG, "overriding sample_size\n");
862                         ast->sample_size = 0;
863                     }
864                     break;
865                 case AVMEDIA_TYPE_SUBTITLE:
866                     st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
867                     st->request_probe= 1;
868                     avio_skip(pb, size);
869                     break;
870                 default:
871                     st->codec->codec_type = AVMEDIA_TYPE_DATA;
872                     st->codec->codec_id   = AV_CODEC_ID_NONE;
873                     st->codec->codec_tag  = 0;
874                     avio_skip(pb, size);
875                     break;
876                 }
877             }
878             break;
879         case MKTAG('s', 't', 'r', 'd'):
880             if (stream_index >= (unsigned)s->nb_streams
881                 || s->streams[stream_index]->codec->extradata_size
882                 || s->streams[stream_index]->codec->codec_tag == MKTAG('H','2','6','4')) {
883                 avio_skip(pb, size);
884             } else {
885                 uint64_t cur_pos = avio_tell(pb);
886                 if (cur_pos < list_end)
887                     size = FFMIN(size, list_end - cur_pos);
888                 st = s->streams[stream_index];
889
890                 if (size<(1<<30)) {
891                     if (ff_get_extradata(st->codec, pb, size) < 0)
892                         return AVERROR(ENOMEM);
893                 }
894
895                 if (st->codec->extradata_size & 1) //FIXME check if the encoder really did this correctly
896                     avio_r8(pb);
897
898                 ret = avi_extract_stream_metadata(st);
899                 if (ret < 0) {
900                     av_log(s, AV_LOG_WARNING, "could not decoding EXIF data in stream header.\n");
901                 }
902             }
903             break;
904         case MKTAG('i', 'n', 'd', 'x'):
905             i = avio_tell(pb);
906             if (pb->seekable && !(s->flags & AVFMT_FLAG_IGNIDX) &&
907                 avi->use_odml &&
908                 read_braindead_odml_indx(s, 0) < 0 &&
909                 (s->error_recognition & AV_EF_EXPLODE))
910                 goto fail;
911             avio_seek(pb, i + size, SEEK_SET);
912             break;
913         case MKTAG('v', 'p', 'r', 'p'):
914             if (stream_index < (unsigned)s->nb_streams && size > 9 * 4) {
915                 AVRational active, active_aspect;
916
917                 st = s->streams[stream_index];
918                 avio_rl32(pb);
919                 avio_rl32(pb);
920                 avio_rl32(pb);
921                 avio_rl32(pb);
922                 avio_rl32(pb);
923
924                 active_aspect.den = avio_rl16(pb);
925                 active_aspect.num = avio_rl16(pb);
926                 active.num        = avio_rl32(pb);
927                 active.den        = avio_rl32(pb);
928                 avio_rl32(pb); // nbFieldsPerFrame
929
930                 if (active_aspect.num && active_aspect.den &&
931                     active.num && active.den) {
932                     st->sample_aspect_ratio = av_div_q(active_aspect, active);
933                     av_log(s, AV_LOG_TRACE, "vprp %d/%d %d/%d\n",
934                             active_aspect.num, active_aspect.den,
935                             active.num, active.den);
936                 }
937                 size -= 9 * 4;
938             }
939             avio_skip(pb, size);
940             break;
941         case MKTAG('s', 't', 'r', 'n'):
942             if (s->nb_streams) {
943                 ret = avi_read_tag(s, s->streams[s->nb_streams - 1], tag, size);
944                 if (ret < 0)
945                     return ret;
946                 break;
947             }
948         default:
949             if (size > 1000000) {
950                 av_log(s, AV_LOG_ERROR,
951                        "Something went wrong during header parsing, "
952                        "I will ignore it and try to continue anyway.\n");
953                 if (s->error_recognition & AV_EF_EXPLODE)
954                     goto fail;
955                 avi->movi_list = avio_tell(pb) - 4;
956                 avi->movi_end  = avi->fsize;
957                 goto end_of_header;
958             }
959             /* skip tag */
960             size += (size & 1);
961             avio_skip(pb, size);
962             break;
963         }
964     }
965
966 end_of_header:
967     /* check stream number */
968     if (stream_index != s->nb_streams - 1) {
969
970 fail:
971         return AVERROR_INVALIDDATA;
972     }
973
974     if (!avi->index_loaded && pb->seekable)
975         avi_load_index(s);
976     calculate_bitrate(s);
977     avi->index_loaded    |= 1;
978
979     if ((ret = guess_ni_flag(s)) < 0)
980         return ret;
981
982     avi->non_interleaved |= ret | (s->flags & AVFMT_FLAG_SORT_DTS);
983
984     dict_entry = av_dict_get(s->metadata, "ISFT", NULL, 0);
985     if (dict_entry && !strcmp(dict_entry->value, "PotEncoder"))
986         for (i = 0; i < s->nb_streams; i++) {
987             AVStream *st = s->streams[i];
988             if (   st->codec->codec_id == AV_CODEC_ID_MPEG1VIDEO
989                 || st->codec->codec_id == AV_CODEC_ID_MPEG2VIDEO)
990                 st->need_parsing = AVSTREAM_PARSE_FULL;
991         }
992
993     for (i = 0; i < s->nb_streams; i++) {
994         AVStream *st = s->streams[i];
995         if (st->nb_index_entries)
996             break;
997     }
998     // DV-in-AVI cannot be non-interleaved, if set this must be
999     // a mis-detection.
1000     if (avi->dv_demux)
1001         avi->non_interleaved = 0;
1002     if (i == s->nb_streams && avi->non_interleaved) {
1003         av_log(s, AV_LOG_WARNING,
1004                "Non-interleaved AVI without index, switching to interleaved\n");
1005         avi->non_interleaved = 0;
1006     }
1007
1008     if (avi->non_interleaved) {
1009         av_log(s, AV_LOG_INFO, "non-interleaved AVI\n");
1010         clean_index(s);
1011     }
1012
1013     ff_metadata_conv_ctx(s, NULL, avi_metadata_conv);
1014     ff_metadata_conv_ctx(s, NULL, ff_riff_info_conv);
1015
1016     return 0;
1017 }
1018
1019 static int read_gab2_sub(AVFormatContext *s, AVStream *st, AVPacket *pkt)
1020 {
1021     if (pkt->size >= 7 &&
1022         pkt->size < INT_MAX - AVPROBE_PADDING_SIZE &&
1023         !strcmp(pkt->data, "GAB2") && AV_RL16(pkt->data + 5) == 2) {
1024         uint8_t desc[256];
1025         int score      = AVPROBE_SCORE_EXTENSION, ret;
1026         AVIStream *ast = st->priv_data;
1027         AVInputFormat *sub_demuxer;
1028         AVRational time_base;
1029         int size;
1030         AVIOContext *pb = avio_alloc_context(pkt->data + 7,
1031                                              pkt->size - 7,
1032                                              0, NULL, NULL, NULL, NULL);
1033         AVProbeData pd;
1034         unsigned int desc_len = avio_rl32(pb);
1035
1036         if (desc_len > pb->buf_end - pb->buf_ptr)
1037             goto error;
1038
1039         ret = avio_get_str16le(pb, desc_len, desc, sizeof(desc));
1040         avio_skip(pb, desc_len - ret);
1041         if (*desc)
1042             av_dict_set(&st->metadata, "title", desc, 0);
1043
1044         avio_rl16(pb);   /* flags? */
1045         avio_rl32(pb);   /* data size */
1046
1047         size = pb->buf_end - pb->buf_ptr;
1048         pd = (AVProbeData) { .buf      = av_mallocz(size + AVPROBE_PADDING_SIZE),
1049                              .buf_size = size };
1050         if (!pd.buf)
1051             goto error;
1052         memcpy(pd.buf, pb->buf_ptr, size);
1053         sub_demuxer = av_probe_input_format2(&pd, 1, &score);
1054         av_freep(&pd.buf);
1055         if (!sub_demuxer)
1056             goto error;
1057
1058         if (!(ast->sub_ctx = avformat_alloc_context()))
1059             goto error;
1060
1061         ast->sub_ctx->pb = pb;
1062
1063         if (ff_copy_whitelists(ast->sub_ctx, s) < 0)
1064             goto error;
1065
1066         if (!avformat_open_input(&ast->sub_ctx, "", sub_demuxer, NULL)) {
1067             ff_read_packet(ast->sub_ctx, &ast->sub_pkt);
1068             *st->codec = *ast->sub_ctx->streams[0]->codec;
1069             ast->sub_ctx->streams[0]->codec->extradata = NULL;
1070             time_base = ast->sub_ctx->streams[0]->time_base;
1071             avpriv_set_pts_info(st, 64, time_base.num, time_base.den);
1072         }
1073         ast->sub_buffer = pkt->data;
1074         memset(pkt, 0, sizeof(*pkt));
1075         return 1;
1076
1077 error:
1078         av_freep(&ast->sub_ctx);
1079         av_freep(&pb);
1080     }
1081     return 0;
1082 }
1083
1084 static AVStream *get_subtitle_pkt(AVFormatContext *s, AVStream *next_st,
1085                                   AVPacket *pkt)
1086 {
1087     AVIStream *ast, *next_ast = next_st->priv_data;
1088     int64_t ts, next_ts, ts_min = INT64_MAX;
1089     AVStream *st, *sub_st = NULL;
1090     int i;
1091
1092     next_ts = av_rescale_q(next_ast->frame_offset, next_st->time_base,
1093                            AV_TIME_BASE_Q);
1094
1095     for (i = 0; i < s->nb_streams; i++) {
1096         st  = s->streams[i];
1097         ast = st->priv_data;
1098         if (st->discard < AVDISCARD_ALL && ast && ast->sub_pkt.data) {
1099             ts = av_rescale_q(ast->sub_pkt.dts, st->time_base, AV_TIME_BASE_Q);
1100             if (ts <= next_ts && ts < ts_min) {
1101                 ts_min = ts;
1102                 sub_st = st;
1103             }
1104         }
1105     }
1106
1107     if (sub_st) {
1108         ast               = sub_st->priv_data;
1109         *pkt              = ast->sub_pkt;
1110         pkt->stream_index = sub_st->index;
1111
1112         if (ff_read_packet(ast->sub_ctx, &ast->sub_pkt) < 0)
1113             ast->sub_pkt.data = NULL;
1114     }
1115     return sub_st;
1116 }
1117
1118 static int get_stream_idx(const unsigned *d)
1119 {
1120     if (d[0] >= '0' && d[0] <= '9' &&
1121         d[1] >= '0' && d[1] <= '9') {
1122         return (d[0] - '0') * 10 + (d[1] - '0');
1123     } else {
1124         return 100; // invalid stream ID
1125     }
1126 }
1127
1128 /**
1129  *
1130  * @param exit_early set to 1 to just gather packet position without making the changes needed to actually read & return the packet
1131  */
1132 static int avi_sync(AVFormatContext *s, int exit_early)
1133 {
1134     AVIContext *avi = s->priv_data;
1135     AVIOContext *pb = s->pb;
1136     int n;
1137     unsigned int d[8];
1138     unsigned int size;
1139     int64_t i, sync;
1140
1141 start_sync:
1142     memset(d, -1, sizeof(d));
1143     for (i = sync = avio_tell(pb); !avio_feof(pb); i++) {
1144         int j;
1145
1146         for (j = 0; j < 7; j++)
1147             d[j] = d[j + 1];
1148         d[7] = avio_r8(pb);
1149
1150         size = d[4] + (d[5] << 8) + (d[6] << 16) + (d[7] << 24);
1151
1152         n = get_stream_idx(d + 2);
1153         ff_tlog(s, "%X %X %X %X %X %X %X %X %"PRId64" %u %d\n",
1154                 d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7], i, size, n);
1155         if (i*(avi->io_fsize>0) + (uint64_t)size > avi->fsize || d[0] > 127)
1156             continue;
1157
1158         // parse ix##
1159         if ((d[0] == 'i' && d[1] == 'x' && n < s->nb_streams) ||
1160             // parse JUNK
1161             (d[0] == 'J' && d[1] == 'U' && d[2] == 'N' && d[3] == 'K') ||
1162             (d[0] == 'i' && d[1] == 'd' && d[2] == 'x' && d[3] == '1')) {
1163             avio_skip(pb, size);
1164             goto start_sync;
1165         }
1166
1167         // parse stray LIST
1168         if (d[0] == 'L' && d[1] == 'I' && d[2] == 'S' && d[3] == 'T') {
1169             avio_skip(pb, 4);
1170             goto start_sync;
1171         }
1172
1173         n = get_stream_idx(d);
1174
1175         if (!((i - avi->last_pkt_pos) & 1) &&
1176             get_stream_idx(d + 1) < s->nb_streams)
1177             continue;
1178
1179         // detect ##ix chunk and skip
1180         if (d[2] == 'i' && d[3] == 'x' && n < s->nb_streams) {
1181             avio_skip(pb, size);
1182             goto start_sync;
1183         }
1184
1185         if (avi->dv_demux && n != 0)
1186             continue;
1187
1188         // parse ##dc/##wb
1189         if (n < s->nb_streams) {
1190             AVStream *st;
1191             AVIStream *ast;
1192             st  = s->streams[n];
1193             ast = st->priv_data;
1194
1195             if (!ast) {
1196                 av_log(s, AV_LOG_WARNING, "Skipping foreign stream %d packet\n", n);
1197                 continue;
1198             }
1199
1200             if (s->nb_streams >= 2) {
1201                 AVStream *st1   = s->streams[1];
1202                 AVIStream *ast1 = st1->priv_data;
1203                 // workaround for broken small-file-bug402.avi
1204                 if (   d[2] == 'w' && d[3] == 'b'
1205                    && n == 0
1206                    && st ->codec->codec_type == AVMEDIA_TYPE_VIDEO
1207                    && st1->codec->codec_type == AVMEDIA_TYPE_AUDIO
1208                    && ast->prefix == 'd'*256+'c'
1209                    && (d[2]*256+d[3] == ast1->prefix || !ast1->prefix_count)
1210                   ) {
1211                     n   = 1;
1212                     st  = st1;
1213                     ast = ast1;
1214                     av_log(s, AV_LOG_WARNING,
1215                            "Invalid stream + prefix combination, assuming audio.\n");
1216                 }
1217             }
1218
1219             if (!avi->dv_demux &&
1220                 ((st->discard >= AVDISCARD_DEFAULT && size == 0) /* ||
1221                  // FIXME: needs a little reordering
1222                  (st->discard >= AVDISCARD_NONKEY &&
1223                  !(pkt->flags & AV_PKT_FLAG_KEY)) */
1224                 || st->discard >= AVDISCARD_ALL)) {
1225                 if (!exit_early) {
1226                     ast->frame_offset += get_duration(ast, size);
1227                     avio_skip(pb, size);
1228                     goto start_sync;
1229                 }
1230             }
1231
1232             if (d[2] == 'p' && d[3] == 'c' && size <= 4 * 256 + 4) {
1233                 int k    = avio_r8(pb);
1234                 int last = (k + avio_r8(pb) - 1) & 0xFF;
1235
1236                 avio_rl16(pb); // flags
1237
1238                 // b + (g << 8) + (r << 16);
1239                 for (; k <= last; k++)
1240                     ast->pal[k] = 0xFFU<<24 | avio_rb32(pb)>>8;
1241
1242                 ast->has_pal = 1;
1243                 goto start_sync;
1244             } else if (((ast->prefix_count < 5 || sync + 9 > i) &&
1245                         d[2] < 128 && d[3] < 128) ||
1246                        d[2] * 256 + d[3] == ast->prefix /* ||
1247                        (d[2] == 'd' && d[3] == 'c') ||
1248                        (d[2] == 'w' && d[3] == 'b') */) {
1249                 if (exit_early)
1250                     return 0;
1251                 if (d[2] * 256 + d[3] == ast->prefix)
1252                     ast->prefix_count++;
1253                 else {
1254                     ast->prefix       = d[2] * 256 + d[3];
1255                     ast->prefix_count = 0;
1256                 }
1257
1258                 avi->stream_index = n;
1259                 ast->packet_size  = size + 8;
1260                 ast->remaining    = size;
1261
1262                 if (size) {
1263                     uint64_t pos = avio_tell(pb) - 8;
1264                     if (!st->index_entries || !st->nb_index_entries ||
1265                         st->index_entries[st->nb_index_entries - 1].pos < pos) {
1266                         av_add_index_entry(st, pos, ast->frame_offset, size,
1267                                            0, AVINDEX_KEYFRAME);
1268                     }
1269                 }
1270                 return 0;
1271             }
1272         }
1273     }
1274
1275     if (pb->error)
1276         return pb->error;
1277     return AVERROR_EOF;
1278 }
1279
1280 static int avi_read_packet(AVFormatContext *s, AVPacket *pkt)
1281 {
1282     AVIContext *avi = s->priv_data;
1283     AVIOContext *pb = s->pb;
1284     int err;
1285 #if FF_API_DESTRUCT_PACKET
1286     void *dstr;
1287 #endif
1288
1289     if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1290         int size = avpriv_dv_get_packet(avi->dv_demux, pkt);
1291         if (size >= 0)
1292             return size;
1293         else
1294             goto resync;
1295     }
1296
1297     if (avi->non_interleaved) {
1298         int best_stream_index = 0;
1299         AVStream *best_st     = NULL;
1300         AVIStream *best_ast;
1301         int64_t best_ts = INT64_MAX;
1302         int i;
1303
1304         for (i = 0; i < s->nb_streams; i++) {
1305             AVStream *st   = s->streams[i];
1306             AVIStream *ast = st->priv_data;
1307             int64_t ts     = ast->frame_offset;
1308             int64_t last_ts;
1309
1310             if (!st->nb_index_entries)
1311                 continue;
1312
1313             last_ts = st->index_entries[st->nb_index_entries - 1].timestamp;
1314             if (!ast->remaining && ts > last_ts)
1315                 continue;
1316
1317             ts = av_rescale_q(ts, st->time_base,
1318                               (AVRational) { FFMAX(1, ast->sample_size),
1319                                              AV_TIME_BASE });
1320
1321             av_log(s, AV_LOG_TRACE, "%"PRId64" %d/%d %"PRId64"\n", ts,
1322                     st->time_base.num, st->time_base.den, ast->frame_offset);
1323             if (ts < best_ts) {
1324                 best_ts           = ts;
1325                 best_st           = st;
1326                 best_stream_index = i;
1327             }
1328         }
1329         if (!best_st)
1330             return AVERROR_EOF;
1331
1332         best_ast = best_st->priv_data;
1333         best_ts  = best_ast->frame_offset;
1334         if (best_ast->remaining) {
1335             i = av_index_search_timestamp(best_st,
1336                                           best_ts,
1337                                           AVSEEK_FLAG_ANY |
1338                                           AVSEEK_FLAG_BACKWARD);
1339         } else {
1340             i = av_index_search_timestamp(best_st, best_ts, AVSEEK_FLAG_ANY);
1341             if (i >= 0)
1342                 best_ast->frame_offset = best_st->index_entries[i].timestamp;
1343         }
1344
1345         if (i >= 0) {
1346             int64_t pos = best_st->index_entries[i].pos;
1347             pos += best_ast->packet_size - best_ast->remaining;
1348             if (avio_seek(s->pb, pos + 8, SEEK_SET) < 0)
1349               return AVERROR_EOF;
1350
1351             av_assert0(best_ast->remaining <= best_ast->packet_size);
1352
1353             avi->stream_index = best_stream_index;
1354             if (!best_ast->remaining)
1355                 best_ast->packet_size =
1356                 best_ast->remaining   = best_st->index_entries[i].size;
1357         }
1358         else
1359           return AVERROR_EOF;
1360     }
1361
1362 resync:
1363     if (avi->stream_index >= 0) {
1364         AVStream *st   = s->streams[avi->stream_index];
1365         AVIStream *ast = st->priv_data;
1366         int size, err;
1367
1368         if (get_subtitle_pkt(s, st, pkt))
1369             return 0;
1370
1371         // minorityreport.AVI block_align=1024 sample_size=1 IMA-ADPCM
1372         if (ast->sample_size <= 1)
1373             size = INT_MAX;
1374         else if (ast->sample_size < 32)
1375             // arbitrary multiplier to avoid tiny packets for raw PCM data
1376             size = 1024 * ast->sample_size;
1377         else
1378             size = ast->sample_size;
1379
1380         if (size > ast->remaining)
1381             size = ast->remaining;
1382         avi->last_pkt_pos = avio_tell(pb);
1383         err               = av_get_packet(pb, pkt, size);
1384         if (err < 0)
1385             return err;
1386         size = err;
1387
1388         if (ast->has_pal && pkt->size < (unsigned)INT_MAX / 2) {
1389             uint8_t *pal;
1390             pal = av_packet_new_side_data(pkt,
1391                                           AV_PKT_DATA_PALETTE,
1392                                           AVPALETTE_SIZE);
1393             if (!pal) {
1394                 av_log(s, AV_LOG_ERROR,
1395                        "Failed to allocate data for palette\n");
1396             } else {
1397                 memcpy(pal, ast->pal, AVPALETTE_SIZE);
1398                 ast->has_pal = 0;
1399             }
1400         }
1401
1402         if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1403             AVBufferRef *avbuf = pkt->buf;
1404 #if FF_API_DESTRUCT_PACKET
1405 FF_DISABLE_DEPRECATION_WARNINGS
1406             dstr = pkt->destruct;
1407 FF_ENABLE_DEPRECATION_WARNINGS
1408 #endif
1409             size = avpriv_dv_produce_packet(avi->dv_demux, pkt,
1410                                             pkt->data, pkt->size, pkt->pos);
1411 #if FF_API_DESTRUCT_PACKET
1412 FF_DISABLE_DEPRECATION_WARNINGS
1413             pkt->destruct = dstr;
1414 FF_ENABLE_DEPRECATION_WARNINGS
1415 #endif
1416             pkt->buf    = avbuf;
1417             pkt->flags |= AV_PKT_FLAG_KEY;
1418             if (size < 0)
1419                 av_free_packet(pkt);
1420         } else if (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE &&
1421                    !st->codec->codec_tag && read_gab2_sub(s, st, pkt)) {
1422             ast->frame_offset++;
1423             avi->stream_index = -1;
1424             ast->remaining    = 0;
1425             goto resync;
1426         } else {
1427             /* XXX: How to handle B-frames in AVI? */
1428             pkt->dts = ast->frame_offset;
1429 //                pkt->dts += ast->start;
1430             if (ast->sample_size)
1431                 pkt->dts /= ast->sample_size;
1432             av_log(s, AV_LOG_TRACE,
1433                     "dts:%"PRId64" offset:%"PRId64" %d/%d smpl_siz:%d "
1434                     "base:%d st:%d size:%d\n",
1435                     pkt->dts,
1436                     ast->frame_offset,
1437                     ast->scale,
1438                     ast->rate,
1439                     ast->sample_size,
1440                     AV_TIME_BASE,
1441                     avi->stream_index,
1442                     size);
1443             pkt->stream_index = avi->stream_index;
1444
1445             if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && st->index_entries) {
1446                 AVIndexEntry *e;
1447                 int index;
1448
1449                 index = av_index_search_timestamp(st, ast->frame_offset, AVSEEK_FLAG_ANY);
1450                 e     = &st->index_entries[index];
1451
1452                 if (index >= 0 && e->timestamp == ast->frame_offset) {
1453                     if (index == st->nb_index_entries-1) {
1454                         int key=1;
1455                         uint32_t state=-1;
1456                         if (st->codec->codec_id == AV_CODEC_ID_MPEG4) {
1457                             const uint8_t *ptr = pkt->data, *end = ptr + FFMIN(size, 256);
1458                             while (ptr < end) {
1459                                 ptr = avpriv_find_start_code(ptr, end, &state);
1460                                 if (state == 0x1B6 && ptr < end) {
1461                                     key = !(*ptr & 0xC0);
1462                                     break;
1463                                 }
1464                             }
1465                         }
1466                         if (!key)
1467                             e->flags &= ~AVINDEX_KEYFRAME;
1468                     }
1469                     if (e->flags & AVINDEX_KEYFRAME)
1470                         pkt->flags |= AV_PKT_FLAG_KEY;
1471                 }
1472             } else {
1473                 pkt->flags |= AV_PKT_FLAG_KEY;
1474             }
1475             ast->frame_offset += get_duration(ast, pkt->size);
1476         }
1477         ast->remaining -= err;
1478         if (!ast->remaining) {
1479             avi->stream_index = -1;
1480             ast->packet_size  = 0;
1481         }
1482
1483         if (!avi->non_interleaved && pkt->pos >= 0 && ast->seek_pos > pkt->pos) {
1484             av_free_packet(pkt);
1485             goto resync;
1486         }
1487         ast->seek_pos= 0;
1488
1489         if (!avi->non_interleaved && st->nb_index_entries>1 && avi->index_loaded>1) {
1490             int64_t dts= av_rescale_q(pkt->dts, st->time_base, AV_TIME_BASE_Q);
1491
1492             if (avi->dts_max - dts > 2*AV_TIME_BASE) {
1493                 avi->non_interleaved= 1;
1494                 av_log(s, AV_LOG_INFO, "Switching to NI mode, due to poor interleaving\n");
1495             }else if (avi->dts_max < dts)
1496                 avi->dts_max = dts;
1497         }
1498
1499         return 0;
1500     }
1501
1502     if ((err = avi_sync(s, 0)) < 0)
1503         return err;
1504     goto resync;
1505 }
1506
1507 /* XXX: We make the implicit supposition that the positions are sorted
1508  * for each stream. */
1509 static int avi_read_idx1(AVFormatContext *s, int size)
1510 {
1511     AVIContext *avi = s->priv_data;
1512     AVIOContext *pb = s->pb;
1513     int nb_index_entries, i;
1514     AVStream *st;
1515     AVIStream *ast;
1516     unsigned int index, tag, flags, pos, len, first_packet = 1;
1517     unsigned last_pos = -1;
1518     unsigned last_idx = -1;
1519     int64_t idx1_pos, first_packet_pos = 0, data_offset = 0;
1520     int anykey = 0;
1521
1522     nb_index_entries = size / 16;
1523     if (nb_index_entries <= 0)
1524         return AVERROR_INVALIDDATA;
1525
1526     idx1_pos = avio_tell(pb);
1527     avio_seek(pb, avi->movi_list + 4, SEEK_SET);
1528     if (avi_sync(s, 1) == 0)
1529         first_packet_pos = avio_tell(pb) - 8;
1530     avi->stream_index = -1;
1531     avio_seek(pb, idx1_pos, SEEK_SET);
1532
1533     if (s->nb_streams == 1 && s->streams[0]->codec->codec_tag == AV_RL32("MMES")) {
1534         first_packet_pos = 0;
1535         data_offset = avi->movi_list;
1536     }
1537
1538     /* Read the entries and sort them in each stream component. */
1539     for (i = 0; i < nb_index_entries; i++) {
1540         if (avio_feof(pb))
1541             return -1;
1542
1543         tag   = avio_rl32(pb);
1544         flags = avio_rl32(pb);
1545         pos   = avio_rl32(pb);
1546         len   = avio_rl32(pb);
1547         av_log(s, AV_LOG_TRACE, "%d: tag=0x%x flags=0x%x pos=0x%x len=%d/",
1548                 i, tag, flags, pos, len);
1549
1550         index  = ((tag      & 0xff) - '0') * 10;
1551         index +=  (tag >> 8 & 0xff) - '0';
1552         if (index >= s->nb_streams)
1553             continue;
1554         st  = s->streams[index];
1555         ast = st->priv_data;
1556
1557         if (first_packet && first_packet_pos) {
1558             data_offset  = first_packet_pos - pos;
1559             first_packet = 0;
1560         }
1561         pos += data_offset;
1562
1563         av_log(s, AV_LOG_TRACE, "%d cum_len=%"PRId64"\n", len, ast->cum_len);
1564
1565         // even if we have only a single stream, we should
1566         // switch to non-interleaved to get correct timestamps
1567         if (last_pos == pos)
1568             avi->non_interleaved = 1;
1569         if (last_idx != pos && len) {
1570             av_add_index_entry(st, pos, ast->cum_len, len, 0,
1571                                (flags & AVIIF_INDEX) ? AVINDEX_KEYFRAME : 0);
1572             last_idx= pos;
1573         }
1574         ast->cum_len += get_duration(ast, len);
1575         last_pos      = pos;
1576         anykey       |= flags&AVIIF_INDEX;
1577     }
1578     if (!anykey) {
1579         for (index = 0; index < s->nb_streams; index++) {
1580             st = s->streams[index];
1581             if (st->nb_index_entries)
1582                 st->index_entries[0].flags |= AVINDEX_KEYFRAME;
1583         }
1584     }
1585     return 0;
1586 }
1587
1588 /* Scan the index and consider any file with streams more than
1589  * 2 seconds or 64MB apart non-interleaved. */
1590 static int check_stream_max_drift(AVFormatContext *s)
1591 {
1592     int64_t min_pos, pos;
1593     int i;
1594     int *idx = av_mallocz_array(s->nb_streams, sizeof(*idx));
1595     if (!idx)
1596         return AVERROR(ENOMEM);
1597     for (min_pos = pos = 0; min_pos != INT64_MAX; pos = min_pos + 1LU) {
1598         int64_t max_dts = INT64_MIN / 2;
1599         int64_t min_dts = INT64_MAX / 2;
1600         int64_t max_buffer = 0;
1601
1602         min_pos = INT64_MAX;
1603
1604         for (i = 0; i < s->nb_streams; i++) {
1605             AVStream *st = s->streams[i];
1606             AVIStream *ast = st->priv_data;
1607             int n = st->nb_index_entries;
1608             while (idx[i] < n && st->index_entries[idx[i]].pos < pos)
1609                 idx[i]++;
1610             if (idx[i] < n) {
1611                 int64_t dts;
1612                 dts = av_rescale_q(st->index_entries[idx[i]].timestamp /
1613                                    FFMAX(ast->sample_size, 1),
1614                                    st->time_base, AV_TIME_BASE_Q);
1615                 min_dts = FFMIN(min_dts, dts);
1616                 min_pos = FFMIN(min_pos, st->index_entries[idx[i]].pos);
1617             }
1618         }
1619         for (i = 0; i < s->nb_streams; i++) {
1620             AVStream *st = s->streams[i];
1621             AVIStream *ast = st->priv_data;
1622
1623             if (idx[i] && min_dts != INT64_MAX / 2) {
1624                 int64_t dts;
1625                 dts = av_rescale_q(st->index_entries[idx[i] - 1].timestamp /
1626                                    FFMAX(ast->sample_size, 1),
1627                                    st->time_base, AV_TIME_BASE_Q);
1628                 max_dts = FFMAX(max_dts, dts);
1629                 max_buffer = FFMAX(max_buffer,
1630                                    av_rescale(dts - min_dts,
1631                                               st->codec->bit_rate,
1632                                               AV_TIME_BASE));
1633             }
1634         }
1635         if (max_dts - min_dts > 2 * AV_TIME_BASE ||
1636             max_buffer > 1024 * 1024 * 8 * 8) {
1637             av_free(idx);
1638             return 1;
1639         }
1640     }
1641     av_free(idx);
1642     return 0;
1643 }
1644
1645 static int guess_ni_flag(AVFormatContext *s)
1646 {
1647     int i;
1648     int64_t last_start = 0;
1649     int64_t first_end  = INT64_MAX;
1650     int64_t oldpos     = avio_tell(s->pb);
1651
1652     for (i = 0; i < s->nb_streams; i++) {
1653         AVStream *st = s->streams[i];
1654         int n        = st->nb_index_entries;
1655         unsigned int size;
1656
1657         if (n <= 0)
1658             continue;
1659
1660         if (n >= 2) {
1661             int64_t pos = st->index_entries[0].pos;
1662             avio_seek(s->pb, pos + 4, SEEK_SET);
1663             size = avio_rl32(s->pb);
1664             if (pos + size > st->index_entries[1].pos)
1665                 last_start = INT64_MAX;
1666         }
1667
1668         if (st->index_entries[0].pos > last_start)
1669             last_start = st->index_entries[0].pos;
1670         if (st->index_entries[n - 1].pos < first_end)
1671             first_end = st->index_entries[n - 1].pos;
1672     }
1673     avio_seek(s->pb, oldpos, SEEK_SET);
1674
1675     if (last_start > first_end)
1676         return 1;
1677
1678     return check_stream_max_drift(s);
1679 }
1680
1681 static int avi_load_index(AVFormatContext *s)
1682 {
1683     AVIContext *avi = s->priv_data;
1684     AVIOContext *pb = s->pb;
1685     uint32_t tag, size;
1686     int64_t pos = avio_tell(pb);
1687     int64_t next;
1688     int ret     = -1;
1689
1690     if (avio_seek(pb, avi->movi_end, SEEK_SET) < 0)
1691         goto the_end; // maybe truncated file
1692     av_log(s, AV_LOG_TRACE, "movi_end=0x%"PRIx64"\n", avi->movi_end);
1693     for (;;) {
1694         tag  = avio_rl32(pb);
1695         size = avio_rl32(pb);
1696         if (avio_feof(pb))
1697             break;
1698         next = avio_tell(pb) + size + (size & 1);
1699
1700         av_log(s, AV_LOG_TRACE, "tag=%c%c%c%c size=0x%x\n",
1701                  tag        & 0xff,
1702                 (tag >>  8) & 0xff,
1703                 (tag >> 16) & 0xff,
1704                 (tag >> 24) & 0xff,
1705                 size);
1706
1707         if (tag == MKTAG('i', 'd', 'x', '1') &&
1708             avi_read_idx1(s, size) >= 0) {
1709             avi->index_loaded=2;
1710             ret = 0;
1711         }else if (tag == MKTAG('L', 'I', 'S', 'T')) {
1712             uint32_t tag1 = avio_rl32(pb);
1713
1714             if (tag1 == MKTAG('I', 'N', 'F', 'O'))
1715                 ff_read_riff_info(s, size - 4);
1716         }else if (!ret)
1717             break;
1718
1719         if (avio_seek(pb, next, SEEK_SET) < 0)
1720             break; // something is wrong here
1721     }
1722
1723 the_end:
1724     avio_seek(pb, pos, SEEK_SET);
1725     return ret;
1726 }
1727
1728 static void seek_subtitle(AVStream *st, AVStream *st2, int64_t timestamp)
1729 {
1730     AVIStream *ast2 = st2->priv_data;
1731     int64_t ts2     = av_rescale_q(timestamp, st->time_base, st2->time_base);
1732     av_free_packet(&ast2->sub_pkt);
1733     if (avformat_seek_file(ast2->sub_ctx, 0, INT64_MIN, ts2, ts2, 0) >= 0 ||
1734         avformat_seek_file(ast2->sub_ctx, 0, ts2, ts2, INT64_MAX, 0) >= 0)
1735         ff_read_packet(ast2->sub_ctx, &ast2->sub_pkt);
1736 }
1737
1738 static int avi_read_seek(AVFormatContext *s, int stream_index,
1739                          int64_t timestamp, int flags)
1740 {
1741     AVIContext *avi = s->priv_data;
1742     AVStream *st;
1743     int i, index;
1744     int64_t pos, pos_min;
1745     AVIStream *ast;
1746
1747     /* Does not matter which stream is requested dv in avi has the
1748      * stream information in the first video stream.
1749      */
1750     if (avi->dv_demux)
1751         stream_index = 0;
1752
1753     if (!avi->index_loaded) {
1754         /* we only load the index on demand */
1755         avi_load_index(s);
1756         avi->index_loaded |= 1;
1757     }
1758     av_assert0(stream_index >= 0);
1759
1760     st    = s->streams[stream_index];
1761     ast   = st->priv_data;
1762     index = av_index_search_timestamp(st,
1763                                       timestamp * FFMAX(ast->sample_size, 1),
1764                                       flags);
1765     if (index < 0) {
1766         if (st->nb_index_entries > 0)
1767             av_log(s, AV_LOG_DEBUG, "Failed to find timestamp %"PRId64 " in index %"PRId64 " .. %"PRId64 "\n",
1768                    timestamp * FFMAX(ast->sample_size, 1),
1769                    st->index_entries[0].timestamp,
1770                    st->index_entries[st->nb_index_entries - 1].timestamp);
1771         return AVERROR_INVALIDDATA;
1772     }
1773
1774     /* find the position */
1775     pos       = st->index_entries[index].pos;
1776     timestamp = st->index_entries[index].timestamp / FFMAX(ast->sample_size, 1);
1777
1778     av_log(s, AV_LOG_TRACE, "XX %"PRId64" %d %"PRId64"\n",
1779             timestamp, index, st->index_entries[index].timestamp);
1780
1781     if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1782         /* One and only one real stream for DV in AVI, and it has video  */
1783         /* offsets. Calling with other stream indexes should have failed */
1784         /* the av_index_search_timestamp call above.                     */
1785
1786         if (avio_seek(s->pb, pos, SEEK_SET) < 0)
1787             return -1;
1788
1789         /* Feed the DV video stream version of the timestamp to the */
1790         /* DV demux so it can synthesize correct timestamps.        */
1791         ff_dv_offset_reset(avi->dv_demux, timestamp);
1792
1793         avi->stream_index = -1;
1794         return 0;
1795     }
1796
1797     pos_min = pos;
1798     for (i = 0; i < s->nb_streams; i++) {
1799         AVStream *st2   = s->streams[i];
1800         AVIStream *ast2 = st2->priv_data;
1801
1802         ast2->packet_size =
1803         ast2->remaining   = 0;
1804
1805         if (ast2->sub_ctx) {
1806             seek_subtitle(st, st2, timestamp);
1807             continue;
1808         }
1809
1810         if (st2->nb_index_entries <= 0)
1811             continue;
1812
1813 //        av_assert1(st2->codec->block_align);
1814         av_assert0(fabs(av_q2d(st2->time_base) - ast2->scale / (double)ast2->rate) < av_q2d(st2->time_base) * 0.00000001);
1815         index = av_index_search_timestamp(st2,
1816                                           av_rescale_q(timestamp,
1817                                                        st->time_base,
1818                                                        st2->time_base) *
1819                                           FFMAX(ast2->sample_size, 1),
1820                                           flags |
1821                                           AVSEEK_FLAG_BACKWARD |
1822                                           (st2->codec->codec_type != AVMEDIA_TYPE_VIDEO ? AVSEEK_FLAG_ANY : 0));
1823         if (index < 0)
1824             index = 0;
1825         ast2->seek_pos = st2->index_entries[index].pos;
1826         pos_min = FFMIN(pos_min,ast2->seek_pos);
1827     }
1828     for (i = 0; i < s->nb_streams; i++) {
1829         AVStream *st2 = s->streams[i];
1830         AVIStream *ast2 = st2->priv_data;
1831
1832         if (ast2->sub_ctx || st2->nb_index_entries <= 0)
1833             continue;
1834
1835         index = av_index_search_timestamp(
1836                 st2,
1837                 av_rescale_q(timestamp, st->time_base, st2->time_base) * FFMAX(ast2->sample_size, 1),
1838                 flags | AVSEEK_FLAG_BACKWARD | (st2->codec->codec_type != AVMEDIA_TYPE_VIDEO ? AVSEEK_FLAG_ANY : 0));
1839         if (index < 0)
1840             index = 0;
1841         while (!avi->non_interleaved && index>0 && st2->index_entries[index-1].pos >= pos_min)
1842             index--;
1843         ast2->frame_offset = st2->index_entries[index].timestamp;
1844     }
1845
1846     /* do the seek */
1847     if (avio_seek(s->pb, pos_min, SEEK_SET) < 0) {
1848         av_log(s, AV_LOG_ERROR, "Seek failed\n");
1849         return -1;
1850     }
1851     avi->stream_index = -1;
1852     avi->dts_max      = INT_MIN;
1853     return 0;
1854 }
1855
1856 static int avi_read_close(AVFormatContext *s)
1857 {
1858     int i;
1859     AVIContext *avi = s->priv_data;
1860
1861     for (i = 0; i < s->nb_streams; i++) {
1862         AVStream *st   = s->streams[i];
1863         AVIStream *ast = st->priv_data;
1864         if (ast) {
1865             if (ast->sub_ctx) {
1866                 av_freep(&ast->sub_ctx->pb);
1867                 avformat_close_input(&ast->sub_ctx);
1868             }
1869             av_freep(&ast->sub_buffer);
1870             av_free_packet(&ast->sub_pkt);
1871         }
1872     }
1873
1874     av_freep(&avi->dv_demux);
1875
1876     return 0;
1877 }
1878
1879 static int avi_probe(AVProbeData *p)
1880 {
1881     int i;
1882
1883     /* check file header */
1884     for (i = 0; avi_headers[i][0]; i++)
1885         if (AV_RL32(p->buf    ) == AV_RL32(avi_headers[i]    ) &&
1886             AV_RL32(p->buf + 8) == AV_RL32(avi_headers[i] + 4))
1887             return AVPROBE_SCORE_MAX;
1888
1889     return 0;
1890 }
1891
1892 AVInputFormat ff_avi_demuxer = {
1893     .name           = "avi",
1894     .long_name      = NULL_IF_CONFIG_SMALL("AVI (Audio Video Interleaved)"),
1895     .priv_data_size = sizeof(AVIContext),
1896     .extensions     = "avi",
1897     .read_probe     = avi_probe,
1898     .read_header    = avi_read_header,
1899     .read_packet    = avi_read_packet,
1900     .read_close     = avi_read_close,
1901     .read_seek      = avi_read_seek,
1902     .priv_class = &demuxer_class,
1903 };