summaryrefslogtreecommitdiff
path: root/libavcodec/cfhd.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/cfhd.c')
-rw-r--r--libavcodec/cfhd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cfhd.c b/libavcodec/cfhd.c
index 36fdc840a6..611fae53d8 100644
--- a/libavcodec/cfhd.c
+++ b/libavcodec/cfhd.c
@@ -65,7 +65,7 @@ static av_cold int cfhd_init(AVCodecContext *avctx)
}
for (int i = 0; i < 256; i++)
- s->lut[1][i] = i + ((768 * i * i * i) / (256 * 256 * 256));
+ s->lut[1][i] = i + ((768LL * i * i * i) / (256 * 256 * 256));
return ff_cfhd_init_vlcs(s);
}