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_pred.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_pred.c')
-rw-r--r-- | libavcodec/aacenc_pred.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacenc_pred.c b/libavcodec/aacenc_pred.c index 7d141930e8..524ec66e6a 100644 --- a/libavcodec/aacenc_pred.c +++ b/libavcodec/aacenc_pred.c @@ -148,7 +148,7 @@ static inline int update_counters(IndividualChannelStream *ics, int inc) return 0; } -void ff_aac_adjust_common_prediction(AACEncContext *s, ChannelElement *cpe) +void ff_aac_adjust_common_pred(AACEncContext *s, ChannelElement *cpe) { int start, w, w2, g, i, count = 0; SingleChannelElement *sce0 = &cpe->ch[0]; |