[FFmpeg-cvslog] r22746 - trunk/libavcodec/h264enc.c
cehoyos
subversion
Wed Mar 31 16:13:49 CEST 2010
Author: cehoyos
Date: Wed Mar 31 16:13:49 2010
New Revision: 22746
Log:
Fix likely typo in r15937.
Modified:
trunk/libavcodec/h264enc.c
Modified: trunk/libavcodec/h264enc.c
==============================================================================
--- trunk/libavcodec/h264enc.c Wed Mar 31 14:55:16 2010 (r22745)
+++ trunk/libavcodec/h264enc.c Wed Mar 31 16:13:49 2010 (r22746)
@@ -184,7 +184,7 @@ static inline int quantize_c(DCTELEM *bl
int intra, int separate_dc)
{
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 unsigned int threshold1 = (1 << QUANT_SHIFT) - bias - 1;
const unsigned int threshold2 = (threshold1 << 1);
More information about the ffmpeg-cvslog
mailing list