diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-05-18 17:09:46 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-05-18 17:09:46 +0000 |
commit | e96682e6f4c1fbddf468f9f051729332163c1db9 (patch) | |
tree | 6365d37b821ceb5e03f282ebf660f9f014903fca /libavcodec/svq1_cb.h | |
parent | 12cccabd0fedca3846f1381971aaffd30374bede (diff) | |
download | ffmpeg-e96682e6f4c1fbddf468f9f051729332163c1db9.tar.gz |
some of the warning fixes by (Michael Roitzsch <mroi at users dot sourceforge dot net>)
Originally committed as revision 3140 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/svq1_cb.h')
-rw-r--r-- | libavcodec/svq1_cb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/svq1_cb.h b/libavcodec/svq1_cb.h index 0f766aa882..c6735fe8ea 100644 --- a/libavcodec/svq1_cb.h +++ b/libavcodec/svq1_cb.h @@ -769,7 +769,7 @@ static const int8_t* const svq1_inter_codebooks[4] = { svq1_inter_codebook_8x4, svq1_inter_codebook_8x8 }; -static const int8_t const svq1_inter_codebook_sum[4][16*6] = { +static const int8_t svq1_inter_codebook_sum[4][16*6] = { { -1, 1, -2, 0, 1, -1, -1, -1, -2, -1, 1, -1, -1, 0, -1, -1, 0, -1, -1, -1, -1, 0, -1, 0, 0, 0, -3, 1, -1, 0, 1, -1, @@ -1543,7 +1543,7 @@ static const int8_t* const svq1_intra_codebooks[4] = { svq1_intra_codebook_8x4, svq1_intra_codebook_8x8 }; -static const int8_t const svq1_intra_codebook_sum[4][16*6] = { +static const int8_t svq1_intra_codebook_sum[4][16*6] = { { 0, 0, 0, -1, -1, -1, -1, -2, 0, -1, -1, 0, -1, 0, 1, 0, 1, 0, -1, 1, 0, 0, -1, 1, -1, 0, 0, 0, -1, 1, 0, 0, |