summaryrefslogtreecommitdiff
path: root/libavcodec/mlz.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-08-26 23:27:08 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-09-21 16:26:55 +0200
commit0a2ca417a1d768ac2011e7f6c655d162051c3eb1 (patch)
treed99a94c373aa4e9ddf9dde2532cca6c6718b5e15 /libavcodec/mlz.h
parent955b818cf947473ec94a3fe8aa7f408b119fbbc9 (diff)
avcodec/mlz: Remove 'l' postfixes from numbers
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/mlz.h')
-rw-r--r--libavcodec/mlz.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/mlz.h b/libavcodec/mlz.h
index 158715e7ec..c3df52c9b4 100644
--- a/libavcodec/mlz.h
+++ b/libavcodec/mlz.h
@@ -26,12 +26,12 @@
#define CODE_UNSET -1
#define CODE_BIT_INIT 9
#define DIC_INDEX_INIT 512 // 2^9
-#define DIC_INDEX_MAX 32768l // 2^15
+#define DIC_INDEX_MAX 32768 // 2^15
#define FLUSH_CODE 256
#define FREEZE_CODE 257
#define FIRST_CODE 258
-#define MAX_CODE 32767l
-#define TABLE_SIZE 35023l // TABLE_SIZE must be a prime number
+#define MAX_CODE 32767
+#define TABLE_SIZE 35023 // TABLE_SIZE must be a prime number
/** Dictionary structure for mlz decompression
*/