]> git.sesse.net Git - ffmpeg/commitdiff
ac3enc: Avoid unnecessary macro indirections
authorDiego Biurrun <diego@biurrun.de>
Mon, 4 Jan 2016 10:59:38 +0000 (11:59 +0100)
committerDiego Biurrun <diego@biurrun.de>
Mon, 28 Nov 2016 16:19:30 +0000 (17:19 +0100)
libavcodec/ac3enc_fixed.c

index c1cf8256b219ac8f203867dcc7b88cabf57e4f83..cb1c58d578080ff52e3c8de56fd11d2c48b13919 100644 (file)
@@ -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;