summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-05-10 10:14:58 +0000
committerAurelien Jacobs <aurel@gnuage.org>2007-05-10 10:14:58 +0000
commit82dc348bd18f76d9aa8c3fc5000ace659688e780 (patch)
tree9d63638469bf99559e02a9d43d26df181d8e412f /libavcodec
parent0d6c07329e6a1764bd135b7b30cccba76d14e6cb (diff)
those tables don't need to be extern
Originally committed as revision 8972 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/msmpeg4tab.h8
-rw-r--r--libavcodec/vc1.c2
2 files changed, 4 insertions, 6 deletions
diff --git a/libavcodec/msmpeg4tab.h b/libavcodec/msmpeg4tab.h
index 495e52e458..dda7fbdaa0 100644
--- a/libavcodec/msmpeg4tab.h
+++ b/libavcodec/msmpeg4tab.h
@@ -65,7 +65,7 @@ static const uint32_t table_mb_non_intra[128][2] = {
/* dc table 0 */
-const uint32_t ff_table0_dc_lum[120][2] = {
+static const uint32_t ff_table0_dc_lum[120][2] = {
{ 0x1, 1 },{ 0x1, 2 },{ 0x1, 4 },{ 0x1, 5 },
{ 0x5, 5 },{ 0x7, 5 },{ 0x8, 6 },{ 0xc, 6 },
{ 0x0, 7 },{ 0x2, 7 },{ 0x12, 7 },{ 0x1a, 7 },
@@ -98,7 +98,7 @@ const uint32_t ff_table0_dc_lum[120][2] = {
{ 0x6078c, 24 },{ 0x6078d, 24 },{ 0x6078e, 24 },{ 0x6078f, 24 },
};
-const uint32_t ff_table0_dc_chroma[120][2] = {
+static const uint32_t ff_table0_dc_chroma[120][2] = {
{ 0x0, 2 },{ 0x1, 2 },{ 0x5, 3 },{ 0x9, 4 },
{ 0xd, 4 },{ 0x11, 5 },{ 0x1d, 5 },{ 0x1f, 5 },
{ 0x21, 6 },{ 0x31, 6 },{ 0x38, 6 },{ 0x33, 6 },
@@ -133,7 +133,7 @@ const uint32_t ff_table0_dc_chroma[120][2] = {
/* dc table 1 */
-const uint32_t ff_table1_dc_lum[120][2] = {
+static const uint32_t ff_table1_dc_lum[120][2] = {
{ 0x2, 2 },{ 0x3, 2 },{ 0x3, 3 },{ 0x2, 4 },
{ 0x5, 4 },{ 0x1, 5 },{ 0x3, 5 },{ 0x8, 5 },
{ 0x0, 6 },{ 0x5, 6 },{ 0xd, 6 },{ 0xf, 6 },
@@ -166,7 +166,7 @@ const uint32_t ff_table1_dc_lum[120][2] = {
{ 0x1e6964, 26 },{ 0x1e6965, 26 },{ 0x1e6966, 26 },{ 0x1e6967, 26 },
};
-const uint32_t ff_table1_dc_chroma[120][2] = {
+static const uint32_t ff_table1_dc_chroma[120][2] = {
{ 0x0, 2 },{ 0x1, 2 },{ 0x4, 3 },{ 0x7, 3 },
{ 0xb, 4 },{ 0xd, 4 },{ 0x15, 5 },{ 0x28, 6 },
{ 0x30, 6 },{ 0x32, 6 },{ 0x52, 7 },{ 0x62, 7 },
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index 215e510fc7..bcff727b38 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -37,8 +37,6 @@
#undef NDEBUG
#include <assert.h>
-extern const uint32_t ff_table0_dc_lum[120][2], ff_table1_dc_lum[120][2];
-extern const uint32_t ff_table0_dc_chroma[120][2], ff_table1_dc_chroma[120][2];
#define MB_INTRA_VLC_BITS 9
#define DC_VLC_BITS 9
#define AC_VLC_BITS 9