diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2015-10-12 23:33:07 +0100 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2015-10-12 23:33:07 +0100 |
commit | 93e6b23c9f489c1e0745769ae2ba00469f7cfb91 (patch) | |
tree | e101c37d8579229ce70ec9ca0636b6d7908146e8 /libavcodec/aacenc.c | |
parent | 65f5b96dd80519e2a539d19012c5a685e1ddbafd (diff) | |
download | ffmpeg-93e6b23c9f489c1e0745769ae2ba00469f7cfb91.tar.gz |
aacenc: shorten name of ff_aac_adjust_common_prediction
To keep it similar to the other functions which are all named *_pred.
Diffstat (limited to 'libavcodec/aacenc.c')
-rw-r--r-- | libavcodec/aacenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |