summaryrefslogtreecommitdiffstats
path: root/libavcodec/aacpsy.c
diff options
context:
space:
mode:
authorNathan Caldwell <saintdev@gmail.com>2011-03-17 19:33:05 -0600
committerAlex Converse <alex.converse@gmail.com>2011-03-17 21:01:08 -0700
commit350785a6621529c50771f4e7043b4d159a96ed26 (patch)
tree24450194b2fa18b45699061387a684821622a336 /libavcodec/aacpsy.c
parent0f999cfddb0746602288eabddf38679fd25a2ff7 (diff)
downloadffmpeg-streaming-350785a6621529c50771f4e7043b4d159a96ed26.zip
ffmpeg-streaming-350785a6621529c50771f4e7043b4d159a96ed26.tar.gz
aacenc: 10l, missed a reference when refactoring the psymodel.
Diffstat (limited to 'libavcodec/aacpsy.c')
-rw-r--r--libavcodec/aacpsy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacpsy.c b/libavcodec/aacpsy.c
index d9896ed..9938e37 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) {
OpenPOWER on IntegriCloud