Mercurial > libavcodec.hg
changeset 11564:a9780299ef48 libavcodec
Fix likely typo in r15937.
author | cehoyos |
---|---|
date | Wed, 31 Mar 2010 14:13:49 +0000 |
parents | 5111783be6ad |
children | 2baae9246958 |
files | h264enc.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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);