summaryrefslogtreecommitdiff
path: root/libavcodec/mpeg4video.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-01-09 17:22:37 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-01-09 17:22:37 +0000
commit0366b6e1996ccd959696887498863e895392d680 (patch)
treef863a29d87200d69186a7580a842bbb191b7b413 /libavcodec/mpeg4video.h
parent23b0072ad71941c0cf67398b511dfca8ef9b23d8 (diff)
Make some tables static again, i mistakely thought they would be used in several
places. Originally committed as revision 21111 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg4video.h')
-rw-r--r--libavcodec/mpeg4video.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/mpeg4video.h b/libavcodec/mpeg4video.h
index a335fa338a..bf87626571 100644
--- a/libavcodec/mpeg4video.h
+++ b/libavcodec/mpeg4video.h
@@ -58,19 +58,13 @@ extern const uint8_t ff_mpeg4_DCtab_lum[13][2];
extern const uint8_t ff_mpeg4_DCtab_chrom[13][2];
extern const uint16_t ff_mpeg4_intra_vlc[103][2];
-extern const int8_t ff_mpeg4_intra_level[102];
-extern const int8_t ff_mpeg4_intra_run[102];
extern RLTable ff_mpeg4_rl_intra;
/* Note this is identical to the intra rvlc except that it is reordered. */
extern const uint16_t inter_rvlc[170][2];
-extern const int8_t inter_rvlc_run[169];
-extern const int8_t inter_rvlc_level[169];
extern RLTable rvlc_rl_inter;
extern const uint16_t intra_rvlc[170][2];
-extern const int8_t intra_rvlc_run[169];
-extern const int8_t intra_rvlc_level[169];
extern RLTable rvlc_rl_intra;
extern const uint16_t sprite_trajectory_tab[15][2];