chromium/third_party/ffmpeg/libavcodec/avfft.c

/*
 * This file is part of FFmpeg.
 *
 * FFmpeg 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,
 * 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
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include <stddef.h>
#include <string.h>

#include "libavutil/attributes.h"
#include "libavutil/macros.h"
#include "libavutil/mem.h"
#include "libavutil/tx.h"
#include "avfft.h"

AVTXWrapper;

/* FFT */

FFTContext *av_fft_init(int nbits, int inverse)
{}

void av_fft_permute(FFTContext *s, FFTComplex *z)
{}

void av_fft_calc(FFTContext *s, FFTComplex *z)
{}

av_cold void av_fft_end(FFTContext *s)
{}

FFTContext *av_mdct_init(int nbits, int inverse, double scale)
{}

void av_imdct_calc(FFTContext *s, FFTSample *output, const FFTSample *input)
{}

void av_imdct_half(FFTContext *s, FFTSample *output, const FFTSample *input)
{}

void av_mdct_calc(FFTContext *s, FFTSample *output, const FFTSample *input)
{}

av_cold void av_mdct_end(FFTContext *s)
{}

RDFTContext *av_rdft_init(int nbits, enum RDFTransformType trans)
{}

void av_rdft_calc(RDFTContext *s, FFTSample *data)
{}

av_cold void av_rdft_end(RDFTContext *s)
{}

DCTContext *av_dct_init(int nbits, enum DCTTransformType inverse)
{}

void av_dct_calc(DCTContext *s, FFTSample *data)
{}

av_cold void av_dct_end(DCTContext *s)
{}