mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
In mov demuxer, set r_frame_rate for cfr files
Originally committed as revision 26310 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
e048a9cab1
commit
f6253caf8b
@ -1788,6 +1788,10 @@ static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
|
||||
|
||||
av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
|
||||
sc->time_scale*st->nb_frames, st->duration, INT_MAX);
|
||||
|
||||
if (sc->stts_count == 1 || (sc->stts_count == 2 && sc->stts_data[1].count == 1))
|
||||
av_reduce(&st->r_frame_rate.num, &st->r_frame_rate.den,
|
||||
sc->time_scale, sc->stts_data[0].duration, INT_MAX);
|
||||
}
|
||||
|
||||
switch (st->codec->codec_id) {
|
||||
|
Loading…
Reference in New Issue
Block a user