mirror of https://git.ffmpeg.org/ffmpeg.git
movenc: Calculate fps for tmcd without intermediate step.
Fixes part of Ticket2045 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
bee044d7c2
commit
9362f31b55
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue