FFmpeg
Loading...
Searching...
No Matches
audio_convert_init.c
Go to the documentation of this file.
1/*
2 * This file is part of libswresample.
3 *
4 * libswresample is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * libswresample is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with libswresample; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#include <stdint.h>
20
21#include "config.h"
23#include "libavutil/cpu.h"
25#include "libavutil/samplefmt.h"
28
29void swri_oldapi_conv_flt_to_s16_neon(int16_t *dst, const float *src, int len);
30void swri_oldapi_conv_fltp_to_s16_2ch_neon(int16_t *dst, float *const *src, int len, int channels);
31void swri_oldapi_conv_fltp_to_s16_nch_neon(int16_t *dst, float *const *src, int len, int channels);
32
33static void conv_flt_to_s16_neon(uint8_t **dst, const uint8_t **src, int len){
34 swri_oldapi_conv_flt_to_s16_neon((int16_t*)*dst, (const float*)*src, len);
35}
36
37static void conv_fltp_to_s16_2ch_neon(uint8_t **dst, const uint8_t **src, int len){
38 swri_oldapi_conv_fltp_to_s16_2ch_neon((int16_t*)*dst, (float *const*)src, len, 2);
39}
40
41static void conv_fltp_to_s16_nch_neon(uint8_t **dst, const uint8_t **src, int len){
42 int channels;
44 ;
45 swri_oldapi_conv_fltp_to_s16_nch_neon((int16_t*)*dst, (float *const*)src, len, channels);
46}
47
49 enum AVSampleFormat out_fmt,
50 enum AVSampleFormat in_fmt,
51 int channels)
52{
54
55 ac->simd_f= NULL;
56
57 if (have_neon(cpu_flags)) {
58 if(out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLT || out_fmt == AV_SAMPLE_FMT_S16P && in_fmt == AV_SAMPLE_FMT_FLTP)
60 if(out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLTP && channels == 2)
62 if(out_fmt == AV_SAMPLE_FMT_S16 && in_fmt == AV_SAMPLE_FMT_FLTP && channels > 2)
64 if(ac->simd_f)
66 }
67}
void swri_oldapi_conv_fltp_to_s16_nch_neon(int16_t *dst, float *const *src, int len, int channels)
void swri_oldapi_conv_fltp_to_s16_2ch_neon(int16_t *dst, float *const *src, int len, int channels)
static void conv_fltp_to_s16_2ch_neon(uint8_t **dst, const uint8_t **src, int len)
void swri_oldapi_conv_flt_to_s16_neon(int16_t *dst, const float *src, int len)
av_cold void swri_audio_convert_init_aarch64(struct AudioConvert *ac, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels)
static void conv_flt_to_s16_neon(uint8_t **dst, const uint8_t **src, int len)
static void conv_fltp_to_s16_nch_neon(uint8_t **dst, const uint8_t **src, int len)
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
#define SWR_CH_MAX
Definition af_amerge.c:37
channels
Definition aptx.h:31
Audio format conversion routines.
#define NULL
Definition coverity.c:32
AVSampleFormat
Audio sample formats.
Definition samplefmt.h:55
@ AV_SAMPLE_FMT_FLTP
float, planar
Definition samplefmt.h:66
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
Definition samplefmt.h:64
@ AV_SAMPLE_FMT_FLT
float
Definition samplefmt.h:60
@ AV_SAMPLE_FMT_S16
signed 16 bits
Definition samplefmt.h:58
#define have_neon(flags)
Definition cpu.h:26
Macro definitions for various function/variable attributes.
#define av_cold
Definition attributes.h:117
static atomic_int cpu_flags
Definition cpu.c:56
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
Definition cpu.c:109
int out_simd_align_mask
simd_func_type * simd_f
int in_simd_align_mask
#define src
Definition vp8dsp.c:248
int len