diff h264enc.c @ 11564:a9780299ef48 libavcodec

Fix likely typo in r15937.
author cehoyos
date Wed, 31 Mar 2010 14:13:49 +0000
parents b94e1810ce4c
children
line wrap: on
line diff
--- a/h264enc.c	Wed Mar 31 12:29:58 2010 +0000
+++ b/h264enc.c	Wed Mar 31 14:13:49 2010 +0000
@@ -184,7 +184,7 @@
                              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);