diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-02-18 14:28:43 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-03-01 23:11:09 +0100 |
commit | 2f4b476e04160dad9472a61db2dd575471f39812 (patch) | |
tree | ba70dad866f24487bf8980f15418cb992d1727b6 /libavcodec/msmpeg4data.h | |
parent | eb727387fd41d0e6ae2a35a718701f454b940fb6 (diff) | |
download | ffmpeg-2f4b476e04160dad9472a61db2dd575471f39812.tar.gz |
msmpeg4: Split encoding backend code off from general backend code.
Diffstat (limited to 'libavcodec/msmpeg4data.h')
-rw-r--r-- | libavcodec/msmpeg4data.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/msmpeg4data.h b/libavcodec/msmpeg4data.h index c37664fab1..ca2dac14bd 100644 --- a/libavcodec/msmpeg4data.h +++ b/libavcodec/msmpeg4data.h @@ -59,6 +59,10 @@ extern const uint8_t ff_wmv1_scantable[WMV1_SCANTABLE_COUNT][64]; #define NB_RL_TABLES 6 extern RLTable ff_rl_table[NB_RL_TABLES]; +extern uint8_t ff_static_rl_table_store[NB_RL_TABLES][2][2 * MAX_RUN + MAX_LEVEL + 3]; + +extern uint32_t ff_v2_dc_lum_table[512][2]; +extern uint32_t ff_v2_dc_chroma_table[512][2]; extern const uint8_t ff_wmv1_y_dc_scale_table[32]; extern const uint8_t ff_wmv1_c_dc_scale_table[32]; |