You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Fix likely typo in r15937.
Originally committed as revision 22746 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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);
|
||||||
|
Reference in New Issue
Block a user