diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-06 10:27:54 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-06 10:28:27 +0200 |
commit | b50ab3a4c7a1225862dcf0f0bd00ffef6acfdcbb (patch) | |
tree | 38f6b0ca525e426f0ed87f8be0177462487e6c76 /libavcodec/avfft.c | |
parent | 5c2ccf83df3bfea03c843910c41ee99bd4d64129 (diff) | |
parent | bd8ac882140a38868c33c000a430a1292a352533 (diff) | |
download | ffmpeg-b50ab3a4c7a1225862dcf0f0bd00ffef6acfdcbb.tar.gz |
Merge commit 'bd8ac882140a38868c33c000a430a1292a352533'
* commit 'bd8ac882140a38868c33c000a430a1292a352533':
avcodec: Add av_cold attributes to end functions missing them
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/avfft.c')
-rw-r--r-- | libavcodec/avfft.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/avfft.c b/libavcodec/avfft.c index 237b3890b6..26b3d4b2d2 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); |