Browse Source

fix edts for tracks without b frames

Originally committed as revision 5282 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 20 years ago
parent
commit
a336965e70
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      libavformat/movenc.c

+ 4
- 1
libavformat/movenc.c View File

@@ -946,7 +946,10 @@ 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 */

put_be32(pb, track->sampleDuration);
if (track->hasBframes)
put_be32(pb, track->sampleDuration); /* first pts is 1 */
else
put_be32(pb, 0);
put_be32(pb, 0x00010000);
return 0x24;
}


Loading…
Cancel
Save