diff options
author | Timothy Gu <timothygu99@gmail.com> | 2015-08-22 06:11:23 +0100 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2015-08-22 06:11:23 +0100 |
commit | 21dd5279c3c48aec82fe566744b4a3fb4f729c60 (patch) | |
tree | 05c8f3070d208a2e35dc89524181c7814d7267c6 /libavcodec/aacenc_pred.c | |
parent | d4401a9e0d667ec7565aafcb61d77e0fd3f06bbc (diff) | |
download | ffmpeg-21dd5279c3c48aec82fe566744b4a3fb4f729c60.tar.gz |
aacenc: Add missing ff_ prefixes
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Reviewed-by: Ganesh Ajjanagadde <gajjanag@mit.edu>
Diffstat (limited to 'libavcodec/aacenc_pred.c')
-rw-r--r-- | libavcodec/aacenc_pred.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/aacenc_pred.c b/libavcodec/aacenc_pred.c index 5fbcd294c3..c638b70b18 100644 --- a/libavcodec/aacenc_pred.c +++ b/libavcodec/aacenc_pred.c @@ -125,7 +125,7 @@ static inline void reset_predictor_group(SingleChannelElement *sce, int group_nu reset_predict_state(&ps[i]); } -void apply_main_pred(AACEncContext *s, SingleChannelElement *sce) +void ff_aac_apply_main_pred(AACEncContext *s, SingleChannelElement *sce) { int sfb, k; @@ -185,7 +185,7 @@ static inline void prepare_predictors(SingleChannelElement *sce) predict(&sce->predictor_state[k], &sce->coeffs[k], &sce->prcoeffs[k], 0); } -void update_main_pred(AACEncContext *s, SingleChannelElement *sce, ChannelElement *cpe) +void ff_aac_update_main_pred(AACEncContext *s, SingleChannelElement *sce, ChannelElement *cpe) { int k; @@ -218,7 +218,7 @@ static inline int update_counters(IndividualChannelStream *ics, int inc) return rg; } -void adjust_common_prediction(AACEncContext *s, ChannelElement *cpe) +void ff_aac_adjust_common_prediction(AACEncContext *s, ChannelElement *cpe) { int start, w, g, count = 0; SingleChannelElement *sce0 = &cpe->ch[0]; @@ -289,7 +289,7 @@ static void update_pred_resets(SingleChannelElement *sce) } } -void search_for_pred(AACEncContext *s, SingleChannelElement *sce) +void ff_aac_search_for_pred(AACEncContext *s, SingleChannelElement *sce) { int sfb, i, count = 0; float *O34 = &s->scoefs[256*0], *P34 = &s->scoefs[256*1]; @@ -349,7 +349,7 @@ void search_for_pred(AACEncContext *s, SingleChannelElement *sce) /** * Encoder predictors data. */ -void encode_main_pred(AACEncContext *s, SingleChannelElement *sce) +void ff_aac_encode_main_pred(AACEncContext *s, SingleChannelElement *sce) { int sfb; |