FFmpeg
Loading...
Searching...
No Matches
vf_idetdsp_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
20#include "libavutil/cpu.h"
21#include "libavutil/x86/cpu.h"
23
24/* declares main callable idet_filter_line_sse2() */
25#define FUNC_MAIN_DECL(KIND, SPAN) \
26int ff_idet_filter_line_##KIND(const uint8_t *a, const uint8_t *b, \
27 const uint8_t *c, int w); \
28static int idet_filter_line_##KIND(const uint8_t *a, const uint8_t *b, \
29 const uint8_t *c, int w) { \
30 int sum = 0; \
31 const int left_over = w & (SPAN - 1); \
32 w -= left_over; \
33 if (w > 0) \
34 sum += ff_idet_filter_line_##KIND(a, b, c, w); \
35 if (left_over > 0) \
36 sum += ff_idet_filter_line_c(a + w, b + w, c + w, left_over); \
37 return sum; \
38}
39
40
41#define FUNC_MAIN_DECL_16bit(KIND, SPAN) \
42int ff_idet_filter_line_16bit_##KIND(const uint8_t *a, const uint8_t *b, \
43 const uint8_t *c, int w); \
44static int idet_filter_line_16bit_##KIND(const uint8_t *a, const uint8_t *b, \
45 const uint8_t *c, int w) { \
46 int sum = 0; \
47 const int left_over = w & (SPAN - 1); \
48 const int w_main = w - left_over; \
49 const int offset = w_main << 1; \
50 if (w_main > 0) \
51 sum += ff_idet_filter_line_16bit_##KIND(a, b, c, w_main); \
52 if (left_over > 0) { \
53 sum += ff_idet_filter_line_c_16bit(a + offset, b + offset, c + offset, \
54 left_over); \
55 } \
56 return sum; \
57}
58
59FUNC_MAIN_DECL(sse2, 16)
61
62FUNC_MAIN_DECL(avx2, 32)
64
65FUNC_MAIN_DECL(avx512icl, 64)
66FUNC_MAIN_DECL_16bit(avx512icl, 32)
67
69{
70 const int cpu_flags = av_get_cpu_flags();
71
73 dsp->filter_line = depth > 8 ? idet_filter_line_16bit_sse2 : idet_filter_line_sse2;
74 }
76 dsp->filter_line = depth > 8 ? idet_filter_line_16bit_avx2 : idet_filter_line_avx2;
77 }
79 dsp->filter_line = depth > 8 ? idet_filter_line_16bit_avx512icl : idet_filter_line_avx512icl;
80 }
81}
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_AVX2(flags)
Definition cpu.h:72
#define EXTERNAL_SSE2(flags)
Definition cpu.h:53
void ff_idet_dsp_init_x86(IDETDSPContext *idet, int depth)
#define FUNC_MAIN_DECL_16bit(KIND, SPAN)
#define FUNC_MAIN_DECL(KIND, SPAN)