Commit 4b15bba2 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/utils: Fix number suffixes in tb_unreliable()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0ff8fe10
...@@ -2825,8 +2825,8 @@ static int get_std_framerate(int i) ...@@ -2825,8 +2825,8 @@ static int get_std_framerate(int i)
* And there are "variable" fps files this needs to detect as well. */ * And there are "variable" fps files this needs to detect as well. */
static int tb_unreliable(AVCodecContext *c) static int tb_unreliable(AVCodecContext *c)
{ {
if (c->time_base.den >= 101L * c->time_base.num || if (c->time_base.den >= 101LL * c->time_base.num ||
c->time_base.den < 5L * c->time_base.num || c->time_base.den < 5LL * c->time_base.num ||
// c->codec_tag == AV_RL32("DIVX") || // c->codec_tag == AV_RL32("DIVX") ||
// c->codec_tag == AV_RL32("XVID") || // c->codec_tag == AV_RL32("XVID") ||
c->codec_tag == AV_RL32("mp4v") || c->codec_tag == AV_RL32("mp4v") ||
......
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