summaryrefslogtreecommitdiff
path: root/libavformat/movenc.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2015-03-16 13:02:59 +0200
committerMartin Storsjö <martin@martin.st>2015-03-19 10:27:12 +0200
commit5cf892d6946b19a87bcd00d6b76ce81f45960fdb (patch)
tree69032289db77764978a25be22efc5938b7c5295b /libavformat/movenc.c
parentb81b0cc22b22413760423e239ea644c9afdbfa2d (diff)
movenc: Write pts timestamps in tfxd, instead of dts timestamps
This matches what we write in tfra and tfrf since 9cbf70fa0e. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r--libavformat/movenc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index b9e75f420f..bc5370ee79 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -2542,7 +2542,8 @@ static int mov_write_tfxd_tag(AVIOContext *pb, MOVTrack *track)
avio_write(pb, uuid, sizeof(uuid));
avio_w8(pb, 1);
avio_wb24(pb, 0);
- avio_wb64(pb, track->frag_start);
+ avio_wb64(pb, track->start_dts + track->frag_start +
+ track->cluster[0].cts);
avio_wb64(pb, track->start_dts + track->track_duration -
track->cluster[0].dts);