X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Favfft.c;h=513f57e5f4044c25eef3ce8ca9832ebb5b45e146;hb=cab63a8b594cdc365bb2581a12b3ac8e6dd480b2;hp=7d5d08390f346867d80ee384432401dd37581d35;hpb=e3a28ea5a9268f70ccc0b3464b2acb1c3ee38e6f;p=ffmpeg diff --git a/libavcodec/avfft.c b/libavcodec/avfft.c index 7d5d08390f3..513f57e5f40 100644 --- a/libavcodec/avfft.c +++ b/libavcodec/avfft.c @@ -1,24 +1,27 @@ /* - * This file is part of FFmpeg. + * This file is part of Libav. * - * FFmpeg is free software; you can redistribute it and/or + * Libav is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * - * FFmpeg is distributed in the hope that it will be useful, + * Libav is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with FFmpeg; if not, write to the Free Software + * License along with Libav; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/attributes.h" #include "libavutil/mem.h" #include "avfft.h" #include "fft.h" +#include "rdft.h" +#include "dct.h" /* FFT */ @@ -42,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); @@ -77,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); @@ -101,10 +104,10 @@ RDFTContext *av_rdft_init(int nbits, enum RDFTransformType trans) void av_rdft_calc(RDFTContext *s, FFTSample *data) { - ff_rdft_calc(s, 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); @@ -128,10 +131,10 @@ DCTContext *av_dct_init(int nbits, enum DCTTransformType inverse) void av_dct_calc(DCTContext *s, FFTSample *data) { - ff_dct_calc(s, 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);