Commit 1ec26dd4 authored by cehoyos's avatar cehoyos

Fix likely typo in r15937.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22746 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6eae8935
...@@ -184,7 +184,7 @@ static inline int quantize_c(DCTELEM *block, uint8_t *scantable, int qscale, ...@@ -184,7 +184,7 @@ static inline int quantize_c(DCTELEM *block, uint8_t *scantable, int qscale,
int intra, int separate_dc) int intra, int separate_dc)
{ {
int i; int i;
const int * const quant_3Btable = quant_coeff[qscale]; const int * const quant_table = quant_coeff[qscale];
const int bias = intra ? (1 << QUANT_SHIFT) / 3 : (1 << QUANT_SHIFT) / 6; const int bias = intra ? (1 << QUANT_SHIFT) / 3 : (1 << QUANT_SHIFT) / 6;
const unsigned int threshold1 = (1 << QUANT_SHIFT) - bias - 1; const unsigned int threshold1 = (1 << QUANT_SHIFT) - bias - 1;
const unsigned int threshold2 = (threshold1 << 1); const unsigned int threshold2 = (threshold1 << 1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment