diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-07-06 15:19:35 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-07-06 15:19:35 +0000 |
commit | 5416616588e521311c863a89b69392ba9856b45e (patch) | |
tree | 43a4e30e71afa371e0206fa7d1f61810a54b036e /libavcodec/svq1_vlc.h | |
parent | b54bb84c3667763f438f6b66d22edf248975188d (diff) | |
download | ffmpeg-5416616588e521311c863a89b69392ba9856b45e.tar.gz |
split SVQ1 decoder and encoder in their own files
Originally committed as revision 9507 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq1_vlc.h')
-rw-r--r-- | libavcodec/svq1_vlc.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/svq1_vlc.h b/libavcodec/svq1_vlc.h index b7776e627e..3776158947 100644 --- a/libavcodec/svq1_vlc.h +++ b/libavcodec/svq1_vlc.h @@ -24,14 +24,14 @@ #include <stdint.h> /* values in this table range from 0..3; adjust retrieved value by +0 */ -static const uint8_t svq1_block_type_vlc[4][2] = { +const uint8_t ff_svq1_block_type_vlc[4][2] = { /* { code, length } */ { 0x1, 1 }, { 0x1, 2 }, { 0x1, 3 }, { 0x0, 3 } }; /* values in this table range from -1..6; adjust retrieved value by -1 */ -static const uint8_t svq1_intra_multistage_vlc[6][8][2] = { +const uint8_t ff_svq1_intra_multistage_vlc[6][8][2] = { /* { code, length } */ { { 0x1, 5 }, { 0x1, 1 }, { 0x3, 3 }, { 0x2, 3 }, @@ -55,7 +55,7 @@ static const uint8_t svq1_intra_multistage_vlc[6][8][2] = { }; /* values in this table range from -1..6; adjust retrieved value by -1 */ -static const uint8_t svq1_inter_multistage_vlc[6][8][2] = { +const uint8_t ff_svq1_inter_multistage_vlc[6][8][2] = { /* { code, length } */ { { 0x3, 2 }, { 0x5, 3 }, { 0x4, 3 }, { 0x3, 3 }, @@ -79,7 +79,7 @@ static const uint8_t svq1_inter_multistage_vlc[6][8][2] = { }; /* values in this table range from 0..255; adjust retrieved value by +0 */ -static const uint16_t svq1_intra_mean_vlc[256][2] = { +const uint16_t ff_svq1_intra_mean_vlc[256][2] = { /* { code, length } */ { 0x37, 6 }, { 0x56, 7 }, { 0x1, 17 }, { 0x1, 20 }, { 0x2, 20 }, { 0x3, 20 }, { 0x0, 20 }, { 0x4, 20 }, @@ -148,7 +148,7 @@ static const uint16_t svq1_intra_mean_vlc[256][2] = { }; /* values in this table range from -256..255; adjust retrieved value by -256 */ -static const uint16_t svq1_inter_mean_vlc[512][2] = { +const uint16_t ff_svq1_inter_mean_vlc[512][2] = { /* { code, length } */ { 0x5A, 22 }, { 0xD4, 22 }, { 0xD5, 22 }, { 0xD6, 22 }, { 0xD7, 22 }, { 0xD8, 22 }, { 0xD9, 22 }, { 0xDA, 22 }, |