3 * Copyright (c) 2001 Fabrice Bellard
5 * This file is part of FFmpeg.
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.
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.
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
25 #include "libavutil/intreadwrite.h"
26 #include "libavutil/bswap.h"
35 typedef struct AVIStream
{
36 int64_t frame_offset
; /* current frame (video) or byte (audio) counter
37 (used to compute the pts) */
43 int sample_size
; /* size of one sample (or packet) (in the rate/scale sense) in bytes */
45 int64_t cum_len
; /* temporary storage (used during seek) */
47 int prefix
; ///< normally 'd'<<8 + 'c' or 'w'<<8 + 'b'
63 DVDemuxContext
* dv_demux
;
66 static const char avi_headers
[][8] = {
67 { 'R', 'I', 'F', 'F', 'A', 'V', 'I', ' ' },
68 { 'R', 'I', 'F', 'F', 'A', 'V', 'I', 'X' },
69 { 'R', 'I', 'F', 'F', 'A', 'V', 'I', 0x19},
70 { 'O', 'N', '2', ' ', 'O', 'N', '2', 'f' },
71 { 'R', 'I', 'F', 'F', 'A', 'M', 'V', ' ' },
75 static int avi_load_index(AVFormatContext
*s
);
76 static int guess_ni_flag(AVFormatContext
*s
);
79 static void print_tag(const char *str
, unsigned int tag
, int size
)
81 dprintf(NULL
, "%s: tag=%c%c%c%c size=0x%x\n",
90 static int get_riff(AVFormatContext
*s
, ByteIOContext
*pb
)
92 AVIContext
*avi
= s
->priv_data
;
96 /* check RIFF header */
97 get_buffer(pb
, header
, 4);
98 avi
->riff_end
= get_le32(pb
); /* RIFF chunk size */
99 avi
->riff_end
+= url_ftell(pb
); /* RIFF chunk end */
100 get_buffer(pb
, header
+4, 4);
102 for(i
=0; avi_headers
[i
][0]; i
++)
103 if(!memcmp(header
, avi_headers
[i
], 8))
105 if(!avi_headers
[i
][0])
108 if(header
[7] == 0x19)
109 av_log(s
, AV_LOG_INFO
, "This file has been generated by a totally broken muxer.\n");
114 static int read_braindead_odml_indx(AVFormatContext
*s
, int frame_num
){
115 AVIContext
*avi
= s
->priv_data
;
116 ByteIOContext
*pb
= s
->pb
;
117 int longs_pre_entry
= get_le16(pb
);
118 int index_sub_type
= get_byte(pb
);
119 int index_type
= get_byte(pb
);
120 int entries_in_use
= get_le32(pb
);
121 int chunk_id
= get_le32(pb
);
122 int64_t base
= get_le64(pb
);
123 int stream_id
= 10*((chunk_id
&0xFF) - '0') + (((chunk_id
>>8)&0xFF) - '0');
127 int64_t last_pos
= -1;
128 int64_t filesize
= url_fsize(s
->pb
);
131 av_log(s
, AV_LOG_ERROR
, "longs_pre_entry:%d index_type:%d entries_in_use:%d chunk_id:%X base:%16"PRIX64
"\n",
132 longs_pre_entry
,index_type
, entries_in_use
, chunk_id
, base
);
135 if(stream_id
> s
->nb_streams
|| stream_id
< 0)
137 st
= s
->streams
[stream_id
];
145 if(index_type
&& longs_pre_entry
!= 2)
150 if(filesize
> 0 && base
>= filesize
){
151 av_log(s
, AV_LOG_ERROR
, "ODML index invalid\n");
152 if(base
>>32 == (base
& 0xFFFFFFFF) && (base
& 0xFFFFFFFF) < filesize
&& filesize
<= 0xFFFFFFFF)
158 for(i
=0; i
<entries_in_use
; i
++){
160 int64_t pos
= get_le32(pb
) + base
- 8;
161 int len
= get_le32(pb
);
166 av_log(s
, AV_LOG_ERROR
, "pos:%"PRId64
", len:%X\n", pos
, len
);
171 if(last_pos
== pos
|| pos
== base
- 8)
172 avi
->non_interleaved
= 1;
174 av_add_index_entry(st
, pos
, ast
->cum_len
/ FFMAX(1, ast
->sample_size
), len
, 0, key
? AVINDEX_KEYFRAME
: 0);
184 offset
= get_le64(pb
);
185 get_le32(pb
); /* size */
186 duration
= get_le32(pb
);
193 url_fseek(pb
, offset
+8, SEEK_SET
);
194 read_braindead_odml_indx(s
, frame_num
);
195 frame_num
+= duration
;
197 url_fseek(pb
, pos
, SEEK_SET
);
204 static void clean_index(AVFormatContext
*s
){
208 for(i
=0; i
<s
->nb_streams
; i
++){
209 AVStream
*st
= s
->streams
[i
];
210 AVIStream
*ast
= st
->priv_data
;
211 int n
= st
->nb_index_entries
;
212 int max
= ast
->sample_size
;
213 int64_t pos
, size
, ts
;
215 if(n
!= 1 || ast
->sample_size
==0)
218 while(max
< 1024) max
+=max
;
220 pos
= st
->index_entries
[0].pos
;
221 size
= st
->index_entries
[0].size
;
222 ts
= st
->index_entries
[0].timestamp
;
224 for(j
=0; j
<size
; j
+=max
){
225 av_add_index_entry(st
, pos
+j
, ts
+ j
/ast
->sample_size
, FFMIN(max
, size
-j
), 0, AVINDEX_KEYFRAME
);
230 static int avi_read_tag(AVFormatContext
*s
, const char *key
, unsigned int size
)
232 ByteIOContext
*pb
= s
->pb
;
235 int64_t i
= url_ftell(pb
);
237 get_strz(pb
, value
, sizeof(value
));
238 url_fseek(pb
, i
+size
, SEEK_SET
);
240 return av_metadata_set(&s
->metadata
, key
, value
);
243 static int avi_read_header(AVFormatContext
*s
, AVFormatParameters
*ap
)
245 AVIContext
*avi
= s
->priv_data
;
246 ByteIOContext
*pb
= s
->pb
;
247 unsigned int tag
, tag1
, handler
;
248 int codec_type
, stream_index
, frame_period
, bit_rate
;
249 unsigned int size
, nb_frames
;
252 AVIStream
*ast
= NULL
;
253 int avih_width
=0, avih_height
=0;
254 int amv_file_format
=0;
255 uint64_t list_end
= 0;
257 avi
->stream_index
= -1;
259 if (get_riff(s
, pb
) < 0)
262 avi
->fsize
= url_fsize(pb
);
264 avi
->fsize
= avi
->riff_end
== 8 ? INT64_MAX
: avi
->riff_end
;
276 print_tag("tag", tag
, size
);
280 case MKTAG('L', 'I', 'S', 'T'):
281 list_end
= url_ftell(pb
) + size
;
282 /* Ignored, except at start of video packets. */
285 print_tag("list", tag1
, 0);
287 if (tag1
== MKTAG('m', 'o', 'v', 'i')) {
288 avi
->movi_list
= url_ftell(pb
) - 4;
289 if(size
) avi
->movi_end
= avi
->movi_list
+ size
+ (size
& 1);
290 else avi
->movi_end
= url_fsize(pb
);
291 dprintf(NULL
, "movi end=%"PRIx64
"\n", avi
->movi_end
);
295 case MKTAG('d', 'm', 'l', 'h'):
297 url_fskip(pb
, size
+ (size
& 1));
299 case MKTAG('a', 'm', 'v', 'h'):
301 case MKTAG('a', 'v', 'i', 'h'):
303 /* using frame_period is bad idea */
304 frame_period
= get_le32(pb
);
305 bit_rate
= get_le32(pb
) * 8;
307 avi
->non_interleaved
|= get_le32(pb
) & AVIF_MUSTUSEINDEX
;
309 url_fskip(pb
, 2 * 4);
312 avih_width
=get_le32(pb
);
313 avih_height
=get_le32(pb
);
315 url_fskip(pb
, size
- 10 * 4);
317 case MKTAG('s', 't', 'r', 'h'):
321 handler
= get_le32(pb
); /* codec tag */
323 if(tag1
== MKTAG('p', 'a', 'd', 's')){
324 url_fskip(pb
, size
- 8);
328 st
= av_new_stream(s
, stream_index
);
332 ast
= av_mallocz(sizeof(AVIStream
));
338 tag1
= stream_index
? MKTAG('a','u','d','s') : MKTAG('v','i','d','s');
341 print_tag("strh", tag1
, -1);
343 if(tag1
== MKTAG('i', 'a', 'v', 's') || tag1
== MKTAG('i', 'v', 'a', 's')){
347 * After some consideration -- I don't think we
348 * have to support anything but DV in type1 AVIs.
350 if (s
->nb_streams
!= 1)
353 if (handler
!= MKTAG('d', 'v', 's', 'd') &&
354 handler
!= MKTAG('d', 'v', 'h', 'd') &&
355 handler
!= MKTAG('d', 'v', 's', 'l'))
358 ast
= s
->streams
[0]->priv_data
;
359 av_freep(&s
->streams
[0]->codec
->extradata
);
360 av_freep(&s
->streams
[0]);
362 if (CONFIG_DV_DEMUXER
) {
363 avi
->dv_demux
= dv_init_demux(s
);
367 s
->streams
[0]->priv_data
= ast
;
368 url_fskip(pb
, 3 * 4);
369 ast
->scale
= get_le32(pb
);
370 ast
->rate
= get_le32(pb
);
371 url_fskip(pb
, 4); /* start time */
373 dv_dur
= get_le32(pb
);
374 if (ast
->scale
> 0 && ast
->rate
> 0 && dv_dur
> 0) {
375 dv_dur
*= AV_TIME_BASE
;
376 s
->duration
= av_rescale(dv_dur
, ast
->scale
, ast
->rate
);
379 * else, leave duration alone; timing estimation in utils.c
380 * will make a guess based on bitrate.
383 stream_index
= s
->nb_streams
- 1;
384 url_fskip(pb
, size
- 9*4);
388 assert(stream_index
< s
->nb_streams
);
389 st
->codec
->stream_codec_tag
= handler
;
391 get_le32(pb
); /* flags */
392 get_le16(pb
); /* priority */
393 get_le16(pb
); /* language */
394 get_le32(pb
); /* initial frame */
395 ast
->scale
= get_le32(pb
);
396 ast
->rate
= get_le32(pb
);
397 if(!(ast
->scale
&& ast
->rate
)){
398 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
);
401 ast
->scale
= frame_period
;
407 av_set_pts_info(st
, 64, ast
->scale
, ast
->rate
);
409 ast
->cum_len
=get_le32(pb
); /* start */
410 nb_frames
= get_le32(pb
);
413 st
->duration
= nb_frames
;
414 get_le32(pb
); /* buffer size */
415 get_le32(pb
); /* quality */
416 ast
->sample_size
= get_le32(pb
); /* sample ssize */
417 ast
->cum_len
*= FFMAX(1, ast
->sample_size
);
418 // av_log(s, AV_LOG_DEBUG, "%d %d %d %d\n", ast->rate, ast->scale, ast->start, ast->sample_size);
421 case MKTAG('v', 'i', 'd', 's'):
422 codec_type
= CODEC_TYPE_VIDEO
;
424 ast
->sample_size
= 0;
426 case MKTAG('a', 'u', 'd', 's'):
427 codec_type
= CODEC_TYPE_AUDIO
;
429 case MKTAG('t', 'x', 't', 's'):
431 codec_type
= CODEC_TYPE_DATA
; //CODEC_TYPE_SUB ? FIXME
433 case MKTAG('d', 'a', 't', 's'):
434 codec_type
= CODEC_TYPE_DATA
;
437 av_log(s
, AV_LOG_ERROR
, "unknown stream type %X\n", tag1
);
440 ast
->frame_offset
= ast
->cum_len
;
441 url_fskip(pb
, size
- 12 * 4);
443 case MKTAG('s', 't', 'r', 'f'):
445 if (stream_index
>= (unsigned)s
->nb_streams
|| avi
->dv_demux
) {
448 uint64_t cur_pos
= url_ftell(pb
);
449 if (cur_pos
< list_end
)
450 size
= FFMIN(size
, list_end
- cur_pos
);
451 st
= s
->streams
[stream_index
];
453 case CODEC_TYPE_VIDEO
:
455 st
->codec
->width
=avih_width
;
456 st
->codec
->height
=avih_height
;
457 st
->codec
->codec_type
= CODEC_TYPE_VIDEO
;
458 st
->codec
->codec_id
= CODEC_ID_AMV
;
462 get_le32(pb
); /* size */
463 st
->codec
->width
= get_le32(pb
);
464 st
->codec
->height
= (int32_t)get_le32(pb
);
465 get_le16(pb
); /* panes */
466 st
->codec
->bits_per_coded_sample
= get_le16(pb
); /* depth */
468 get_le32(pb
); /* ImageSize */
469 get_le32(pb
); /* XPelsPerMeter */
470 get_le32(pb
); /* YPelsPerMeter */
471 get_le32(pb
); /* ClrUsed */
472 get_le32(pb
); /* ClrImportant */
474 if (tag1
== MKTAG('D', 'X', 'S', 'B')) {
475 st
->codec
->codec_type
= CODEC_TYPE_SUBTITLE
;
476 st
->codec
->codec_tag
= tag1
;
477 st
->codec
->codec_id
= CODEC_ID_XSUB
;
481 if(size
> 10*4 && size
<(1<<30)){
482 st
->codec
->extradata_size
= size
- 10*4;
483 st
->codec
->extradata
= av_malloc(st
->codec
->extradata_size
+ FF_INPUT_BUFFER_PADDING_SIZE
);
484 if (!st
->codec
->extradata
) {
485 st
->codec
->extradata_size
= 0;
486 return AVERROR(ENOMEM
);
488 get_buffer(pb
, st
->codec
->extradata
, st
->codec
->extradata_size
);
491 if(st
->codec
->extradata_size
& 1) //FIXME check if the encoder really did this correctly
494 /* Extract palette from extradata if bpp <= 8. */
495 /* This code assumes that extradata contains only palette. */
496 /* This is true for all paletted codecs implemented in FFmpeg. */
497 if (st
->codec
->extradata_size
&& (st
->codec
->bits_per_coded_sample
<= 8)) {
498 st
->codec
->palctrl
= av_mallocz(sizeof(AVPaletteControl
));
500 for (i
= 0; i
< FFMIN(st
->codec
->extradata_size
, AVPALETTE_SIZE
)/4; i
++)
501 st
->codec
->palctrl
->palette
[i
] = bswap_32(((uint32_t*)st
->codec
->extradata
)[i
]);
503 memcpy(st
->codec
->palctrl
->palette
, st
->codec
->extradata
,
504 FFMIN(st
->codec
->extradata_size
, AVPALETTE_SIZE
));
506 st
->codec
->palctrl
->palette_changed
= 1;
510 print_tag("video", tag1
, 0);
512 st
->codec
->codec_type
= CODEC_TYPE_VIDEO
;
513 st
->codec
->codec_tag
= tag1
;
514 st
->codec
->codec_id
= ff_codec_get_id(ff_codec_bmp_tags
, tag1
);
515 st
->need_parsing
= AVSTREAM_PARSE_HEADERS
; // This is needed to get the pict type which is necessary for generating correct pts.
517 if(st
->codec
->codec_tag
==0 && st
->codec
->height
> 0 && st
->codec
->extradata_size
< 1U<<30){
518 st
->codec
->extradata_size
+= 9;
519 st
->codec
->extradata
= av_realloc(st
->codec
->extradata
, st
->codec
->extradata_size
+ FF_INPUT_BUFFER_PADDING_SIZE
);
520 if(st
->codec
->extradata
)
521 memcpy(st
->codec
->extradata
+ st
->codec
->extradata_size
- 9, "BottomUp", 9);
523 st
->codec
->height
= FFABS(st
->codec
->height
);
525 // url_fskip(pb, size - 5 * 4);
527 case CODEC_TYPE_AUDIO
:
528 ff_get_wav_header(pb
, st
->codec
, size
);
529 if(ast
->sample_size
&& st
->codec
->block_align
&& ast
->sample_size
!= st
->codec
->block_align
){
530 av_log(s
, AV_LOG_WARNING
, "sample size (%d) != block align (%d)\n", ast
->sample_size
, st
->codec
->block_align
);
531 ast
->sample_size
= st
->codec
->block_align
;
533 if (size
%2) /* 2-aligned (fix for Stargate SG-1 - 3x18 - Shades of Grey.avi) */
535 /* Force parsing as several audio frames can be in
536 * one packet and timestamps refer to packet start. */
537 st
->need_parsing
= AVSTREAM_PARSE_TIMESTAMPS
;
538 /* ADTS header is in extradata, AAC without header must be
539 * stored as exact frames. Parser not needed and it will
541 if (st
->codec
->codec_id
== CODEC_ID_AAC
&& st
->codec
->extradata_size
)
542 st
->need_parsing
= AVSTREAM_PARSE_NONE
;
543 /* AVI files with Xan DPCM audio (wrongly) declare PCM
544 * audio in the header but have Axan as stream_code_tag. */
545 if (st
->codec
->stream_codec_tag
== AV_RL32("Axan")){
546 st
->codec
->codec_id
= CODEC_ID_XAN_DPCM
;
547 st
->codec
->codec_tag
= 0;
550 st
->codec
->codec_id
= CODEC_ID_ADPCM_IMA_AMV
;
553 st
->codec
->codec_type
= CODEC_TYPE_DATA
;
554 st
->codec
->codec_id
= CODEC_ID_NONE
;
555 st
->codec
->codec_tag
= 0;
561 case MKTAG('i', 'n', 'd', 'x'):
563 if(!url_is_streamed(pb
) && !(s
->flags
& AVFMT_FLAG_IGNIDX
)){
564 read_braindead_odml_indx(s
, 0);
566 url_fseek(pb
, i
+size
, SEEK_SET
);
568 case MKTAG('v', 'p', 'r', 'p'):
569 if(stream_index
< (unsigned)s
->nb_streams
&& size
> 9*4){
570 AVRational active
, active_aspect
;
572 st
= s
->streams
[stream_index
];
579 active_aspect
.den
= get_le16(pb
);
580 active_aspect
.num
= get_le16(pb
);
581 active
.num
= get_le32(pb
);
582 active
.den
= get_le32(pb
);
583 get_le32(pb
); //nbFieldsPerFrame
585 if(active_aspect
.num
&& active_aspect
.den
&& active
.num
&& active
.den
){
586 st
->sample_aspect_ratio
= av_div_q(active_aspect
, active
);
587 //av_log(s, AV_LOG_ERROR, "vprp %d/%d %d/%d\n", active_aspect.num, active_aspect.den, active.num, active.den);
591 url_fseek(pb
, size
, SEEK_CUR
);
593 case MKTAG('I', 'N', 'A', 'M'):
594 avi_read_tag(s
, "Title", size
);
596 case MKTAG('I', 'A', 'R', 'T'):
597 avi_read_tag(s
, "Artist", size
);
599 case MKTAG('I', 'C', 'O', 'P'):
600 avi_read_tag(s
, "Copyright", size
);
602 case MKTAG('I', 'C', 'M', 'T'):
603 avi_read_tag(s
, "Comment", size
);
605 case MKTAG('I', 'G', 'N', 'R'):
606 avi_read_tag(s
, "Genre", size
);
608 case MKTAG('I', 'P', 'R', 'D'):
609 avi_read_tag(s
, "Album", size
);
611 case MKTAG('I', 'P', 'R', 'T'):
612 avi_read_tag(s
, "Track", size
);
616 av_log(s
, AV_LOG_ERROR
, "Something went wrong during header parsing, "
617 "I will ignore it and try to continue anyway.\n");
618 avi
->movi_list
= url_ftell(pb
) - 4;
619 avi
->movi_end
= url_fsize(pb
);
629 /* check stream number */
630 if (stream_index
!= s
->nb_streams
- 1) {
635 if(!avi
->index_loaded
&& !url_is_streamed(pb
))
637 avi
->index_loaded
= 1;
638 avi
->non_interleaved
|= guess_ni_flag(s
);
639 if(avi
->non_interleaved
) {
640 av_log(s
, AV_LOG_INFO
, "non-interleaved AVI\n");
647 static int get_stream_idx(int *d
){
648 if( d
[0] >= '0' && d
[0] <= '9'
649 && d
[1] >= '0' && d
[1] <= '9'){
650 return (d
[0] - '0') * 10 + (d
[1] - '0');
652 return 100; //invalid stream ID
656 static int avi_read_packet(AVFormatContext
*s
, AVPacket
*pkt
)
658 AVIContext
*avi
= s
->priv_data
;
659 ByteIOContext
*pb
= s
->pb
;
665 if (CONFIG_DV_DEMUXER
&& avi
->dv_demux
) {
666 int size
= dv_get_packet(avi
->dv_demux
, pkt
);
671 if(avi
->non_interleaved
){
672 int best_stream_index
= 0;
673 AVStream
*best_st
= NULL
;
675 int64_t best_ts
= INT64_MAX
;
678 for(i
=0; i
<s
->nb_streams
; i
++){
679 AVStream
*st
= s
->streams
[i
];
680 AVIStream
*ast
= st
->priv_data
;
681 int64_t ts
= ast
->frame_offset
;
684 if(!st
->nb_index_entries
)
688 ts
/= ast
->sample_size
;
690 last_ts
= st
->index_entries
[st
->nb_index_entries
- 1].timestamp
;
691 if(!ast
->remaining
&& ts
> last_ts
)
694 ts
= av_rescale_q(ts
, st
->time_base
, AV_TIME_BASE_Q
);
696 // av_log(s, AV_LOG_DEBUG, "%"PRId64" %d/%d %"PRId64"\n", ts, st->time_base.num, st->time_base.den, ast->frame_offset);
700 best_stream_index
= i
;
706 best_ast
= best_st
->priv_data
;
707 best_ts
= av_rescale_q(best_ts
, AV_TIME_BASE_Q
, best_st
->time_base
);
708 if(best_ast
->remaining
)
709 i
= av_index_search_timestamp(best_st
, best_ts
, AVSEEK_FLAG_ANY
| AVSEEK_FLAG_BACKWARD
);
711 i
= av_index_search_timestamp(best_st
, best_ts
, AVSEEK_FLAG_ANY
);
713 best_ast
->frame_offset
= best_st
->index_entries
[i
].timestamp
714 * FFMAX(1, best_ast
->sample_size
);
717 // av_log(s, AV_LOG_DEBUG, "%d\n", i);
719 int64_t pos
= best_st
->index_entries
[i
].pos
;
720 pos
+= best_ast
->packet_size
- best_ast
->remaining
;
721 url_fseek(s
->pb
, pos
+ 8, SEEK_SET
);
722 // av_log(s, AV_LOG_DEBUG, "pos=%"PRId64"\n", pos);
724 assert(best_ast
->remaining
<= best_ast
->packet_size
);
726 avi
->stream_index
= best_stream_index
;
727 if(!best_ast
->remaining
)
728 best_ast
->packet_size
=
729 best_ast
->remaining
= best_st
->index_entries
[i
].size
;
734 if(avi
->stream_index
>= 0){
735 AVStream
*st
= s
->streams
[ avi
->stream_index
];
736 AVIStream
*ast
= st
->priv_data
;
739 if(ast
->sample_size
<= 1) // minorityreport.AVI block_align=1024 sample_size=1 IMA-ADPCM
741 else if(ast
->sample_size
< 32)
742 size
= 64*ast
->sample_size
;
744 size
= ast
->sample_size
;
746 if(size
> ast
->remaining
)
747 size
= ast
->remaining
;
748 avi
->last_pkt_pos
= url_ftell(pb
);
749 err
= av_get_packet(pb
, pkt
, size
);
753 if(ast
->has_pal
&& pkt
->data
&& pkt
->size
<(unsigned)INT_MAX
/2){
754 void *ptr
= av_realloc(pkt
->data
, pkt
->size
+ 4*256 + FF_INPUT_BUFFER_PADDING_SIZE
);
759 memcpy(pkt
->data
+ pkt
->size
- 4*256, ast
->pal
, 4*256);
761 av_log(s
, AV_LOG_ERROR
, "Failed to append palette\n");
764 if (CONFIG_DV_DEMUXER
&& avi
->dv_demux
) {
765 dstr
= pkt
->destruct
;
766 size
= dv_produce_packet(avi
->dv_demux
, pkt
,
767 pkt
->data
, pkt
->size
);
768 pkt
->destruct
= dstr
;
769 pkt
->flags
|= PKT_FLAG_KEY
;
771 /* XXX: How to handle B-frames in AVI? */
772 pkt
->dts
= ast
->frame_offset
;
773 // pkt->dts += ast->start;
775 pkt
->dts
/= ast
->sample_size
;
776 //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);
777 pkt
->stream_index
= avi
->stream_index
;
779 if (st
->codec
->codec_type
== CODEC_TYPE_VIDEO
) {
782 assert(st
->index_entries
);
784 index
= av_index_search_timestamp(st
, pkt
->dts
, 0);
785 e
= &st
->index_entries
[index
];
787 if(index
>= 0 && e
->timestamp
== ast
->frame_offset
){
788 if (e
->flags
& AVINDEX_KEYFRAME
)
789 pkt
->flags
|= PKT_FLAG_KEY
;
792 pkt
->flags
|= PKT_FLAG_KEY
;
795 ast
->frame_offset
+= pkt
->size
;
799 ast
->remaining
-= size
;
801 avi
->stream_index
= -1;
808 memset(d
, -1, sizeof(int)*8);
809 for(i
=sync
=url_ftell(pb
); !url_feof(pb
); i
++) {
816 size
= d
[4] + (d
[5]<<8) + (d
[6]<<16) + (d
[7]<<24);
818 n
= get_stream_idx(d
+2);
819 //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);
820 if(i
+ (uint64_t)size
> avi
->fsize
|| d
[0]<0)
824 if( (d
[0] == 'i' && d
[1] == 'x' && n
< s
->nb_streams
)
826 ||(d
[0] == 'J' && d
[1] == 'U' && d
[2] == 'N' && d
[3] == 'K')
827 ||(d
[0] == 'i' && d
[1] == 'd' && d
[2] == 'x' && d
[3] == '1')){
829 //av_log(s, AV_LOG_DEBUG, "SKIP\n");
833 n
= get_stream_idx(d
);
835 if(!((i
-avi
->last_pkt_pos
)&1) && get_stream_idx(d
+1) < s
->nb_streams
)
838 //detect ##ix chunk and skip
839 if(d
[2] == 'i' && d
[3] == 'x' && n
< s
->nb_streams
){
845 if(n
< s
->nb_streams
){
851 if(s
->nb_streams
>=2){
852 AVStream
*st1
= s
->streams
[1];
853 AVIStream
*ast1
= st1
->priv_data
;
854 //workaround for broken small-file-bug402.avi
855 if( d
[2] == 'w' && d
[3] == 'b'
857 && st
->codec
->codec_type
== CODEC_TYPE_VIDEO
858 && st1
->codec
->codec_type
== CODEC_TYPE_AUDIO
859 && ast
->prefix
== 'd'*256+'c'
860 && (d
[2]*256+d
[3] == ast1
->prefix
|| !ast1
->prefix_count
)
865 av_log(s
, AV_LOG_WARNING
, "Invalid stream + prefix combination, assuming audio.\n");
870 if( (st
->discard
>= AVDISCARD_DEFAULT
&& size
==0)
871 /*|| (st->discard >= AVDISCARD_NONKEY && !(pkt->flags & PKT_FLAG_KEY))*/ //FIXME needs a little reordering
872 || st
->discard
>= AVDISCARD_ALL
){
873 if(ast
->sample_size
) ast
->frame_offset
+= pkt
->size
;
874 else ast
->frame_offset
++;
879 if (d
[2] == 'p' && d
[3] == 'c' && size
<=4*256+4) {
880 int k
= get_byte(pb
);
881 int last
= (k
+ get_byte(pb
) - 1) & 0xFF;
883 get_le16(pb
); //flags
885 for (; k
<= last
; k
++)
886 ast
->pal
[k
] = get_be32(pb
)>>8;// b + (g << 8) + (r << 16);
889 } else if( ((ast
->prefix_count
<5 || sync
+9 > i
) && d
[2]<128 && d
[3]<128) ||
890 d
[2]*256+d
[3] == ast
->prefix
/*||
891 (d[2] == 'd' && d[3] == 'c') ||
892 (d[2] == 'w' && d[3] == 'b')*/) {
894 //av_log(s, AV_LOG_DEBUG, "OK\n");
895 if(d
[2]*256+d
[3] == ast
->prefix
)
898 ast
->prefix
= d
[2]*256+d
[3];
899 ast
->prefix_count
= 0;
902 avi
->stream_index
= n
;
903 ast
->packet_size
= size
+ 8;
904 ast
->remaining
= size
;
907 uint64_t pos
= url_ftell(pb
) - 8;
908 if(!st
->index_entries
|| !st
->nb_index_entries
|| st
->index_entries
[st
->nb_index_entries
- 1].pos
< pos
){
909 av_add_index_entry(st
, pos
, ast
->frame_offset
/ FFMAX(1, ast
->sample_size
), size
, 0, AVINDEX_KEYFRAME
);
920 /* XXX: We make the implicit supposition that the positions are sorted
922 static int avi_read_idx1(AVFormatContext
*s
, int size
)
924 AVIContext
*avi
= s
->priv_data
;
925 ByteIOContext
*pb
= s
->pb
;
926 int nb_index_entries
, i
;
929 unsigned int index
, tag
, flags
, pos
, len
;
930 unsigned last_pos
= -1;
932 nb_index_entries
= size
/ 16;
933 if (nb_index_entries
<= 0)
936 /* Read the entries and sort them in each stream component. */
937 for(i
= 0; i
< nb_index_entries
; i
++) {
939 flags
= get_le32(pb
);
942 #if defined(DEBUG_SEEK)
943 av_log(s
, AV_LOG_DEBUG
, "%d: tag=0x%x flags=0x%x pos=0x%x len=%d/",
944 i
, tag
, flags
, pos
, len
);
946 if(i
==0 && pos
> avi
->movi_list
)
947 avi
->movi_list
= 0; //FIXME better check
948 pos
+= avi
->movi_list
;
950 index
= ((tag
& 0xff) - '0') * 10;
951 index
+= ((tag
>> 8) & 0xff) - '0';
952 if (index
>= s
->nb_streams
)
954 st
= s
->streams
[index
];
957 #if defined(DEBUG_SEEK)
958 av_log(s
, AV_LOG_DEBUG
, "%d cum_len=%"PRId64
"\n", len
, ast
->cum_len
);
964 avi
->non_interleaved
= 1;
966 av_add_index_entry(st
, pos
, ast
->cum_len
/ FFMAX(1, ast
->sample_size
), len
, 0, (flags
&AVIIF_INDEX
) ? AVINDEX_KEYFRAME
: 0);
976 static int guess_ni_flag(AVFormatContext
*s
){
978 int64_t last_start
=0;
979 int64_t first_end
= INT64_MAX
;
980 int64_t oldpos
= url_ftell(s
->pb
);
982 for(i
=0; i
<s
->nb_streams
; i
++){
983 AVStream
*st
= s
->streams
[i
];
984 int n
= st
->nb_index_entries
;
991 int64_t pos
= st
->index_entries
[0].pos
;
992 url_fseek(s
->pb
, pos
+ 4, SEEK_SET
);
993 size
= get_le32(s
->pb
);
994 if(pos
+ size
> st
->index_entries
[1].pos
)
995 last_start
= INT64_MAX
;
998 if(st
->index_entries
[0].pos
> last_start
)
999 last_start
= st
->index_entries
[0].pos
;
1000 if(st
->index_entries
[n
-1].pos
< first_end
)
1001 first_end
= st
->index_entries
[n
-1].pos
;
1003 url_fseek(s
->pb
, oldpos
, SEEK_SET
);
1004 return last_start
> first_end
;
1007 static int avi_load_index(AVFormatContext
*s
)
1009 AVIContext
*avi
= s
->priv_data
;
1010 ByteIOContext
*pb
= s
->pb
;
1012 int64_t pos
= url_ftell(pb
);
1015 if (url_fseek(pb
, avi
->movi_end
, SEEK_SET
) < 0)
1016 goto the_end
; // maybe truncated file
1018 printf("movi_end=0x%"PRIx64
"\n", avi
->movi_end
);
1024 size
= get_le32(pb
);
1026 printf("tag=%c%c%c%c size=0x%x\n",
1034 case MKTAG('i', 'd', 'x', '1'):
1035 if (avi_read_idx1(s
, size
) < 0)
1043 if (url_fseek(pb
, size
, SEEK_CUR
) < 0)
1044 goto the_end
; // something is wrong here
1049 url_fseek(pb
, pos
, SEEK_SET
);
1053 static int avi_read_seek(AVFormatContext
*s
, int stream_index
, int64_t timestamp
, int flags
)
1055 AVIContext
*avi
= s
->priv_data
;
1060 if (!avi
->index_loaded
) {
1061 /* we only load the index on demand */
1063 avi
->index_loaded
= 1;
1065 assert(stream_index
>= 0);
1067 st
= s
->streams
[stream_index
];
1068 index
= av_index_search_timestamp(st
, timestamp
, flags
);
1072 /* find the position */
1073 pos
= st
->index_entries
[index
].pos
;
1074 timestamp
= st
->index_entries
[index
].timestamp
;
1076 // av_log(s, AV_LOG_DEBUG, "XX %"PRId64" %d %"PRId64"\n", timestamp, index, st->index_entries[index].timestamp);
1078 if (CONFIG_DV_DEMUXER
&& avi
->dv_demux
) {
1079 /* One and only one real stream for DV in AVI, and it has video */
1080 /* offsets. Calling with other stream indexes should have failed */
1081 /* the av_index_search_timestamp call above. */
1082 assert(stream_index
== 0);
1084 /* Feed the DV video stream version of the timestamp to the */
1085 /* DV demux so it can synthesize correct timestamps. */
1086 dv_offset_reset(avi
->dv_demux
, timestamp
);
1088 url_fseek(s
->pb
, pos
, SEEK_SET
);
1089 avi
->stream_index
= -1;
1093 for(i
= 0; i
< s
->nb_streams
; i
++) {
1094 AVStream
*st2
= s
->streams
[i
];
1095 AVIStream
*ast2
= st2
->priv_data
;
1100 if (st2
->nb_index_entries
<= 0)
1103 // assert(st2->codec->block_align);
1104 assert((int64_t)st2
->time_base
.num
*ast2
->rate
== (int64_t)st2
->time_base
.den
*ast2
->scale
);
1105 index
= av_index_search_timestamp(
1107 av_rescale_q(timestamp
, st
->time_base
, st2
->time_base
),
1108 flags
| AVSEEK_FLAG_BACKWARD
);
1112 if(!avi
->non_interleaved
){
1113 while(index
>0 && st2
->index_entries
[index
].pos
> pos
)
1115 while(index
+1 < st2
->nb_index_entries
&& st2
->index_entries
[index
].pos
< pos
)
1119 // av_log(s, AV_LOG_DEBUG, "%"PRId64" %d %"PRId64"\n", timestamp, index, st2->index_entries[index].timestamp);
1120 /* extract the current frame number */
1121 ast2
->frame_offset
= st2
->index_entries
[index
].timestamp
;
1122 if(ast2
->sample_size
)
1123 ast2
->frame_offset
*=ast2
->sample_size
;
1127 url_fseek(s
->pb
, pos
, SEEK_SET
);
1128 avi
->stream_index
= -1;
1132 static int avi_read_close(AVFormatContext
*s
)
1135 AVIContext
*avi
= s
->priv_data
;
1137 for(i
=0;i
<s
->nb_streams
;i
++) {
1138 AVStream
*st
= s
->streams
[i
];
1139 av_free(st
->codec
->palctrl
);
1143 av_free(avi
->dv_demux
);
1148 static int avi_probe(AVProbeData
*p
)
1152 /* check file header */
1153 for(i
=0; avi_headers
[i
][0]; i
++)
1154 if(!memcmp(p
->buf
, avi_headers
[i
] , 4) &&
1155 !memcmp(p
->buf
+8, avi_headers
[i
]+4, 4))
1156 return AVPROBE_SCORE_MAX
;
1161 AVInputFormat avi_demuxer
= {
1163 NULL_IF_CONFIG_SMALL("AVI format"),