summaryrefslogtreecommitdiff
path: root/libavcodec/h264enc.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2010-03-31 14:13:49 +0000
committerCarl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at>2010-03-31 14:13:49 +0000
commita4585e78340b8fa40a2cc56858e99c94888251a6 (patch)
tree61129e5b7bc060e6804f4d26ecfa39427b704b41 /libavcodec/h264enc.c
parentfe8344a276aa3179bac6807e543fd86cd6ee5aa8 (diff)
Fix likely typo in r15937.
Originally committed as revision 22746 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264enc.c')
-rw-r--r--libavcodec/h264enc.c2
1 files changed, 1 insertions, 1 deletions
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);