diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-28 18:04:38 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-28 18:51:15 +0200 |
commit | a215b158152e9fa5f9b625d503cbc66a8286d3d4 (patch) | |
tree | 411c05c7a4a83e855a5f98f8f5d9cd8394a761b5 | |
parent | 34e7d3c3681abce074203402510a31fb9069bcf3 (diff) | |
download | ffmpeg-a215b158152e9fa5f9b625d503cbc66a8286d3d4.tar.gz |
avformat/utils: Set the average frame rate from the r_frame_rate if the stream appears to be cfr
This permits the average fps to be set in more cases
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/utils.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index f91c4fcd08..26fb0b9da8 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3023,6 +3023,15 @@ void ff_rfps_calculate(AVFormatContext *ic) if (num && (!ref_rate.num || (double)num/(12*1001) < 1.01 * av_q2d(ref_rate))) av_reduce(&st->r_frame_rate.num, &st->r_frame_rate.den, num, 12*1001, INT_MAX); } + if ( !st->avg_frame_rate.num + && st->r_frame_rate.num && st->info->rfps_duration_sum + && st->info->codec_info_duration <= 0 + && st->info->duration_count > 2 + && fabs(1.0 / (av_q2d(st->r_frame_rate) * av_q2d(st->time_base)) - st->info->rfps_duration_sum / (double)st->info->duration_count) <= 1.0 + ) { + av_log(ic, AV_LOG_DEBUG, "Setting avg frame rate based on r frame rate\n"); + st->avg_frame_rate = st->r_frame_rate; + } av_freep(&st->info->duration_error); st->info->last_dts = AV_NOPTS_VALUE; |