]> git.sesse.net Git - ffmpeg/blob - libavformat/avidec.c
lavf: Reset the entry count and allocation size variables on av_reallocp failures
[ffmpeg] / libavformat / avidec.c
1 /*
2  * AVI demuxer
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/avstring.h"
23 #include "libavutil/bswap.h"
24 #include "libavutil/dict.h"
25 #include "libavutil/internal.h"
26 #include "libavutil/intreadwrite.h"
27 #include "libavutil/mathematics.h"
28 #include "avformat.h"
29 #include "avi.h"
30 #include "dv.h"
31 #include "internal.h"
32 #include "riff.h"
33
34 #undef NDEBUG
35 #include <assert.h>
36
37 typedef struct AVIStream {
38     int64_t frame_offset;   /* current frame (video) or byte (audio) counter
39                              * (used to compute the pts) */
40     int remaining;
41     int packet_size;
42
43     uint32_t scale;
44     uint32_t rate;
45     int sample_size;        /* size of one sample (or packet)
46                              * (in the rate/scale sense) in bytes */
47
48     int64_t cum_len;        /* temporary storage (used during seek) */
49     int prefix;             /* normally 'd'<<8 + 'c' or 'w'<<8 + 'b' */
50     int prefix_count;
51     uint32_t pal[256];
52     int has_pal;
53     int dshow_block_align;  /* block align variable used to emulate bugs in
54                              * the MS dshow demuxer */
55
56     AVFormatContext *sub_ctx;
57     AVPacket sub_pkt;
58     uint8_t *sub_buffer;
59 } AVIStream;
60
61 typedef struct {
62     int64_t riff_end;
63     int64_t movi_end;
64     int64_t fsize;
65     int64_t movi_list;
66     int64_t last_pkt_pos;
67     int index_loaded;
68     int is_odml;
69     int non_interleaved;
70     int stream_index;
71     DVDemuxContext *dv_demux;
72     int odml_depth;
73 #define MAX_ODML_DEPTH 1000
74 } AVIContext;
75
76 static const char avi_headers[][8] = {
77     { 'R', 'I', 'F', 'F', 'A', 'V', 'I', ' '  },
78     { 'R', 'I', 'F', 'F', 'A', 'V', 'I', 'X'  },
79     { 'R', 'I', 'F', 'F', 'A', 'V', 'I', 0x19 },
80     { 'O', 'N', '2', ' ', 'O', 'N', '2', 'f'  },
81     { 'R', 'I', 'F', 'F', 'A', 'M', 'V', ' '  },
82     { 0 }
83 };
84
85 static const AVMetadataConv avi_metadata_conv[] = {
86     { "strn", "title" },
87     { 0 },
88 };
89
90 static int avi_load_index(AVFormatContext *s);
91 static int guess_ni_flag(AVFormatContext *s);
92
93 #define print_tag(str, tag, size)                        \
94     av_dlog(NULL, "%s: tag=%c%c%c%c size=0x%x\n",        \
95             str, tag & 0xff,                             \
96             (tag >> 8) & 0xff,                           \
97             (tag >> 16) & 0xff,                          \
98             (tag >> 24) & 0xff,                          \
99             size)
100
101 static inline int get_duration(AVIStream *ast, int len)
102 {
103     if (ast->sample_size)
104         return len;
105     else if (ast->dshow_block_align)
106         return (len + ast->dshow_block_align - 1) / ast->dshow_block_align;
107     else
108         return 1;
109 }
110
111 static int get_riff(AVFormatContext *s, AVIOContext *pb)
112 {
113     AVIContext *avi = s->priv_data;
114     char header[8];
115     int i;
116
117     /* check RIFF header */
118     avio_read(pb, header, 4);
119     avi->riff_end  = avio_rl32(pb); /* RIFF chunk size */
120     avi->riff_end += avio_tell(pb); /* RIFF chunk end */
121     avio_read(pb, header + 4, 4);
122
123     for (i = 0; avi_headers[i][0]; i++)
124         if (!memcmp(header, avi_headers[i], 8))
125             break;
126     if (!avi_headers[i][0])
127         return AVERROR_INVALIDDATA;
128
129     if (header[7] == 0x19)
130         av_log(s, AV_LOG_INFO,
131                "This file has been generated by a totally broken muxer.\n");
132
133     return 0;
134 }
135
136 static int read_braindead_odml_indx(AVFormatContext *s, int frame_num)
137 {
138     AVIContext *avi     = s->priv_data;
139     AVIOContext *pb     = s->pb;
140     int longs_pre_entry = avio_rl16(pb);
141     int index_sub_type  = avio_r8(pb);
142     int index_type      = avio_r8(pb);
143     int entries_in_use  = avio_rl32(pb);
144     int chunk_id        = avio_rl32(pb);
145     int64_t base        = avio_rl64(pb);
146     int stream_id       = ((chunk_id      & 0xFF) - '0') * 10 +
147                           ((chunk_id >> 8 & 0xFF) - '0');
148     AVStream *st;
149     AVIStream *ast;
150     int i;
151     int64_t last_pos = -1;
152     int64_t filesize = avio_size(s->pb);
153
154     av_dlog(s,
155             "longs_pre_entry:%d index_type:%d entries_in_use:%d "
156             "chunk_id:%X base:%16"PRIX64"\n",
157             longs_pre_entry,
158             index_type,
159             entries_in_use,
160             chunk_id,
161             base);
162
163     if (stream_id >= s->nb_streams || stream_id < 0)
164         return AVERROR_INVALIDDATA;
165     st  = s->streams[stream_id];
166     ast = st->priv_data;
167
168     if (index_sub_type)
169         return AVERROR_INVALIDDATA;
170
171     avio_rl32(pb);
172
173     if (index_type && longs_pre_entry != 2)
174         return AVERROR_INVALIDDATA;
175     if (index_type > 1)
176         return AVERROR_INVALIDDATA;
177
178     if (filesize > 0 && base >= filesize) {
179         av_log(s, AV_LOG_ERROR, "ODML index invalid\n");
180         if (base >> 32 == (base & 0xFFFFFFFF) &&
181             (base & 0xFFFFFFFF) < filesize    &&
182             filesize <= 0xFFFFFFFF)
183             base &= 0xFFFFFFFF;
184         else
185             return AVERROR_INVALIDDATA;
186     }
187
188     for (i = 0; i < entries_in_use; i++) {
189         if (index_type) {
190             int64_t pos = avio_rl32(pb) + base - 8;
191             int len     = avio_rl32(pb);
192             int key     = len >= 0;
193             len &= 0x7FFFFFFF;
194
195             av_dlog(s, "pos:%"PRId64", len:%X\n", pos, len);
196
197             if (pb->eof_reached)
198                 return AVERROR_INVALIDDATA;
199
200             if (last_pos == pos || pos == base - 8)
201                 avi->non_interleaved = 1;
202             if (last_pos != pos && (len || !ast->sample_size))
203                 av_add_index_entry(st, pos, ast->cum_len, len, 0,
204                                    key ? AVINDEX_KEYFRAME : 0);
205
206             ast->cum_len += get_duration(ast, len);
207             last_pos      = pos;
208         } else {
209             int64_t offset, pos;
210             int duration;
211             offset = avio_rl64(pb);
212             avio_rl32(pb);       /* size */
213             duration = avio_rl32(pb);
214
215             if (pb->eof_reached)
216                 return AVERROR_INVALIDDATA;
217
218             pos = avio_tell(pb);
219
220             if (avi->odml_depth > MAX_ODML_DEPTH) {
221                 av_log(s, AV_LOG_ERROR, "Too deeply nested ODML indexes\n");
222                 return AVERROR_INVALIDDATA;
223             }
224
225             avio_seek(pb, offset + 8, SEEK_SET);
226             avi->odml_depth++;
227             read_braindead_odml_indx(s, frame_num);
228             avi->odml_depth--;
229             frame_num += duration;
230
231             avio_seek(pb, pos, SEEK_SET);
232         }
233     }
234     avi->index_loaded = 1;
235     return 0;
236 }
237
238 static void clean_index(AVFormatContext *s)
239 {
240     int i;
241     int64_t j;
242
243     for (i = 0; i < s->nb_streams; i++) {
244         AVStream *st   = s->streams[i];
245         AVIStream *ast = st->priv_data;
246         int n          = st->nb_index_entries;
247         int max        = ast->sample_size;
248         int64_t pos, size, ts;
249
250         if (n != 1 || ast->sample_size == 0)
251             continue;
252
253         while (max < 1024)
254             max += max;
255
256         pos  = st->index_entries[0].pos;
257         size = st->index_entries[0].size;
258         ts   = st->index_entries[0].timestamp;
259
260         for (j = 0; j < size; j += max)
261             av_add_index_entry(st, pos + j, ts + j, FFMIN(max, size - j), 0,
262                                AVINDEX_KEYFRAME);
263     }
264 }
265
266 static int avi_read_tag(AVFormatContext *s, AVStream *st, uint32_t tag,
267                         uint32_t size)
268 {
269     AVIOContext *pb = s->pb;
270     char key[5]     = { 0 };
271     char *value;
272
273     size += (size & 1);
274
275     if (size == UINT_MAX)
276         return AVERROR(EINVAL);
277     value = av_malloc(size + 1);
278     if (!value)
279         return AVERROR(ENOMEM);
280     avio_read(pb, value, size);
281     value[size] = 0;
282
283     AV_WL32(key, tag);
284
285     return av_dict_set(st ? &st->metadata : &s->metadata, key, value,
286                        AV_DICT_DONT_STRDUP_VAL);
287 }
288
289 static const char months[12][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
290                                     "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
291
292 static void avi_metadata_creation_time(AVDictionary **metadata, char *date)
293 {
294     char month[4], time[9], buffer[64];
295     int i, day, year;
296     /* parse standard AVI date format (ie. "Mon Mar 10 15:04:43 2003") */
297     if (sscanf(date, "%*3s%*[ ]%3s%*[ ]%2d%*[ ]%8s%*[ ]%4d",
298                month, &day, time, &year) == 4) {
299         for (i = 0; i < 12; i++)
300             if (!av_strcasecmp(month, months[i])) {
301                 snprintf(buffer, sizeof(buffer), "%.4d-%.2d-%.2d %s",
302                          year, i + 1, day, time);
303                 av_dict_set(metadata, "creation_time", buffer, 0);
304             }
305     } else if (date[4] == '/' && date[7] == '/') {
306         date[4] = date[7] = '-';
307         av_dict_set(metadata, "creation_time", date, 0);
308     }
309 }
310
311 static void avi_read_nikon(AVFormatContext *s, uint64_t end)
312 {
313     while (avio_tell(s->pb) < end) {
314         uint32_t tag  = avio_rl32(s->pb);
315         uint32_t size = avio_rl32(s->pb);
316         switch (tag) {
317         case MKTAG('n', 'c', 't', 'g'):  /* Nikon Tags */
318         {
319             uint64_t tag_end = avio_tell(s->pb) + size;
320             while (avio_tell(s->pb) < tag_end) {
321                 uint16_t tag     = avio_rl16(s->pb);
322                 uint16_t size    = avio_rl16(s->pb);
323                 const char *name = NULL;
324                 char buffer[64]  = { 0 };
325                 size -= avio_read(s->pb, buffer,
326                                   FFMIN(size, sizeof(buffer) - 1));
327                 switch (tag) {
328                 case 0x03:
329                     name = "maker";
330                     break;
331                 case 0x04:
332                     name = "model";
333                     break;
334                 case 0x13:
335                     name = "creation_time";
336                     if (buffer[4] == ':' && buffer[7] == ':')
337                         buffer[4] = buffer[7] = '-';
338                     break;
339                 }
340                 if (name)
341                     av_dict_set(&s->metadata, name, buffer, 0);
342                 avio_skip(s->pb, size);
343             }
344             break;
345         }
346         default:
347             avio_skip(s->pb, size);
348             break;
349         }
350     }
351 }
352
353 static int avi_read_header(AVFormatContext *s)
354 {
355     AVIContext *avi = s->priv_data;
356     AVIOContext *pb = s->pb;
357     unsigned int tag, tag1, handler;
358     int codec_type, stream_index, frame_period;
359     unsigned int size;
360     int i;
361     AVStream *st;
362     AVIStream *ast      = NULL;
363     int avih_width      = 0, avih_height = 0;
364     int amv_file_format = 0;
365     uint64_t list_end   = 0;
366     int ret;
367
368     avi->stream_index = -1;
369
370     ret = get_riff(s, pb);
371     if (ret < 0)
372         return ret;
373
374     avi->fsize = avio_size(pb);
375     if (avi->fsize <= 0)
376         avi->fsize = avi->riff_end == 8 ? INT64_MAX : avi->riff_end;
377
378     /* first list tag */
379     stream_index = -1;
380     codec_type   = -1;
381     frame_period = 0;
382     for (;;) {
383         if (pb->eof_reached)
384             goto fail;
385         tag  = avio_rl32(pb);
386         size = avio_rl32(pb);
387
388         print_tag("tag", tag, size);
389
390         switch (tag) {
391         case MKTAG('L', 'I', 'S', 'T'):
392             list_end = avio_tell(pb) + size;
393             /* Ignored, except at start of video packets. */
394             tag1 = avio_rl32(pb);
395
396             print_tag("list", tag1, 0);
397
398             if (tag1 == MKTAG('m', 'o', 'v', 'i')) {
399                 avi->movi_list = avio_tell(pb) - 4;
400                 if (size)
401                     avi->movi_end = avi->movi_list + size + (size & 1);
402                 else
403                     avi->movi_end = avio_size(pb);
404                 av_dlog(NULL, "movi end=%"PRIx64"\n", avi->movi_end);
405                 goto end_of_header;
406             } else if (tag1 == MKTAG('I', 'N', 'F', 'O'))
407                 ff_read_riff_info(s, size - 4);
408             else if (tag1 == MKTAG('n', 'c', 'd', 't'))
409                 avi_read_nikon(s, list_end);
410
411             break;
412         case MKTAG('I', 'D', 'I', 'T'):
413         {
414             unsigned char date[64] = { 0 };
415             size += (size & 1);
416             size -= avio_read(pb, date, FFMIN(size, sizeof(date) - 1));
417             avio_skip(pb, size);
418             avi_metadata_creation_time(&s->metadata, date);
419             break;
420         }
421         case MKTAG('d', 'm', 'l', 'h'):
422             avi->is_odml = 1;
423             avio_skip(pb, size + (size & 1));
424             break;
425         case MKTAG('a', 'm', 'v', 'h'):
426             amv_file_format = 1;
427         case MKTAG('a', 'v', 'i', 'h'):
428             /* AVI header */
429             /* using frame_period is bad idea */
430             frame_period = avio_rl32(pb);
431             avio_skip(pb, 4);
432             avio_rl32(pb);
433             avi->non_interleaved |= avio_rl32(pb) & AVIF_MUSTUSEINDEX;
434
435             avio_skip(pb, 2 * 4);
436             avio_rl32(pb);
437             avio_rl32(pb);
438             avih_width  = avio_rl32(pb);
439             avih_height = avio_rl32(pb);
440
441             avio_skip(pb, size - 10 * 4);
442             break;
443         case MKTAG('s', 't', 'r', 'h'):
444             /* stream header */
445
446             tag1    = avio_rl32(pb);
447             handler = avio_rl32(pb); /* codec tag */
448
449             if (tag1 == MKTAG('p', 'a', 'd', 's')) {
450                 avio_skip(pb, size - 8);
451                 break;
452             } else {
453                 stream_index++;
454                 st = avformat_new_stream(s, NULL);
455                 if (!st)
456                     goto fail;
457
458                 st->id = stream_index;
459                 ast    = av_mallocz(sizeof(AVIStream));
460                 if (!ast)
461                     goto fail;
462                 st->priv_data = ast;
463             }
464             if (amv_file_format)
465                 tag1 = stream_index ? MKTAG('a', 'u', 'd', 's')
466                                     : MKTAG('v', 'i', 'd', 's');
467
468             print_tag("strh", tag1, -1);
469
470             if (tag1 == MKTAG('i', 'a', 'v', 's') ||
471                 tag1 == MKTAG('i', 'v', 'a', 's')) {
472                 int64_t dv_dur;
473
474                 /* After some consideration -- I don't think we
475                  * have to support anything but DV in type1 AVIs. */
476                 if (s->nb_streams != 1)
477                     goto fail;
478
479                 if (handler != MKTAG('d', 'v', 's', 'd') &&
480                     handler != MKTAG('d', 'v', 'h', 'd') &&
481                     handler != MKTAG('d', 'v', 's', 'l'))
482                     goto fail;
483
484                 ast = s->streams[0]->priv_data;
485                 av_freep(&s->streams[0]->codec->extradata);
486                 av_freep(&s->streams[0]->codec);
487                 av_freep(&s->streams[0]);
488                 s->nb_streams = 0;
489                 if (CONFIG_DV_DEMUXER) {
490                     avi->dv_demux = avpriv_dv_init_demux(s);
491                     if (!avi->dv_demux)
492                         goto fail;
493                 }
494                 s->streams[0]->priv_data = ast;
495                 avio_skip(pb, 3 * 4);
496                 ast->scale = avio_rl32(pb);
497                 ast->rate  = avio_rl32(pb);
498                 avio_skip(pb, 4);  /* start time */
499
500                 dv_dur = avio_rl32(pb);
501                 if (ast->scale > 0 && ast->rate > 0 && dv_dur > 0) {
502                     dv_dur     *= AV_TIME_BASE;
503                     s->duration = av_rescale(dv_dur, ast->scale, ast->rate);
504                 }
505                 /* else, leave duration alone; timing estimation in utils.c
506                  * will make a guess based on bitrate. */
507
508                 stream_index = s->nb_streams - 1;
509                 avio_skip(pb, size - 9 * 4);
510                 break;
511             }
512
513             assert(stream_index < s->nb_streams);
514             st->codec->stream_codec_tag = handler;
515
516             avio_rl32(pb); /* flags */
517             avio_rl16(pb); /* priority */
518             avio_rl16(pb); /* language */
519             avio_rl32(pb); /* initial frame */
520             ast->scale = avio_rl32(pb);
521             ast->rate  = avio_rl32(pb);
522             if (!(ast->scale && ast->rate)) {
523                 av_log(s, AV_LOG_WARNING,
524                        "scale/rate is %u/%u which is invalid. "
525                        "(This file has been generated by broken software.)\n",
526                        ast->scale,
527                        ast->rate);
528                 if (frame_period) {
529                     ast->rate  = 1000000;
530                     ast->scale = frame_period;
531                 } else {
532                     ast->rate  = 25;
533                     ast->scale = 1;
534                 }
535             }
536             avpriv_set_pts_info(st, 64, ast->scale, ast->rate);
537
538             ast->cum_len  = avio_rl32(pb); /* start */
539             st->nb_frames = avio_rl32(pb);
540
541             st->start_time = 0;
542             avio_rl32(pb); /* buffer size */
543             avio_rl32(pb); /* quality */
544             ast->sample_size = avio_rl32(pb); /* sample ssize */
545             ast->cum_len    *= FFMAX(1, ast->sample_size);
546             av_dlog(s, "%"PRIu32" %"PRIu32" %d\n",
547                     ast->rate, ast->scale, ast->sample_size);
548
549             switch (tag1) {
550             case MKTAG('v', 'i', 'd', 's'):
551                 codec_type = AVMEDIA_TYPE_VIDEO;
552
553                 ast->sample_size = 0;
554                 break;
555             case MKTAG('a', 'u', 'd', 's'):
556                 codec_type = AVMEDIA_TYPE_AUDIO;
557                 break;
558             case MKTAG('t', 'x', 't', 's'):
559                 codec_type = AVMEDIA_TYPE_SUBTITLE;
560                 break;
561             case MKTAG('d', 'a', 't', 's'):
562                 codec_type = AVMEDIA_TYPE_DATA;
563                 break;
564             default:
565                 av_log(s, AV_LOG_ERROR, "unknown stream type %X\n", tag1);
566                 goto fail;
567             }
568             if (ast->sample_size == 0)
569                 st->duration = st->nb_frames;
570             ast->frame_offset = ast->cum_len;
571             avio_skip(pb, size - 12 * 4);
572             break;
573         case MKTAG('s', 't', 'r', 'f'):
574             /* stream header */
575             if (stream_index >= (unsigned)s->nb_streams || avi->dv_demux) {
576                 avio_skip(pb, size);
577             } else {
578                 uint64_t cur_pos = avio_tell(pb);
579                 if (cur_pos < list_end)
580                     size = FFMIN(size, list_end - cur_pos);
581                 st = s->streams[stream_index];
582                 switch (codec_type) {
583                 case AVMEDIA_TYPE_VIDEO:
584                     if (amv_file_format) {
585                         st->codec->width      = avih_width;
586                         st->codec->height     = avih_height;
587                         st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
588                         st->codec->codec_id   = AV_CODEC_ID_AMV;
589                         avio_skip(pb, size);
590                         break;
591                     }
592                     tag1 = ff_get_bmp_header(pb, st);
593
594                     if (tag1 == MKTAG('D', 'X', 'S', 'B') ||
595                         tag1 == MKTAG('D', 'X', 'S', 'A')) {
596                         st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
597                         st->codec->codec_tag  = tag1;
598                         st->codec->codec_id   = AV_CODEC_ID_XSUB;
599                         break;
600                     }
601
602                     if (size > 10 * 4 && size < (1 << 30)) {
603                         st->codec->extradata_size = size - 10 * 4;
604                         st->codec->extradata      = av_malloc(st->codec->extradata_size +
605                                                               FF_INPUT_BUFFER_PADDING_SIZE);
606                         if (!st->codec->extradata) {
607                             st->codec->extradata_size = 0;
608                             return AVERROR(ENOMEM);
609                         }
610                         avio_read(pb,
611                                   st->codec->extradata,
612                                   st->codec->extradata_size);
613                     }
614
615                     // FIXME: check if the encoder really did this correctly
616                     if (st->codec->extradata_size & 1)
617                         avio_r8(pb);
618
619                     /* Extract palette from extradata if bpp <= 8.
620                      * This code assumes that extradata contains only palette.
621                      * This is true for all paletted codecs implemented in
622                      * Libav. */
623                     if (st->codec->extradata_size &&
624                         (st->codec->bits_per_coded_sample <= 8)) {
625                         int pal_size = (1 << st->codec->bits_per_coded_sample) << 2;
626                         const uint8_t *pal_src;
627
628                         pal_size = FFMIN(pal_size, st->codec->extradata_size);
629                         pal_src  = st->codec->extradata +
630                                    st->codec->extradata_size - pal_size;
631 #if HAVE_BIGENDIAN
632                         for (i = 0; i < pal_size / 4; i++)
633                             ast->pal[i] = av_bswap32(((uint32_t *)pal_src)[i]);
634 #else
635                         memcpy(ast->pal, pal_src, pal_size);
636 #endif
637                         ast->has_pal = 1;
638                     }
639
640                     print_tag("video", tag1, 0);
641
642                     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
643                     st->codec->codec_tag  = tag1;
644                     st->codec->codec_id   = ff_codec_get_id(ff_codec_bmp_tags,
645                                                             tag1);
646                     /* This is needed to get the pict type which is necessary
647                      * for generating correct pts. */
648                     st->need_parsing = AVSTREAM_PARSE_HEADERS;
649                     // Support "Resolution 1:1" for Avid AVI Codec
650                     if (tag1 == MKTAG('A', 'V', 'R', 'n') &&
651                         st->codec->extradata_size >= 31   &&
652                         !memcmp(&st->codec->extradata[28], "1:1", 3))
653                         st->codec->codec_id = AV_CODEC_ID_RAWVIDEO;
654
655                     if (st->codec->codec_tag == 0 && st->codec->height > 0 &&
656                         st->codec->extradata_size < 1U << 30) {
657                         st->codec->extradata_size += 9;
658                         if ((ret = av_reallocp(&st->codec->extradata,
659                                                st->codec->extradata_size +
660                                                FF_INPUT_BUFFER_PADDING_SIZE)) < 0) {
661                             st->codec->extradata_size = 0;
662                             return ret;
663                         } else
664                             memcpy(st->codec->extradata + st->codec->extradata_size - 9,
665                                    "BottomUp", 9);
666                     }
667                     st->codec->height = FFABS(st->codec->height);
668
669 //                    avio_skip(pb, size - 5 * 4);
670                     break;
671                 case AVMEDIA_TYPE_AUDIO:
672                     ret = ff_get_wav_header(pb, st->codec, size);
673                     if (ret < 0)
674                         return ret;
675                     ast->dshow_block_align = st->codec->block_align;
676                     if (ast->sample_size && st->codec->block_align &&
677                         ast->sample_size != st->codec->block_align) {
678                         av_log(s,
679                                AV_LOG_WARNING,
680                                "sample size (%d) != block align (%d)\n",
681                                ast->sample_size,
682                                st->codec->block_align);
683                         ast->sample_size = st->codec->block_align;
684                     }
685                     /* 2-aligned
686                      * (fix for Stargate SG-1 - 3x18 - Shades of Grey.avi) */
687                     if (size & 1)
688                         avio_skip(pb, 1);
689                     /* Force parsing as several audio frames can be in
690                      * one packet and timestamps refer to packet start. */
691                     st->need_parsing = AVSTREAM_PARSE_TIMESTAMPS;
692                     /* ADTS header is in extradata, AAC without header must be
693                      * stored as exact frames. Parser not needed and it will
694                      * fail. */
695                     if (st->codec->codec_id == AV_CODEC_ID_AAC &&
696                         st->codec->extradata_size)
697                         st->need_parsing = AVSTREAM_PARSE_NONE;
698                     /* AVI files with Xan DPCM audio (wrongly) declare PCM
699                      * audio in the header but have Axan as stream_code_tag. */
700                     if (st->codec->stream_codec_tag == AV_RL32("Axan")) {
701                         st->codec->codec_id  = AV_CODEC_ID_XAN_DPCM;
702                         st->codec->codec_tag = 0;
703                     }
704                     if (amv_file_format) {
705                         st->codec->codec_id    = AV_CODEC_ID_ADPCM_IMA_AMV;
706                         ast->dshow_block_align = 0;
707                     }
708                     break;
709                 case AVMEDIA_TYPE_SUBTITLE:
710                     st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
711                     st->codec->codec_id   = AV_CODEC_ID_PROBE;
712                     break;
713                 default:
714                     st->codec->codec_type = AVMEDIA_TYPE_DATA;
715                     st->codec->codec_id   = AV_CODEC_ID_NONE;
716                     st->codec->codec_tag  = 0;
717                     avio_skip(pb, size);
718                     break;
719                 }
720             }
721             break;
722         case MKTAG('i', 'n', 'd', 'x'):
723             i = avio_tell(pb);
724             if (pb->seekable && !(s->flags & AVFMT_FLAG_IGNIDX) &&
725                 read_braindead_odml_indx(s, 0) < 0 &&
726                 (s->error_recognition & AV_EF_EXPLODE))
727                 goto fail;
728             avio_seek(pb, i + size, SEEK_SET);
729             break;
730         case MKTAG('v', 'p', 'r', 'p'):
731             if (stream_index < (unsigned)s->nb_streams && size > 9 * 4) {
732                 AVRational active, active_aspect;
733
734                 st = s->streams[stream_index];
735                 avio_rl32(pb);
736                 avio_rl32(pb);
737                 avio_rl32(pb);
738                 avio_rl32(pb);
739                 avio_rl32(pb);
740
741                 active_aspect.den = avio_rl16(pb);
742                 active_aspect.num = avio_rl16(pb);
743                 active.num        = avio_rl32(pb);
744                 active.den        = avio_rl32(pb);
745                 avio_rl32(pb); // nbFieldsPerFrame
746
747                 if (active_aspect.num && active_aspect.den &&
748                     active.num && active.den) {
749                     st->sample_aspect_ratio = av_div_q(active_aspect, active);
750                     av_dlog(s, "vprp %d/%d %d/%d\n",
751                             active_aspect.num, active_aspect.den,
752                             active.num, active.den);
753                 }
754                 size -= 9 * 4;
755             }
756             avio_skip(pb, size);
757             break;
758         case MKTAG('s', 't', 'r', 'n'):
759             if (s->nb_streams) {
760                 ret = avi_read_tag(s, s->streams[s->nb_streams - 1], tag, size);
761                 if (ret < 0)
762                     return ret;
763                 break;
764             }
765         default:
766             if (size > 1000000) {
767                 av_log(s, AV_LOG_ERROR,
768                        "Something went wrong during header parsing, "
769                        "I will ignore it and try to continue anyway.\n");
770                 if (s->error_recognition & AV_EF_EXPLODE)
771                     goto fail;
772                 avi->movi_list = avio_tell(pb) - 4;
773                 avi->movi_end  = avio_size(pb);
774                 goto end_of_header;
775             }
776             /* skip tag */
777             size += (size & 1);
778             avio_skip(pb, size);
779             break;
780         }
781     }
782
783 end_of_header:
784     /* check stream number */
785     if (stream_index != s->nb_streams - 1) {
786
787 fail:
788         return AVERROR_INVALIDDATA;
789     }
790
791     if (!avi->index_loaded && pb->seekable)
792         avi_load_index(s);
793     avi->index_loaded     = 1;
794     avi->non_interleaved |= guess_ni_flag(s);
795     for (i = 0; i < s->nb_streams; i++) {
796         AVStream *st = s->streams[i];
797         if (st->nb_index_entries)
798             break;
799     }
800     if (i == s->nb_streams && avi->non_interleaved) {
801         av_log(s, AV_LOG_WARNING,
802                "Non-interleaved AVI without index, switching to interleaved\n");
803         avi->non_interleaved = 0;
804     }
805
806     if (avi->non_interleaved) {
807         av_log(s, AV_LOG_INFO, "non-interleaved AVI\n");
808         clean_index(s);
809     }
810
811     ff_metadata_conv_ctx(s, NULL, avi_metadata_conv);
812     ff_metadata_conv_ctx(s, NULL, ff_riff_info_conv);
813
814     return 0;
815 }
816
817 static int read_gab2_sub(AVStream *st, AVPacket *pkt)
818 {
819     if (!strcmp(pkt->data, "GAB2") && AV_RL16(pkt->data + 5) == 2) {
820         uint8_t desc[256];
821         int score      = AVPROBE_SCORE_EXTENSION, ret;
822         AVIStream *ast = st->priv_data;
823         AVInputFormat *sub_demuxer;
824         AVRational time_base;
825         AVIOContext *pb = avio_alloc_context(pkt->data + 7,
826                                              pkt->size - 7,
827                                              0, NULL, NULL, NULL, NULL);
828         AVProbeData pd;
829         unsigned int desc_len = avio_rl32(pb);
830
831         if (desc_len > pb->buf_end - pb->buf_ptr)
832             goto error;
833
834         ret = avio_get_str16le(pb, desc_len, desc, sizeof(desc));
835         avio_skip(pb, desc_len - ret);
836         if (*desc)
837             av_dict_set(&st->metadata, "title", desc, 0);
838
839         avio_rl16(pb);   /* flags? */
840         avio_rl32(pb);   /* data size */
841
842         pd = (AVProbeData) { .buf      = pb->buf_ptr,
843                              .buf_size = pb->buf_end - pb->buf_ptr };
844         if (!(sub_demuxer = av_probe_input_format2(&pd, 1, &score)))
845             goto error;
846
847         if (!(ast->sub_ctx = avformat_alloc_context()))
848             goto error;
849
850         ast->sub_ctx->pb = pb;
851         if (!avformat_open_input(&ast->sub_ctx, "", sub_demuxer, NULL)) {
852             ff_read_packet(ast->sub_ctx, &ast->sub_pkt);
853             *st->codec = *ast->sub_ctx->streams[0]->codec;
854             ast->sub_ctx->streams[0]->codec->extradata = NULL;
855             time_base = ast->sub_ctx->streams[0]->time_base;
856             avpriv_set_pts_info(st, 64, time_base.num, time_base.den);
857         }
858         ast->sub_buffer = pkt->data;
859         memset(pkt, 0, sizeof(*pkt));
860         return 1;
861
862 error:
863         av_freep(&pb);
864     }
865     return 0;
866 }
867
868 static AVStream *get_subtitle_pkt(AVFormatContext *s, AVStream *next_st,
869                                   AVPacket *pkt)
870 {
871     AVIStream *ast, *next_ast = next_st->priv_data;
872     int64_t ts, next_ts, ts_min = INT64_MAX;
873     AVStream *st, *sub_st = NULL;
874     int i;
875
876     next_ts = av_rescale_q(next_ast->frame_offset, next_st->time_base,
877                            AV_TIME_BASE_Q);
878
879     for (i = 0; i < s->nb_streams; i++) {
880         st  = s->streams[i];
881         ast = st->priv_data;
882         if (st->discard < AVDISCARD_ALL && ast && ast->sub_pkt.data) {
883             ts = av_rescale_q(ast->sub_pkt.dts, st->time_base, AV_TIME_BASE_Q);
884             if (ts <= next_ts && ts < ts_min) {
885                 ts_min = ts;
886                 sub_st = st;
887             }
888         }
889     }
890
891     if (sub_st) {
892         ast               = sub_st->priv_data;
893         *pkt              = ast->sub_pkt;
894         pkt->stream_index = sub_st->index;
895
896         if (ff_read_packet(ast->sub_ctx, &ast->sub_pkt) < 0)
897             ast->sub_pkt.data = NULL;
898     }
899     return sub_st;
900 }
901
902 static int get_stream_idx(int *d)
903 {
904     if (d[0] >= '0' && d[0] <= '9' &&
905         d[1] >= '0' && d[1] <= '9') {
906         return (d[0] - '0') * 10 + (d[1] - '0');
907     } else {
908         return 100; // invalid stream ID
909     }
910 }
911
912 static int avi_sync(AVFormatContext *s, int exit_early)
913 {
914     AVIContext *avi = s->priv_data;
915     AVIOContext *pb = s->pb;
916     int n;
917     unsigned int d[8];
918     unsigned int size;
919     int64_t i, sync;
920
921 start_sync:
922     memset(d, -1, sizeof(d));
923     for (i = sync = avio_tell(pb); !pb->eof_reached; i++) {
924         int j;
925
926         for (j = 0; j < 7; j++)
927             d[j] = d[j + 1];
928         d[7] = avio_r8(pb);
929
930         size = d[4] + (d[5] << 8) + (d[6] << 16) + (d[7] << 24);
931
932         n = get_stream_idx(d + 2);
933         av_dlog(s, "%X %X %X %X %X %X %X %X %"PRId64" %u %d\n",
934                 d[0], d[1], d[2], d[3], d[4], d[5], d[6], d[7], i, size, n);
935         if (i + (uint64_t)size > avi->fsize || d[0] > 127)
936             continue;
937
938         // parse ix##
939         if ((d[0] == 'i' && d[1] == 'x' && n < s->nb_streams) ||
940             // parse JUNK
941             (d[0] == 'J' && d[1] == 'U' && d[2] == 'N' && d[3] == 'K') ||
942             (d[0] == 'i' && d[1] == 'd' && d[2] == 'x' && d[3] == '1')) {
943             avio_skip(pb, size);
944             goto start_sync;
945         }
946
947         // parse stray LIST
948         if (d[0] == 'L' && d[1] == 'I' && d[2] == 'S' && d[3] == 'T') {
949             avio_skip(pb, 4);
950             goto start_sync;
951         }
952
953         n = get_stream_idx(d);
954
955         if (!((i - avi->last_pkt_pos) & 1) &&
956             get_stream_idx(d + 1) < s->nb_streams)
957             continue;
958
959         // detect ##ix chunk and skip
960         if (d[2] == 'i' && d[3] == 'x' && n < s->nb_streams) {
961             avio_skip(pb, size);
962             goto start_sync;
963         }
964
965         // parse ##dc/##wb
966         if (n < s->nb_streams) {
967             AVStream *st;
968             AVIStream *ast;
969             st  = s->streams[n];
970             ast = st->priv_data;
971
972             if (s->nb_streams >= 2) {
973                 AVStream *st1   = s->streams[1];
974                 AVIStream *ast1 = st1->priv_data;
975                 // workaround for broken small-file-bug402.avi
976                 if (d[2] == 'w' && d[3] == 'b' && n == 0 &&
977                     st->codec->codec_type  == AVMEDIA_TYPE_VIDEO &&
978                     st1->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
979                     ast->prefix == 'd' * 256 + 'c' &&
980                     (d[2] * 256 + d[3] == ast1->prefix ||
981                      !ast1->prefix_count)) {
982                     n   = 1;
983                     st  = st1;
984                     ast = ast1;
985                     av_log(s, AV_LOG_WARNING,
986                            "Invalid stream + prefix combination, assuming audio.\n");
987                 }
988             }
989
990             if (!avi->dv_demux &&
991                 ((st->discard >= AVDISCARD_DEFAULT && size == 0) /* ||
992                  // FIXME: needs a little reordering
993                  (st->discard >= AVDISCARD_NONKEY &&
994                  !(pkt->flags & AV_PKT_FLAG_KEY)) */
995                 || st->discard >= AVDISCARD_ALL)) {
996                 if (!exit_early) {
997                     ast->frame_offset += get_duration(ast, size);
998                 }
999                 avio_skip(pb, size);
1000                 goto start_sync;
1001             }
1002
1003             if (d[2] == 'p' && d[3] == 'c' && size <= 4 * 256 + 4) {
1004                 int k    = avio_r8(pb);
1005                 int last = (k + avio_r8(pb) - 1) & 0xFF;
1006
1007                 avio_rl16(pb); // flags
1008
1009                 // b + (g << 8) + (r << 16);
1010                 for (; k <= last; k++)
1011                     ast->pal[k] = avio_rb32(pb) >> 8;
1012
1013                 ast->has_pal = 1;
1014                 goto start_sync;
1015             } else if (((ast->prefix_count < 5 || sync + 9 > i) &&
1016                         d[2] < 128 && d[3] < 128) ||
1017                        d[2] * 256 + d[3] == ast->prefix /* ||
1018                        (d[2] == 'd' && d[3] == 'c') ||
1019                        (d[2] == 'w' && d[3] == 'b') */) {
1020                 if (exit_early)
1021                     return 0;
1022                 if (d[2] * 256 + d[3] == ast->prefix)
1023                     ast->prefix_count++;
1024                 else {
1025                     ast->prefix       = d[2] * 256 + d[3];
1026                     ast->prefix_count = 0;
1027                 }
1028
1029                 avi->stream_index = n;
1030                 ast->packet_size  = size + 8;
1031                 ast->remaining    = size;
1032
1033                 if (size || !ast->sample_size) {
1034                     uint64_t pos = avio_tell(pb) - 8;
1035                     if (!st->index_entries || !st->nb_index_entries ||
1036                         st->index_entries[st->nb_index_entries - 1].pos < pos) {
1037                         av_add_index_entry(st, pos, ast->frame_offset, size,
1038                                            0, AVINDEX_KEYFRAME);
1039                     }
1040                 }
1041                 return 0;
1042             }
1043         }
1044     }
1045
1046     return AVERROR_EOF;
1047 }
1048
1049 static int avi_read_packet(AVFormatContext *s, AVPacket *pkt)
1050 {
1051     AVIContext *avi = s->priv_data;
1052     AVIOContext *pb = s->pb;
1053     int err;
1054 #if FF_API_DESTRUCT_PACKET
1055     void *dstr;
1056 #endif
1057
1058     if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1059         int size = avpriv_dv_get_packet(avi->dv_demux, pkt);
1060         if (size >= 0)
1061             return size;
1062     }
1063
1064     if (avi->non_interleaved) {
1065         int best_stream_index = 0;
1066         AVStream *best_st     = NULL;
1067         AVIStream *best_ast;
1068         int64_t best_ts = INT64_MAX;
1069         int i;
1070
1071         for (i = 0; i < s->nb_streams; i++) {
1072             AVStream *st   = s->streams[i];
1073             AVIStream *ast = st->priv_data;
1074             int64_t ts     = ast->frame_offset;
1075             int64_t last_ts;
1076
1077             if (!st->nb_index_entries)
1078                 continue;
1079
1080             last_ts = st->index_entries[st->nb_index_entries - 1].timestamp;
1081             if (!ast->remaining && ts > last_ts)
1082                 continue;
1083
1084             ts = av_rescale_q(ts, st->time_base,
1085                               (AVRational) { FFMAX(1, ast->sample_size),
1086                                              AV_TIME_BASE });
1087
1088             av_dlog(s, "%"PRId64" %d/%d %"PRId64"\n", ts,
1089                     st->time_base.num, st->time_base.den, ast->frame_offset);
1090             if (ts < best_ts) {
1091                 best_ts           = ts;
1092                 best_st           = st;
1093                 best_stream_index = i;
1094             }
1095         }
1096         if (!best_st)
1097             return AVERROR_EOF;
1098
1099         best_ast = best_st->priv_data;
1100         best_ts  = av_rescale_q(best_ts,
1101                                 (AVRational) { FFMAX(1, best_ast->sample_size),
1102                                                AV_TIME_BASE },
1103                                 best_st->time_base);
1104         if (best_ast->remaining) {
1105             i = av_index_search_timestamp(best_st,
1106                                           best_ts,
1107                                           AVSEEK_FLAG_ANY |
1108                                           AVSEEK_FLAG_BACKWARD);
1109         } else {
1110             i = av_index_search_timestamp(best_st, best_ts, AVSEEK_FLAG_ANY);
1111             if (i >= 0)
1112                 best_ast->frame_offset = best_st->index_entries[i].timestamp;
1113         }
1114
1115         if (i >= 0) {
1116             int64_t pos = best_st->index_entries[i].pos;
1117             pos += best_ast->packet_size - best_ast->remaining;
1118             avio_seek(s->pb, pos + 8, SEEK_SET);
1119
1120             assert(best_ast->remaining <= best_ast->packet_size);
1121
1122             avi->stream_index = best_stream_index;
1123             if (!best_ast->remaining)
1124                 best_ast->packet_size =
1125                 best_ast->remaining   = best_st->index_entries[i].size;
1126         }
1127     }
1128
1129 resync:
1130     if (avi->stream_index >= 0) {
1131         AVStream *st   = s->streams[avi->stream_index];
1132         AVIStream *ast = st->priv_data;
1133         int size, err;
1134
1135         if (get_subtitle_pkt(s, st, pkt))
1136             return 0;
1137
1138         // minorityreport.AVI block_align=1024 sample_size=1 IMA-ADPCM
1139         if (ast->sample_size <= 1)
1140             size = INT_MAX;
1141         else if (ast->sample_size < 32)
1142             // arbitrary multiplier to avoid tiny packets for raw PCM data
1143             size = 1024 * ast->sample_size;
1144         else
1145             size = ast->sample_size;
1146
1147         if (size > ast->remaining)
1148             size = ast->remaining;
1149         avi->last_pkt_pos = avio_tell(pb);
1150         err               = av_get_packet(pb, pkt, size);
1151         if (err < 0)
1152             return err;
1153
1154         if (ast->has_pal && pkt->data && pkt->size < (unsigned)INT_MAX / 2) {
1155             uint8_t *pal;
1156             pal = av_packet_new_side_data(pkt,
1157                                           AV_PKT_DATA_PALETTE,
1158                                           AVPALETTE_SIZE);
1159             if (!pal) {
1160                 av_log(s, AV_LOG_ERROR,
1161                        "Failed to allocate data for palette\n");
1162             } else {
1163                 memcpy(pal, ast->pal, AVPALETTE_SIZE);
1164                 ast->has_pal = 0;
1165             }
1166         }
1167
1168         if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1169             AVBufferRef *avbuf = pkt->buf;
1170 #if FF_API_DESTRUCT_PACKET
1171 FF_DISABLE_DEPRECATION_WARNINGS
1172             dstr = pkt->destruct;
1173 FF_ENABLE_DEPRECATION_WARNINGS
1174 #endif
1175             size = avpriv_dv_produce_packet(avi->dv_demux, pkt,
1176                                             pkt->data, pkt->size);
1177 #if FF_API_DESTRUCT_PACKET
1178 FF_DISABLE_DEPRECATION_WARNINGS
1179             pkt->destruct = dstr;
1180 FF_ENABLE_DEPRECATION_WARNINGS
1181 #endif
1182             pkt->buf    = avbuf;
1183             pkt->flags |= AV_PKT_FLAG_KEY;
1184             if (size < 0)
1185                 av_free_packet(pkt);
1186         } else if (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE &&
1187                    !st->codec->codec_tag && read_gab2_sub(st, pkt)) {
1188             ast->frame_offset++;
1189             avi->stream_index = -1;
1190             ast->remaining    = 0;
1191             goto resync;
1192         } else {
1193             /* XXX: How to handle B-frames in AVI? */
1194             pkt->dts = ast->frame_offset;
1195 //                pkt->dts += ast->start;
1196             if (ast->sample_size)
1197                 pkt->dts /= ast->sample_size;
1198             av_dlog(s,
1199                     "dts:%"PRId64" offset:%"PRId64" %d/%d smpl_siz:%d "
1200                     "base:%d st:%d size:%d\n",
1201                     pkt->dts,
1202                     ast->frame_offset,
1203                     ast->scale,
1204                     ast->rate,
1205                     ast->sample_size,
1206                     AV_TIME_BASE,
1207                     avi->stream_index,
1208                     size);
1209             pkt->stream_index = avi->stream_index;
1210
1211             if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
1212                 AVIndexEntry *e;
1213                 int index;
1214                 assert(st->index_entries);
1215
1216                 index = av_index_search_timestamp(st, ast->frame_offset, 0);
1217                 e     = &st->index_entries[index];
1218
1219                 if (index >= 0 && e->timestamp == ast->frame_offset)
1220                     if (e->flags & AVINDEX_KEYFRAME)
1221                         pkt->flags |= AV_PKT_FLAG_KEY;
1222             } else {
1223                 pkt->flags |= AV_PKT_FLAG_KEY;
1224             }
1225             ast->frame_offset += get_duration(ast, pkt->size);
1226         }
1227         ast->remaining -= err;
1228         if (!ast->remaining) {
1229             avi->stream_index = -1;
1230             ast->packet_size  = 0;
1231         }
1232
1233         return 0;
1234     }
1235
1236     if ((err = avi_sync(s, 0)) < 0)
1237         return err;
1238     goto resync;
1239 }
1240
1241 /* XXX: We make the implicit supposition that the positions are sorted
1242  * for each stream. */
1243 static int avi_read_idx1(AVFormatContext *s, int size)
1244 {
1245     AVIContext *avi = s->priv_data;
1246     AVIOContext *pb = s->pb;
1247     int nb_index_entries, i;
1248     AVStream *st;
1249     AVIStream *ast;
1250     unsigned int index, tag, flags, pos, len, first_packet = 1;
1251     unsigned last_pos = -1;
1252     int64_t idx1_pos, first_packet_pos = 0, data_offset = 0;
1253
1254     nb_index_entries = size / 16;
1255     if (nb_index_entries <= 0)
1256         return AVERROR_INVALIDDATA;
1257
1258     idx1_pos = avio_tell(pb);
1259     avio_seek(pb, avi->movi_list + 4, SEEK_SET);
1260     if (avi_sync(s, 1) == 0)
1261         first_packet_pos = avio_tell(pb) - 8;
1262     avi->stream_index = -1;
1263     avio_seek(pb, idx1_pos, SEEK_SET);
1264
1265     /* Read the entries and sort them in each stream component. */
1266     for (i = 0; i < nb_index_entries; i++) {
1267         tag   = avio_rl32(pb);
1268         flags = avio_rl32(pb);
1269         pos   = avio_rl32(pb);
1270         len   = avio_rl32(pb);
1271         av_dlog(s, "%d: tag=0x%x flags=0x%x pos=0x%x len=%d/",
1272                 i, tag, flags, pos, len);
1273
1274         index  = ((tag      & 0xff) - '0') * 10;
1275         index +=  (tag >> 8 & 0xff) - '0';
1276         if (index >= s->nb_streams)
1277             continue;
1278         st  = s->streams[index];
1279         ast = st->priv_data;
1280
1281         if (first_packet && first_packet_pos && len) {
1282             data_offset  = first_packet_pos - pos;
1283             first_packet = 0;
1284         }
1285         pos += data_offset;
1286
1287         av_dlog(s, "%d cum_len=%"PRId64"\n", len, ast->cum_len);
1288
1289         if (pb->eof_reached)
1290             return AVERROR_INVALIDDATA;
1291
1292         if (last_pos == pos)
1293             avi->non_interleaved = 1;
1294         else if (len || !ast->sample_size)
1295             av_add_index_entry(st, pos, ast->cum_len, len, 0,
1296                                (flags & AVIIF_INDEX) ? AVINDEX_KEYFRAME : 0);
1297         ast->cum_len += get_duration(ast, len);
1298         last_pos      = pos;
1299     }
1300     return 0;
1301 }
1302
1303 static int guess_ni_flag(AVFormatContext *s)
1304 {
1305     int i;
1306     int64_t last_start = 0;
1307     int64_t first_end  = INT64_MAX;
1308     int64_t oldpos     = avio_tell(s->pb);
1309
1310     for (i = 0; i < s->nb_streams; i++) {
1311         AVStream *st = s->streams[i];
1312         int n        = st->nb_index_entries;
1313         unsigned int size;
1314
1315         if (n <= 0)
1316             continue;
1317
1318         if (n >= 2) {
1319             int64_t pos = st->index_entries[0].pos;
1320             avio_seek(s->pb, pos + 4, SEEK_SET);
1321             size = avio_rl32(s->pb);
1322             if (pos + size > st->index_entries[1].pos)
1323                 last_start = INT64_MAX;
1324         }
1325
1326         if (st->index_entries[0].pos > last_start)
1327             last_start = st->index_entries[0].pos;
1328         if (st->index_entries[n - 1].pos < first_end)
1329             first_end = st->index_entries[n - 1].pos;
1330     }
1331     avio_seek(s->pb, oldpos, SEEK_SET);
1332     return last_start > first_end;
1333 }
1334
1335 static int avi_load_index(AVFormatContext *s)
1336 {
1337     AVIContext *avi = s->priv_data;
1338     AVIOContext *pb = s->pb;
1339     uint32_t tag, size;
1340     int64_t pos = avio_tell(pb);
1341     int ret     = -1;
1342
1343     if (avio_seek(pb, avi->movi_end, SEEK_SET) < 0)
1344         goto the_end; // maybe truncated file
1345     av_dlog(s, "movi_end=0x%"PRIx64"\n", avi->movi_end);
1346     for (;;) {
1347         if (pb->eof_reached)
1348             break;
1349         tag  = avio_rl32(pb);
1350         size = avio_rl32(pb);
1351         av_dlog(s, "tag=%c%c%c%c size=0x%x\n",
1352                  tag        & 0xff,
1353                 (tag >>  8) & 0xff,
1354                 (tag >> 16) & 0xff,
1355                 (tag >> 24) & 0xff,
1356                 size);
1357
1358         if (tag == MKTAG('i', 'd', 'x', '1') &&
1359             avi_read_idx1(s, size) >= 0) {
1360             ret = 0;
1361             break;
1362         }
1363
1364         size += (size & 1);
1365         if (avio_skip(pb, size) < 0)
1366             break; // something is wrong here
1367     }
1368
1369 the_end:
1370     avio_seek(pb, pos, SEEK_SET);
1371     return ret;
1372 }
1373
1374 static void seek_subtitle(AVStream *st, AVStream *st2, int64_t timestamp)
1375 {
1376     AVIStream *ast2 = st2->priv_data;
1377     int64_t ts2     = av_rescale_q(timestamp, st->time_base, st2->time_base);
1378     av_free_packet(&ast2->sub_pkt);
1379     if (avformat_seek_file(ast2->sub_ctx, 0, INT64_MIN, ts2, ts2, 0) >= 0 ||
1380         avformat_seek_file(ast2->sub_ctx, 0, ts2, ts2, INT64_MAX, 0) >= 0)
1381         ff_read_packet(ast2->sub_ctx, &ast2->sub_pkt);
1382 }
1383
1384 static int avi_read_seek(AVFormatContext *s, int stream_index,
1385                          int64_t timestamp, int flags)
1386 {
1387     AVIContext *avi = s->priv_data;
1388     AVStream *st;
1389     int i, index;
1390     int64_t pos;
1391     AVIStream *ast;
1392
1393     if (!avi->index_loaded) {
1394         /* we only load the index on demand */
1395         avi_load_index(s);
1396         avi->index_loaded = 1;
1397     }
1398     assert(stream_index >= 0);
1399
1400     st    = s->streams[stream_index];
1401     ast   = st->priv_data;
1402     index = av_index_search_timestamp(st,
1403                                       timestamp * FFMAX(ast->sample_size, 1),
1404                                       flags);
1405     if (index < 0)
1406         return AVERROR_INVALIDDATA;
1407
1408     /* find the position */
1409     pos       = st->index_entries[index].pos;
1410     timestamp = st->index_entries[index].timestamp / FFMAX(ast->sample_size, 1);
1411
1412     av_dlog(s, "XX %"PRId64" %d %"PRId64"\n",
1413             timestamp, index, st->index_entries[index].timestamp);
1414
1415     if (CONFIG_DV_DEMUXER && avi->dv_demux) {
1416         /* One and only one real stream for DV in AVI, and it has video  */
1417         /* offsets. Calling with other stream indexes should have failed */
1418         /* the av_index_search_timestamp call above.                     */
1419         assert(stream_index == 0);
1420
1421         /* Feed the DV video stream version of the timestamp to the */
1422         /* DV demux so it can synthesize correct timestamps.        */
1423         ff_dv_offset_reset(avi->dv_demux, timestamp);
1424
1425         avio_seek(s->pb, pos, SEEK_SET);
1426         avi->stream_index = -1;
1427         return 0;
1428     }
1429
1430     for (i = 0; i < s->nb_streams; i++) {
1431         AVStream *st2   = s->streams[i];
1432         AVIStream *ast2 = st2->priv_data;
1433
1434         ast2->packet_size =
1435         ast2->remaining   = 0;
1436
1437         if (ast2->sub_ctx) {
1438             seek_subtitle(st, st2, timestamp);
1439             continue;
1440         }
1441
1442         if (st2->nb_index_entries <= 0)
1443             continue;
1444
1445 //        assert(st2->codec->block_align);
1446         assert((int64_t)st2->time_base.num * ast2->rate ==
1447                (int64_t)st2->time_base.den * ast2->scale);
1448         index = av_index_search_timestamp(st2,
1449                                           av_rescale_q(timestamp,
1450                                                        st->time_base,
1451                                                        st2->time_base) *
1452                                           FFMAX(ast2->sample_size, 1),
1453                                           flags | AVSEEK_FLAG_BACKWARD);
1454         if (index < 0)
1455             index = 0;
1456
1457         if (!avi->non_interleaved) {
1458             while (index > 0 && st2->index_entries[index].pos > pos)
1459                 index--;
1460             while (index + 1 < st2->nb_index_entries &&
1461                    st2->index_entries[index].pos < pos)
1462                 index++;
1463         }
1464
1465         av_dlog(s, "%"PRId64" %d %"PRId64"\n",
1466                 timestamp, index, st2->index_entries[index].timestamp);
1467         /* extract the current frame number */
1468         ast2->frame_offset = st2->index_entries[index].timestamp;
1469     }
1470
1471     /* do the seek */
1472     avio_seek(s->pb, pos, SEEK_SET);
1473     avi->stream_index = -1;
1474     return 0;
1475 }
1476
1477 static int avi_read_close(AVFormatContext *s)
1478 {
1479     int i;
1480     AVIContext *avi = s->priv_data;
1481
1482     for (i = 0; i < s->nb_streams; i++) {
1483         AVStream *st   = s->streams[i];
1484         AVIStream *ast = st->priv_data;
1485         if (ast) {
1486             if (ast->sub_ctx) {
1487                 av_freep(&ast->sub_ctx->pb);
1488                 avformat_close_input(&ast->sub_ctx);
1489             }
1490             av_free(ast->sub_buffer);
1491             av_free_packet(&ast->sub_pkt);
1492         }
1493     }
1494
1495     av_free(avi->dv_demux);
1496
1497     return 0;
1498 }
1499
1500 static int avi_probe(AVProbeData *p)
1501 {
1502     int i;
1503
1504     /* check file header */
1505     for (i = 0; avi_headers[i][0]; i++)
1506         if (!memcmp(p->buf,     avi_headers[i],     4) &&
1507             !memcmp(p->buf + 8, avi_headers[i] + 4, 4))
1508             return AVPROBE_SCORE_MAX;
1509
1510     return 0;
1511 }
1512
1513 AVInputFormat ff_avi_demuxer = {
1514     .name           = "avi",
1515     .long_name      = NULL_IF_CONFIG_SMALL("AVI (Audio Video Interleaved)"),
1516     .priv_data_size = sizeof(AVIContext),
1517     .read_probe     = avi_probe,
1518     .read_header    = avi_read_header,
1519     .read_packet    = avi_read_packet,
1520     .read_close     = avi_read_close,
1521     .read_seek      = avi_read_seek,
1522 };