FFmpeg
Loading...
Searching...
No Matches
af_volume_init.c
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg 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 * FFmpeg 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 FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#include "config.h"
21#include "libavutil/cpu.h"
22#include "libavutil/samplefmt.h"
23#include "libavutil/x86/cpu.h"
25
26void ff_scale_samples_s16_sse2(uint8_t *dst, const uint8_t *src, int len,
27 int volume);
28
29void ff_scale_samples_s32_sse2(uint8_t *dst, const uint8_t *src, int len,
30 int volume);
31void ff_scale_samples_s32_ssse3_atom(uint8_t *dst, const uint8_t *src, int len,
32 int volume);
33void ff_scale_samples_s32_avx(uint8_t *dst, const uint8_t *src, int len,
34 int volume);
35
37{
40
41 if (sample_fmt == AV_SAMPLE_FMT_S16) {
42 if (EXTERNAL_SSE2(cpu_flags) && vol->volume_i < 32768) {
44 vol->samples_align = 8;
45 }
46 } else if (sample_fmt == AV_SAMPLE_FMT_S32) {
49 vol->samples_align = 4;
50 }
53 vol->samples_align = 4;
54 }
57 vol->samples_align = 8;
58 }
59 }
60}
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
audio volume filter
void ff_scale_samples_s32_avx(uint8_t *dst, const uint8_t *src, int len, int volume)
void ff_scale_samples_s32_ssse3_atom(uint8_t *dst, const uint8_t *src, int len, int volume)
void ff_scale_samples_s32_sse2(uint8_t *dst, const uint8_t *src, int len, int volume)
void ff_scale_samples_s16_sse2(uint8_t *dst, const uint8_t *src, int len, int volume)
av_cold void ff_volume_init_x86(VolumeContext *vol)
enum AVSampleFormat av_get_packed_sample_fmt(enum AVSampleFormat sample_fmt)
Get the packed alternative form of the given sample format.
Definition samplefmt.c:77
AVSampleFormat
Audio sample formats.
Definition samplefmt.h:55
@ AV_SAMPLE_FMT_S32
signed 32 bits
Definition samplefmt.h:59
@ AV_SAMPLE_FMT_S16
signed 16 bits
Definition samplefmt.h:58
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
#define AV_CPU_FLAG_ATOM
Atom processor, some SSSE3 instructions are slower.
Definition cpu.h:46
#define EXTERNAL_SSSE3(flags)
Definition cpu.h:59
#define EXTERNAL_AVX_FAST(flags)
Definition cpu.h:65
#define EXTERNAL_SSE2(flags)
Definition cpu.h:53
int samples_align
Definition af_volume.h:87
enum AVSampleFormat sample_fmt
Definition af_volume.h:83
void(* scale_samples)(uint8_t *dst, const uint8_t *src, int nb_samples, int volume)
Definition af_volume.h:85
#define src
Definition vp8dsp.c:248
int len