Commit e53ec2fe authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '78987a88'

* commit '78987a88':
  lavf: include 60 fps in guessed standard frame rates
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents dd4237f8 78987a88
......@@ -3243,7 +3243,7 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
/* Round guessed framerate to a "standard" framerate if it's
* within 1% of the original estimate. */
for (j = 1; j < MAX_STD_TIMEBASES; j++) {
for (j = 0; j < MAX_STD_TIMEBASES; j++) {
AVRational std_fps = { get_std_framerate(j), 12 * 1001 };
double error = fabs(av_q2d(st->avg_frame_rate) /
av_q2d(std_fps) - 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment