From a4585e78340b8fa40a2cc56858e99c94888251a6 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Wed, 31 Mar 2010 14:13:49 +0000 Subject: Fix likely typo in r15937. Originally committed as revision 22746 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/h264enc.c') diff --git a/libavcodec/h264enc.c b/libavcodec/h264enc.c index e90bfb1542..ad874f3624 100644 --- a/libavcodec/h264enc.c +++ b/libavcodec/h264enc.c @@ -184,7 +184,7 @@ static inline int quantize_c(DCTELEM *block, uint8_t *scantable, int qscale, 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); -- cgit v1.2.3