diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-07-17 13:35:21 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-07-17 17:32:37 +0200 |
commit | 9cab9421ce3f6254e695b2b2bd31d28099162daf (patch) | |
tree | f9567850dae54c0f36564a7b92c12da6f64c1609 /libavcodec | |
parent | 0218808d4980b794c78f57931d671508aed500b5 (diff) | |
download | ffmpeg-9cab9421ce3f6254e695b2b2bd31d28099162daf.tar.gz |
vc1: remove disabled code
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vc1data.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libavcodec/vc1data.h b/libavcodec/vc1data.h index 1ccc9bbf6e..131fd3a0ca 100644 --- a/libavcodec/vc1data.h +++ b/libavcodec/vc1data.h @@ -74,20 +74,11 @@ extern VLC ff_vc1_ac_coeff_table[8]; //@} -#if 0 //original bfraction from vc9data.h, not conforming to standard -/* Denominator used for ff_vc1_bfraction_lut */ -#define B_FRACTION_DEN 840 - -/* bfraction is fractional, we scale to the GCD 3*5*7*8 = 840 */ -extern const int16_t ff_vc1_bfraction_lut[23]; -#else /* Denominator used for ff_vc1_bfraction_lut */ #define B_FRACTION_DEN 256 /* pre-computed scales for all bfractions and base=256 */ extern const int16_t ff_vc1_bfraction_lut[23]; -#endif - extern const uint8_t ff_vc1_bfraction_bits[23]; extern const uint8_t ff_vc1_bfraction_codes[23]; |