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.h | |
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.h')
-rw-r--r-- | libavcodec/aacenc_pred.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/aacenc_pred.h b/libavcodec/aacenc_pred.h index dc93c827fc..0694c8a56c 100644 --- a/libavcodec/aacenc_pred.h +++ b/libavcodec/aacenc_pred.h @@ -42,10 +42,10 @@ /* Offset for the number of bits to encode normal coefficients */ #define PRICE_OFFSET 440 -void apply_main_pred(AACEncContext *s, SingleChannelElement *sce); -void update_main_pred(AACEncContext *s, SingleChannelElement *sce, ChannelElement *cpe); -void adjust_common_prediction(AACEncContext *s, ChannelElement *cpe); -void search_for_pred(AACEncContext *s, SingleChannelElement *sce); -void encode_main_pred(AACEncContext *s, SingleChannelElement *sce); +void ff_aac_apply_main_pred(AACEncContext *s, SingleChannelElement *sce); +void ff_aac_update_main_pred(AACEncContext *s, SingleChannelElement *sce, ChannelElement *cpe); +void ff_aac_adjust_common_prediction(AACEncContext *s, ChannelElement *cpe); +void ff_aac_search_for_pred(AACEncContext *s, SingleChannelElement *sce); +void ff_aac_encode_main_pred(AACEncContext *s, SingleChannelElement *sce); #endif /* AVCODEC_AACENC_PRED_H */ |