comparison vc1.c @ 4966:e6d4d3d478d6 libavcodec

those tables don't need to be extern
author aurel
date Thu, 10 May 2007 10:14:58 +0000
parents f9bb3aca0888
children 4dbe6578f811
comparison
equal deleted inserted replaced
4965:f9bb3aca0888 4966:e6d4d3d478d6
35 #include "msmpeg4data.h" 35 #include "msmpeg4data.h"
36 36
37 #undef NDEBUG 37 #undef NDEBUG
38 #include <assert.h> 38 #include <assert.h>
39 39
40 extern const uint32_t ff_table0_dc_lum[120][2], ff_table1_dc_lum[120][2];
41 extern const uint32_t ff_table0_dc_chroma[120][2], ff_table1_dc_chroma[120][2];
42 #define MB_INTRA_VLC_BITS 9 40 #define MB_INTRA_VLC_BITS 9
43 #define DC_VLC_BITS 9 41 #define DC_VLC_BITS 9
44 #define AC_VLC_BITS 9 42 #define AC_VLC_BITS 9
45 static const uint16_t table_mb_intra[64][2]; 43 static const uint16_t table_mb_intra[64][2];
46 44