FFmpeg
libavfilter
x86
vf_gblur_init.c
Go to the documentation of this file.
1
/*
2
*
3
* This file is part of FFmpeg.
4
*
5
* FFmpeg is free software; you can redistribute it and/or
6
* modify it under the terms of the GNU Lesser General Public
7
* License as published by the Free Software Foundation; either
8
* version 2.1 of the License, or (at your option) any later version.
9
*
10
* FFmpeg is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
* Lesser General Public License for more details.
14
*
15
* You should have received a copy of the GNU Lesser General Public
16
* License along with FFmpeg; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
*/
19
20
#include "
config.h
"
21
22
#include "
libavutil/attributes.h
"
23
#include "
libavutil/cpu.h
"
24
#include "
libavutil/x86/cpu.h
"
25
#include "
libavfilter/gblur.h
"
26
27
void
ff_horiz_slice_sse4
(
float
*ptr,
int
width
,
int
height
,
int
steps,
float
nu,
float
bscale);
28
void
ff_horiz_slice_avx2
(
float
*ptr,
int
width
,
int
height
,
int
steps,
float
nu,
float
bscale);
29
30
av_cold
void
ff_gblur_init_x86
(
GBlurContext
*
s
)
31
{
32
#if ARCH_X86_64
33
int
cpu_flags
=
av_get_cpu_flags
();
34
35
if
(
EXTERNAL_SSE4
(
cpu_flags
))
36
s
->horiz_slice =
ff_horiz_slice_sse4
;
37
if
(
EXTERNAL_AVX2
(
cpu_flags
))
38
s
->horiz_slice =
ff_horiz_slice_avx2
;
39
#endif
40
}
cpu.h
av_get_cpu_flags
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
Definition:
cpu.c:93
cpu_flags
static atomic_int cpu_flags
Definition:
cpu.c:50
EXTERNAL_AVX2
#define EXTERNAL_AVX2(flags)
Definition:
cpu.h:78
ff_gblur_init_x86
av_cold void ff_gblur_init_x86(GBlurContext *s)
Definition:
vf_gblur_init.c:30
ff_horiz_slice_sse4
void ff_horiz_slice_sse4(float *ptr, int width, int height, int steps, float nu, float bscale)
av_cold
#define av_cold
Definition:
attributes.h:84
gblur.h
width
#define width
s
#define s(width, name)
Definition:
cbs_vp9.c:257
ff_horiz_slice_avx2
void ff_horiz_slice_avx2(float *ptr, int width, int height, int steps, float nu, float bscale)
cpu.h
height
#define height
attributes.h
EXTERNAL_SSE4
#define EXTERNAL_SSE4(flags)
Definition:
cpu.h:68
config.h
GBlurContext
Definition:
gblur.h:32
Generated on Wed Aug 24 2022 21:27:18 for FFmpeg by
1.8.17