summaryrefslogtreecommitdiff
path: root/libavcodec/aacenc.c
diff options
context:
space:
mode:
authorNathan Caldwell <saintdev@gmail.com>2011-05-18 23:23:22 -0600
committerAlex Converse <alex.converse@gmail.com>2011-06-29 14:28:53 -0700
commitd3a6c2ab7e76f12f56932a087266b082dc1dc39b (patch)
treeed2a8354c89847e7e2a78b6e5da7956ecf2f1586 /libavcodec/aacenc.c
parent01344fe409da286cd377f9af610eb4c4888687ec (diff)
psymodel: Remove the single channel analysis function
Diffstat (limited to 'libavcodec/aacenc.c')
-rw-r--r--libavcodec/aacenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c
index 385c6aa994..dd8a83c537 100644
--- a/libavcodec/aacenc.c
+++ b/libavcodec/aacenc.c
@@ -572,7 +572,7 @@ static int aac_encode_frame(AVCodecContext *avctx,
put_bits(&s->pb, 4, chan_el_counter[tag]++);
for (ch = 0; ch < chans; ch++)
coeffs[ch] = cpe->ch[ch].coeffs;
- s->psy.model->analyze_group(&s->psy, start_ch, coeffs, wi);
+ s->psy.model->analyze(&s->psy, start_ch, coeffs, wi);
for (ch = 0; ch < chans; ch++) {
s->cur_channel = start_ch * 2 + ch;
s->coder->search_for_quantizers(avctx, s, &cpe->ch[ch], s->lambda);