diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-15 12:58:41 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-15 14:38:03 +0200 |
commit | c591d4575a6f97fbbe6145304b1ea960e8e81e14 (patch) | |
tree | 7cdb919202f6fd9e2f9f0823640ba1b9d862e5d0 /libavcodec/mpeg4video.h | |
parent | aa2ba8c99e5708884a56aea9c1d96e014866f8a3 (diff) | |
download | ffmpeg-c591d4575a6f97fbbe6145304b1ea960e8e81e14.tar.gz |
avcodec: Replace local extern declarations for tables with header #includes
Diffstat (limited to 'libavcodec/mpeg4video.h')
-rw-r--r-- | libavcodec/mpeg4video.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/mpeg4video.h b/libavcodec/mpeg4video.h index ae3880fe3f..214aa81d6b 100644 --- a/libavcodec/mpeg4video.h +++ b/libavcodec/mpeg4video.h @@ -63,6 +63,9 @@ 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. */ |