summaryrefslogtreecommitdiff
path: root/libavcodec/aacsbr.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-02-09 16:19:27 +0100
committerDiego Biurrun <diego@biurrun.de>2013-02-23 20:13:47 +0100
commit94ee7da08d2af875f485d4f784d50726cf3078f4 (patch)
tree91f7945da0a8b59af94f831a65f576e4d1efabf8 /libavcodec/aacsbr.h
parentb5f536d24b5ae360503935c34d5d59fa5181b94d (diff)
Remove pointless av_cold attributes in header files
The init functions marked as av_cold have to be executed in any case, so there is no gain from trying to mark paths leading to such functions as unlikely.
Diffstat (limited to 'libavcodec/aacsbr.h')
-rw-r--r--libavcodec/aacsbr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/aacsbr.h b/libavcodec/aacsbr.h
index 153070d3f2..9bc5e29d33 100644
--- a/libavcodec/aacsbr.h
+++ b/libavcodec/aacsbr.h
@@ -34,11 +34,11 @@
#include "sbr.h"
/** Initialize SBR. */
-av_cold void ff_aac_sbr_init(void);
+void ff_aac_sbr_init(void);
/** Initialize one SBR context. */
-av_cold void ff_aac_sbr_ctx_init(AACContext *ac, SpectralBandReplication *sbr);
+void ff_aac_sbr_ctx_init(AACContext *ac, SpectralBandReplication *sbr);
/** Close one SBR context. */
-av_cold void ff_aac_sbr_ctx_close(SpectralBandReplication *sbr);
+void ff_aac_sbr_ctx_close(SpectralBandReplication *sbr);
/** Decode one SBR element. */
int ff_decode_sbr_extension(AACContext *ac, SpectralBandReplication *sbr,
GetBitContext *gb, int crc, int cnt, int id_aac);