2010-04-12 20:45:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010 Mans Rullgard <mans@mansr.com>
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2010-04-12 20:45:33 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2010-04-12 20:45:33 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2010-04-12 20:45:33 +00:00
|
|
|
* 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
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2010-04-12 20:45:33 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2012-04-21 14:31:10 +00:00
|
|
|
|
|
|
|
#include "libavutil/arm/cpu.h"
|
2010-04-12 20:45:33 +00:00
|
|
|
#include "libavutil/attributes.h"
|
|
|
|
#include "libavcodec/dcadsp.h"
|
|
|
|
|
2013-07-19 08:03:32 +00:00
|
|
|
void ff_dca_lfe_fir_vfp(float *out, const float *in, const float *coefs,
|
|
|
|
int decifactor, float scale);
|
2013-07-15 17:28:17 +00:00
|
|
|
void ff_dca_qmf_32_subbands_vfp(float samples_in[32][8], int sb_act,
|
|
|
|
SynthFilterContext *synth, FFTContext *imdct,
|
|
|
|
float synth_buf_ptr[512],
|
|
|
|
int *synth_buf_offset, float synth_buf2[32],
|
|
|
|
const float window[512], float *samples_out,
|
|
|
|
float raXin[32], float scale);
|
2010-04-12 20:45:33 +00:00
|
|
|
void ff_dca_lfe_fir_neon(float *out, const float *in, const float *coefs,
|
2011-01-31 19:26:02 +00:00
|
|
|
int decifactor, float scale);
|
2010-04-12 20:45:33 +00:00
|
|
|
|
2013-08-23 16:15:32 +00:00
|
|
|
void ff_synth_filter_float_vfp(FFTContext *imdct,
|
|
|
|
float *synth_buf_ptr, int *synth_buf_offset,
|
|
|
|
float synth_buf2[32], const float window[512],
|
|
|
|
float out[32], const float in[32],
|
|
|
|
float scale);
|
|
|
|
|
|
|
|
void ff_synth_filter_float_neon(FFTContext *imdct,
|
|
|
|
float *synth_buf_ptr, int *synth_buf_offset,
|
|
|
|
float synth_buf2[32], const float window[512],
|
|
|
|
float out[32], const float in[32],
|
|
|
|
float scale);
|
|
|
|
|
2012-03-30 21:34:22 +00:00
|
|
|
av_cold void ff_dcadsp_init_arm(DCADSPContext *s)
|
2010-04-12 20:45:33 +00:00
|
|
|
{
|
2012-04-21 14:31:10 +00:00
|
|
|
int cpu_flags = av_get_cpu_flags();
|
|
|
|
|
2013-07-15 17:28:17 +00:00
|
|
|
if (have_vfp(cpu_flags) && !have_vfpv3(cpu_flags)) {
|
2013-07-19 08:03:32 +00:00
|
|
|
s->lfe_fir = ff_dca_lfe_fir_vfp;
|
2013-07-15 17:28:17 +00:00
|
|
|
s->qmf_32_subbands = ff_dca_qmf_32_subbands_vfp;
|
|
|
|
}
|
2012-04-21 14:31:10 +00:00
|
|
|
if (have_neon(cpu_flags))
|
2010-04-12 20:45:33 +00:00
|
|
|
s->lfe_fir = ff_dca_lfe_fir_neon;
|
|
|
|
}
|
2013-08-23 16:15:32 +00:00
|
|
|
|
|
|
|
av_cold void ff_synth_filter_init_arm(SynthFilterContext *s)
|
|
|
|
{
|
|
|
|
int cpu_flags = av_get_cpu_flags();
|
|
|
|
|
|
|
|
if (have_vfp(cpu_flags) && !have_vfpv3(cpu_flags))
|
|
|
|
s->synth_filter_float = ff_synth_filter_float_vfp;
|
|
|
|
if (have_neon(cpu_flags))
|
|
|
|
s->synth_filter_float = ff_synth_filter_float_neon;
|
|
|
|
}
|