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