Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2015-08-22 08:11:23 +0300
committerRostislav Pehlivanov <atomnuker@gmail.com>2015-08-22 08:11:23 +0300
commit21dd5279c3c48aec82fe566744b4a3fb4f729c60 (patch)
tree05c8f3070d208a2e35dc89524181c7814d7267c6 /libavcodec/aacenc_pred.h
parentd4401a9e0d667ec7565aafcb61d77e0fd3f06bbc (diff)
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.h10
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 */