diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-01-30 22:28:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-01-30 22:28:11 +0000 |
commit | 9da235c80399a2a10aebcd38d81a371f4575767e (patch) | |
tree | ec18118f40077d7c5822e05535bbe49f87ecb861 /libavcodec/vc9.c | |
parent | 5e424311dd540835a5673c55473b094864a04759 (diff) | |
download | ffmpeg-9da235c80399a2a10aebcd38d81a371f4575767e.tar.gz |
100000l (typos in the #define for selecting the NORM6 method -> wasnt compiled, after fixing typos new method doesnt even compile -> swicth back to old until its fixed)
Originally committed as revision 3907 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc9.c')
-rw-r--r-- | libavcodec/vc9.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/vc9.c b/libavcodec/vc9.c index 7a6f2182cb..57d2e4f628 100644 --- a/libavcodec/vc9.c +++ b/libavcodec/vc9.c @@ -33,6 +33,9 @@ #include "mpegvideo.h" #include "vc9data.h" +#undef NDEBUG +#include <assert.h> + extern const uint32_t ff_table0_dc_lum[120][2], ff_table1_dc_lum[120][2]; extern const uint32_t ff_table0_dc_chroma[120][2], ff_table1_dc_chroma[120][2]; extern VLC ff_msmp4_dc_luma_vlc[2], ff_msmp4_dc_chroma_vlc[2]; @@ -139,7 +142,7 @@ static VLC vc9_norm6_vlc; #endif #if TILE_VLC_METHOD == 2 #define VC9_NORM6_FIRST_BITS 8 -#define VC9_NORM6_SECOND 8 +#define VC9_NORM6_SECOND_BITS 8 static VLC vc9_norm6_first, vc9_norm6_second; #endif /* Could be optimized, one table only needs 8 bits */ |