# HG changeset patch # User michael # Date 1194997398 0 # Node ID 1b2658f2024436a39962cf6865651c9ba27cee6a # Parent 6d33af177dfa03a3d9f07c2600f6266cd8fdb6a0 rename fps(frame per second) to tb(time base) to prevent confusion with the average fps and hopefully stop these "wrong framerate" bug reports diff -r 6d33af177dfa -r 1b2658f20244 utils.c --- a/utils.c Mon Nov 12 10:26:33 2007 +0000 +++ b/utils.c Tue Nov 13 23:43:18 2007 +0000 @@ -2525,11 +2525,11 @@ av_log(NULL, AV_LOG_INFO, ": %s", buf); if(st->codec->codec_type == CODEC_TYPE_VIDEO){ if(st->r_frame_rate.den && st->r_frame_rate.num) - av_log(NULL, AV_LOG_INFO, ", %5.2f fps(r)", av_q2d(st->r_frame_rate)); + av_log(NULL, AV_LOG_INFO, ", %5.2f tb(r)", av_q2d(st->r_frame_rate)); /* else if(st->time_base.den && st->time_base.num) - av_log(NULL, AV_LOG_INFO, ", %5.2f fps(m)", 1/av_q2d(st->time_base));*/ + av_log(NULL, AV_LOG_INFO, ", %5.2f tb(m)", 1/av_q2d(st->time_base));*/ else - av_log(NULL, AV_LOG_INFO, ", %5.2f fps(c)", 1/av_q2d(st->codec->time_base)); + av_log(NULL, AV_LOG_INFO, ", %5.2f tb(c)", 1/av_q2d(st->codec->time_base)); } av_log(NULL, AV_LOG_INFO, "\n"); }