summaryrefslogtreecommitdiff
path: root/libavcodec/avfft.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-05-02 10:20:12 +0200
committerDiego Biurrun <diego@biurrun.de>2013-05-05 20:51:28 +0200
commitbd8ac882140a38868c33c000a430a1292a352533 (patch)
tree0009a4c346a005a0c5dcd51f2b1464ffae65fc37 /libavcodec/avfft.c
parent7abd35a1ffaecfd79fa07b801621ee11ab595c43 (diff)
avcodec: Add av_cold attributes to end functions missing them
Diffstat (limited to 'libavcodec/avfft.c')
-rw-r--r--libavcodec/avfft.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/avfft.c b/libavcodec/avfft.c
index 8ef57974b6..513f57e5f4 100644
--- a/libavcodec/avfft.c
+++ b/libavcodec/avfft.c
@@ -45,7 +45,7 @@ void av_fft_calc(FFTContext *s, FFTComplex *z)
s->fft_calc(s, z);
}
-void av_fft_end(FFTContext *s)
+av_cold void av_fft_end(FFTContext *s)
{
if (s) {
ff_fft_end(s);
@@ -80,7 +80,7 @@ void av_mdct_calc(FFTContext *s, FFTSample *output, const FFTSample *input)
s->mdct_calc(s, output, input);
}
-void av_mdct_end(FFTContext *s)
+av_cold void av_mdct_end(FFTContext *s)
{
if (s) {
ff_mdct_end(s);
@@ -107,7 +107,7 @@ void av_rdft_calc(RDFTContext *s, FFTSample *data)
s->rdft_calc(s, data);
}
-void av_rdft_end(RDFTContext *s)
+av_cold void av_rdft_end(RDFTContext *s)
{
if (s) {
ff_rdft_end(s);
@@ -134,7 +134,7 @@ void av_dct_calc(DCTContext *s, FFTSample *data)
s->dct_calc(s, data);
}
-void av_dct_end(DCTContext *s)
+av_cold void av_dct_end(DCTContext *s)
{
if (s) {
ff_dct_end(s);