summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-01 19:19:25 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-01 19:19:25 +0100
commit4b15bba2aec93776bfdc69a1bca42a4795a7d191 (patch)
treeb2250f010c55642bce04c68f4c4c4b43e1839179 /libavformat
parent0ff8fe10f2c33d7df49cc6c3a38ca9fbb0b76d0a (diff)
avformat/utils: Fix number suffixes in tb_unreliable()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 81c7a0dd6e..bbb1cf766d 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2825,8 +2825,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") ||