FFmpeg
Loading...
Searching...
No Matches
vf_convolution_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
23#include "libavutil/cpu.h"
24#include "libavutil/x86/cpu.h"
26
27void ff_filter_3x3_sse4(uint8_t *dst, int width,
28 float rdiv, float bias, const int *const matrix,
29 const uint8_t *c[], int peak, int radius,
30 int dstride, int stride, int size);
31
33 float scale, float delta, const int *const matrix,
34 const uint8_t *c[], int peak, int radius,
35 int dstride, int stride, int size);
36
38{
39#if ARCH_X86_64
40 int i;
42 for (i = 0; i < 4; i++) {
43 if (s->mode[i] == MATRIX_SQUARE) {
44 if (s->matrix_length[i] == 9 && s->depth == 8) {
46 s->filter[i] = ff_filter_3x3_sse4;
47 }
48 }
49 }
50#endif
51}
52
53av_cold void ff_sobel_init_x86(ConvolutionContext *s, int depth, int nb_planes)
54{
55#if ARCH_X86_64
57 for (int i = 0; i < nb_planes; i++) {
58 if (depth == 8) {
60 s->filter[i] = ff_filter_sobel_avx512icl;
61 }
62 }
63#endif
64}
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
@ MATRIX_SQUARE
Definition convolution.h:28
static void scale(int *out, const int *in, const int w, const int h, const int shift)
Definition intra.c:278
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 EXTERNAL_AVX512ICL(flags)
Definition cpu.h:78
#define EXTERNAL_SSE4(flags)
Definition cpu.h:62
#define stride
#define width
Definition dsp.h:89
int size
av_cold void ff_sobel_init_x86(ConvolutionContext *s, int depth, int nb_planes)
void ff_filter_3x3_sse4(uint8_t *dst, int width, float rdiv, float bias, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
void ff_filter_sobel_avx512icl(uint8_t *dst, int width, float scale, float delta, const int *const matrix, const uint8_t *c[], int peak, int radius, int dstride, int stride, int size)
av_cold void ff_convolution_init_x86(ConvolutionContext *s)
float delta
static int bias(int x, int c)
Definition vqcdec.c:115
static double c[64]