mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-09 00:29:54 +00:00
avformat/utils: Fix number suffixes in tb_unreliable()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 4b15bba2ae
)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
25fc0faccb
commit
675fb3a8af
@ -2812,8 +2812,8 @@ static int get_std_framerate(int i)
|
||||
* And there are "variable" fps files this needs to detect as well. */
|
||||
static int tb_unreliable(AVCodecContext *c)
|
||||
{
|
||||
if (c->time_base.den >= 101L * c->time_base.num ||
|
||||
c->time_base.den < 5L * c->time_base.num ||
|
||||
if (c->time_base.den >= 101LL * c->time_base.num ||
|
||||
c->time_base.den < 5LL * c->time_base.num ||
|
||||
// c->codec_tag == AV_RL32("DIVX") ||
|
||||
// c->codec_tag == AV_RL32("XVID") ||
|
||||
c->codec_tag == AV_RL32("mp4v") ||
|
||||
|
Loading…
Reference in New Issue
Block a user