From 93e6b23c9f489c1e0745769ae2ba00469f7cfb91 Mon Sep 17 00:00:00 2001 From: Rostislav Pehlivanov Date: Mon, 12 Oct 2015 23:33:07 +0100 Subject: aacenc: shorten name of ff_aac_adjust_common_prediction To keep it similar to the other functions which are all named *_pred. --- libavcodec/aacenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/aacenc.c') diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c index 78e292b246..11e0e9e902 100644 --- a/libavcodec/aacenc.c +++ b/libavcodec/aacenc.c @@ -718,8 +718,8 @@ static int aac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, s->coder->search_for_pred(s, sce); if (cpe->ch[ch].ics.predictor_present) pred_mode = 1; } - if (s->coder->adjust_common_prediction) - s->coder->adjust_common_prediction(s, cpe); + if (s->coder->adjust_common_pred) + s->coder->adjust_common_pred(s, cpe); for (ch = 0; ch < chans; ch++) { sce = &cpe->ch[ch]; s->cur_channel = start_ch + ch; -- cgit v1.2.3