summaryrefslogtreecommitdiff
path: root/libavcodec/mpc8.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2009-04-20 15:36:27 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2009-04-20 15:36:27 +0000
commit40039717171689b6802fa69b9a14679e69675302 (patch)
tree39e356f551f9d6e91378fd9ae87e99e89714c2c8 /libavcodec/mpc8.c
parent9292bd7725e190c6b46735be869ec09f068d7e6b (diff)
Compact and make constant two tables used by Musepack decoders
Originally committed as revision 18633 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpc8.c')
-rw-r--r--libavcodec/mpc8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpc8.c b/libavcodec/mpc8.c
index adee15f534..349a01e952 100644
--- a/libavcodec/mpc8.c
+++ b/libavcodec/mpc8.c
@@ -88,7 +88,7 @@ static int mpc8_get_mask(GetBitContext *gb, int size, int t)
return mask;
}
-static int vlc_offsets[13] = {
+static const uint16_t vlc_offsets[13] = {
0, 640, 1184, 1748, 2298, 2426, 2554, 3066, 3578, 4106, 4618, 5196, 5708
};