|
|
@@ -1147,7 +1147,7 @@ static int mov_write_tmcd_tag(AVIOContext *pb, MOVTrack *track) |
|
|
|
{ |
|
|
|
int64_t pos = avio_tell(pb); |
|
|
|
int frame_duration = av_rescale(track->timescale, track->enc->time_base.num, track->enc->time_base.den); |
|
|
|
int nb_frames = (track->timescale + frame_duration/2) / frame_duration; |
|
|
|
int nb_frames = 1.0/av_q2d(track->enc->time_base) + 0.5; |
|
|
|
|
|
|
|
avio_wb32(pb, 0); /* size */ |
|
|
|
ffio_wfourcc(pb, "tmcd"); /* Data format */ |
|
|
|