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