summaryrefslogtreecommitdiffstats
path: root/libavcodec/ac3enc_fixed.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-01-04 11:59:38 +0100
committerDiego Biurrun <diego@biurrun.de>2016-11-28 17:19:30 +0100
commiteb135516e6f61481877163bfc55a3161d4544092 (patch)
tree45a65b0c7b403729a59bdd488bf83bfdc3d49a8b /libavcodec/ac3enc_fixed.c
parentf0d3e43bd77b3194a28d75884cf83083b188bf30 (diff)
downloadffmpeg-streaming-eb135516e6f61481877163bfc55a3161d4544092.zip
ffmpeg-streaming-eb135516e6f61481877163bfc55a3161d4544092.tar.gz
ac3enc: Avoid unnecessary macro indirections
Diffstat (limited to 'libavcodec/ac3enc_fixed.c')
-rw-r--r--libavcodec/ac3enc_fixed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ac3enc_fixed.c b/libavcodec/ac3enc_fixed.c
index c1cf825..cb1c58d 100644
--- a/libavcodec/ac3enc_fixed.c
+++ b/libavcodec/ac3enc_fixed.c
@@ -104,7 +104,7 @@ static CoefType calc_cpl_coord(CoefSumType energy_ch, CoefSumType energy_cpl)
*
* @param s AC-3 encoder private context
*/
-av_cold void AC3_NAME(mdct_end)(AC3EncodeContext *s)
+av_cold void ff_ac3_fixed_mdct_end(AC3EncodeContext *s)
{
ff_mdct_end(&s->mdct);
}
@@ -116,7 +116,7 @@ av_cold void AC3_NAME(mdct_end)(AC3EncodeContext *s)
* @param s AC-3 encoder private context
* @return 0 on success, negative error code on failure
*/
-av_cold int AC3_NAME(mdct_init)(AC3EncodeContext *s)
+av_cold int ff_ac3_fixed_mdct_init(AC3EncodeContext *s)
{
int ret = ff_mdct_init(&s->mdct, 9, 0, -1.0);
s->mdct_window = ff_ac3_window;
OpenPOWER on IntegriCloud