summaryrefslogtreecommitdiff
path: root/libavformat/utils.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-06-03 00:50:22 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-06-03 00:50:22 +0000
commit820ad60cd950750f2f9437882c4692be299e3e60 (patch)
treed849313d2d25b1f1c0f98beb591133743dcddded /libavformat/utils.c
parent5853423c3f514dcc72870930544f9fab7c0f5f20 (diff)
Make update_initial_durations() also work if a dts occured before a
sequence header (that is a few known dts/pts but no known durations previously) cnnts1.mpg is one sample affected by this. Originally committed as revision 13640 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r--libavformat/utils.c25
1 files changed, 20 insertions, 5 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 47324ea4bc..032ef2ceed 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -637,22 +637,37 @@ static void update_initial_timestamps(AVFormatContext *s, int stream_index,
static void update_initial_durations(AVFormatContext *s, AVStream *st, AVPacket *pkt)
{
AVPacketList *pktl= s->packet_buffer;
+ int64_t cur_dts= 0;
- assert(pkt->duration && !st->cur_dts);
+ if(st->first_dts != AV_NOPTS_VALUE){
+ cur_dts= st->first_dts;
+ for(; pktl; pktl= pktl->next){
+ if(pktl->pkt.stream_index == pkt->stream_index){
+ if(pktl->pkt.pts != pktl->pkt.dts || pktl->pkt.dts != AV_NOPTS_VALUE || pktl->pkt.duration)
+ break;
+ cur_dts -= pkt->duration;
+ }
+ }
+ pktl= s->packet_buffer;
+ st->first_dts = cur_dts;
+ }else if(st->cur_dts)
+ return;
for(; pktl; pktl= pktl->next){
if(pktl->pkt.stream_index != pkt->stream_index)
continue;
if(pktl->pkt.pts == pktl->pkt.dts && pktl->pkt.dts == AV_NOPTS_VALUE
&& !pktl->pkt.duration){
- pktl->pkt.dts= st->cur_dts;
+ pktl->pkt.dts= cur_dts;
if(!st->codec->has_b_frames)
- pktl->pkt.pts= st->cur_dts;
- st->cur_dts += pkt->duration;
+ pktl->pkt.pts= cur_dts;
+ cur_dts += pkt->duration;
pktl->pkt.duration= pkt->duration;
}else
break;
}
+ if(st->first_dts == AV_NOPTS_VALUE)
+ st->cur_dts= cur_dts;
}
static void compute_pkt_fields(AVFormatContext *s, AVStream *st,
@@ -671,7 +686,7 @@ static void compute_pkt_fields(AVFormatContext *s, AVStream *st,
if (den && num) {
pkt->duration = av_rescale(1, num * (int64_t)st->time_base.den, den * (int64_t)st->time_base.num);
- if(st->cur_dts == 0 && pkt->duration != 0)
+ if(pkt->duration != 0 && s->packet_buffer)
update_initial_durations(s, st, pkt);
}
}