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