diff options
author | Nathan Caldwell | 2011-03-17 19:33:05 -0600 |
---|---|---|
committer | Alex Converse | 2011-03-17 21:01:08 -0700 |
commit | 350785a6621529c50771f4e7043b4d159a96ed26 (patch) | |
tree | 24450194b2fa18b45699061387a684821622a336 /libavcodec/aacpsy.c | |
parent | 0f999cfddb0746602288eabddf38679fd25a2ff7 (diff) |
aacenc: 10l, missed a reference when refactoring the psymodel.
Diffstat (limited to 'libavcodec/aacpsy.c')
-rw-r--r-- | libavcodec/aacpsy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacpsy.c b/libavcodec/aacpsy.c index d9896ed74f..9938e3710a 100644 --- a/libavcodec/aacpsy.c +++ b/libavcodec/aacpsy.c @@ -397,7 +397,7 @@ static void psy_3gpp_analyze(FFPsyContext *ctx, int channel, int i, w, g; const int num_bands = ctx->num_bands[wi->num_windows == 8]; const uint8_t *band_sizes = ctx->bands[wi->num_windows == 8]; - AacPsyCoeffs *coeffs = &pctx->psy_coef[wi->num_windows == 8]; + AacPsyCoeffs *coeffs = pctx->psy_coef[wi->num_windows == 8]; //calculate energies, initial thresholds and related values - 5.4.2 "Threshold Calculation" for (w = 0; w < wi->num_windows*16; w += 16) { |