Main Page
Related Pages
Modules
Data Structures
Files
Examples
File List
Globals
libavfilter
x86
af_volume_init.c
Go to the documentation of this file.
1
/*
2
* This file is part of Libav.
3
*
4
* Libav 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
* Libav 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 Libav; 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"
20
#include "
libavutil/cpu.h
"
21
#include "
libavutil/samplefmt.h
"
22
#include "
libavutil/x86/cpu.h
"
23
#include "
libavfilter/af_volume.h
"
24
25
void
ff_scale_samples_s16_sse2
(
uint8_t
*dst,
const
uint8_t
*src,
int
len
,
26
int
volume);
27
28
void
ff_scale_samples_s32_sse2
(
uint8_t
*dst,
const
uint8_t
*src,
int
len
,
29
int
volume);
30
void
ff_scale_samples_s32_ssse3_atom
(
uint8_t
*dst,
const
uint8_t
*src,
int
len
,
31
int
volume);
32
void
ff_scale_samples_s32_avx
(
uint8_t
*dst,
const
uint8_t
*src,
int
len
,
33
int
volume);
34
35
void
ff_volume_init_x86
(
VolumeContext
*vol)
36
{
37
int
mm_flags =
av_get_cpu_flags
();
38
enum
AVSampleFormat
sample_fmt
=
av_get_packed_sample_fmt
(vol->
sample_fmt
);
39
40
if
(sample_fmt ==
AV_SAMPLE_FMT_S16
) {
41
if
(
EXTERNAL_SSE2
(mm_flags) && vol->
volume_i
< 32768) {
42
vol->
scale_samples
=
ff_scale_samples_s16_sse2
;
43
vol->
samples_align
= 8;
44
}
45
}
else
if
(sample_fmt ==
AV_SAMPLE_FMT_S32
) {
46
if
(
EXTERNAL_SSE2
(mm_flags)) {
47
vol->
scale_samples
=
ff_scale_samples_s32_sse2
;
48
vol->
samples_align
= 4;
49
}
50
if
(
EXTERNAL_SSSE3
(mm_flags) && mm_flags &
AV_CPU_FLAG_ATOM
) {
51
vol->
scale_samples
=
ff_scale_samples_s32_ssse3_atom
;
52
vol->
samples_align
= 4;
53
}
54
if
(
EXTERNAL_AVX
(mm_flags)) {
55
vol->
scale_samples
=
ff_scale_samples_s32_avx
;
56
vol->
samples_align
= 8;
57
}
58
}
59
}
ff_scale_samples_s16_sse2
void ff_scale_samples_s16_sse2(uint8_t *dst, const uint8_t *src, int len, int volume)
AV_CPU_FLAG_ATOM
#define AV_CPU_FLAG_ATOM
cpu.h
samplefmt.h
AV_SAMPLE_FMT_S16
signed 16 bits
Definition:
samplefmt.h:52
VolumeContext::volume_i
int volume_i
Definition:
af_volume.h:43
uint8_t
uint8_t
Definition:
audio_convert.c:194
VolumeContext::samples_align
int samples_align
Definition:
af_volume.h:50
VolumeContext::scale_samples
void(* scale_samples)(uint8_t *dst, const uint8_t *src, int nb_samples, int volume)
Definition:
af_volume.h:48
EXTERNAL_SSE2
#define EXTERNAL_SSE2(flags)
Definition:
cpu.h:36
af_volume.h
audio volume filter
ff_scale_samples_s32_avx
void ff_scale_samples_s32_avx(uint8_t *dst, const uint8_t *src, int len, int volume)
AV_SAMPLE_FMT_S32
signed 32 bits
Definition:
samplefmt.h:53
ff_scale_samples_s32_ssse3_atom
void ff_scale_samples_s32_ssse3_atom(uint8_t *dst, const uint8_t *src, int len, int volume)
av_get_packed_sample_fmt
enum AVSampleFormat av_get_packed_sample_fmt(enum AVSampleFormat sample_fmt)
Get the packed alternative form of the given sample format.
Definition:
samplefmt.c:64
VolumeContext::sample_fmt
enum AVSampleFormat sample_fmt
Definition:
af_volume.h:46
VolumeContext
Definition:
af_volume.h:38
sample_fmt
sample_fmt
Definition:
avconv_filter.c:63
cpu.h
ff_scale_samples_s32_sse2
void ff_scale_samples_s32_sse2(uint8_t *dst, const uint8_t *src, int len, int volume)
EXTERNAL_SSSE3
#define EXTERNAL_SSSE3(flags)
Definition:
cpu.h:38
av_get_cpu_flags
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
Definition:
cpu.c:25
AVSampleFormat
AVSampleFormat
Audio Sample Formats.
Definition:
samplefmt.h:49
len
int len
Definition:
vorbis_enc_data.h:452
EXTERNAL_AVX
#define EXTERNAL_AVX(flags)
Definition:
cpu.h:41
ff_volume_init_x86
void ff_volume_init_x86(VolumeContext *vol)
Definition:
af_volume_init.c:35