summaryrefslogtreecommitdiff
path: root/libavcodec/mpeg12data.h
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-11-12 23:14:20 +0000
committerMåns Rullgård <mans@mansr.com>2006-11-12 23:14:20 +0000
commit7b7abda3b3a73501879417b84e331addb26df09e (patch)
tree8ffff1aa18cd081f5fd3d6f8cc74e60dacdac932 /libavcodec/mpeg12data.h
parent1d5039574693da5eff80f8f50a283b5261fd5358 (diff)
make more tables static
Originally committed as revision 6996 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg12data.h')
-rw-r--r--libavcodec/mpeg12data.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpeg12data.h b/libavcodec/mpeg12data.h
index f763bf3d13..6c96a495b6 100644
--- a/libavcodec/mpeg12data.h
+++ b/libavcodec/mpeg12data.h
@@ -54,10 +54,10 @@ static const unsigned char vlc_dc_lum_bits[12] = {
3, 2, 2, 3, 3, 4, 5, 6, 7, 8, 9, 9,
};
-const uint16_t vlc_dc_chroma_code[12] = {
+static const uint16_t vlc_dc_chroma_code[12] = {
0x0, 0x1, 0x2, 0x6, 0xe, 0x1e, 0x3e, 0x7e, 0xfe, 0x1fe, 0x3fe, 0x3ff,
};
-const unsigned char vlc_dc_chroma_bits[12] = {
+static const unsigned char vlc_dc_chroma_bits[12] = {
2, 2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10,
};