[FFmpeg-cvslog] aacenc: 10l, missed a reference when refactoring the psymodel.
Nathan Caldwell
git at videolan.org
Fri Mar 18 18:13:34 CET 2011
ffmpeg | branch: master | Nathan Caldwell <saintdev at gmail.com> | Thu Mar 17 19:33:05 2011 -0600| [350785a6621529c50771f4e7043b4d159a96ed26] | committer: Alex Converse
aacenc: 10l, missed a reference when refactoring the psymodel.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=350785a6621529c50771f4e7043b4d159a96ed26
---
libavcodec/aacpsy.c | 2 +-
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) {
More information about the ffmpeg-cvslog
mailing list