diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 1a4fd63653..de6c76003d 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -926,10 +926,7 @@ static int mov_write_edts_tag(ByteIOContext *pb, MOVTrack *track) put_be32(pb, av_rescale_rnd(track->trackDuration, globalTimescale, track->timescale, AV_ROUND_UP)); /* duration ... doesn't seem to effect psp */ - if (track->hasBframes) - put_be32(pb, track->sampleDuration); /* first pts is 1 */ - else - put_be32(pb, 0); + put_be32(pb, track->cluster[0].cts); /* first pts is cts since dts is 0 */ put_be32(pb, 0x00010000); return 0x24; }