FFmpeg
v210-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 "libavutil/attributes.h"
20 #include "libavutil/x86/cpu.h"
21 #include "libavcodec/v210dec.h"
22 
23 extern void ff_v210_planar_unpack_unaligned_ssse3(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width);
24 extern void ff_v210_planar_unpack_unaligned_avx(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width);
25 extern void ff_v210_planar_unpack_unaligned_avx2(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width);
26 
27 extern void ff_v210_planar_unpack_aligned_ssse3(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width);
28 extern void ff_v210_planar_unpack_aligned_avx(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width);
29 extern void ff_v210_planar_unpack_aligned_avx2(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width);
30 
31 extern void ff_v210_planar_unpack_avx512icl(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width);
32 
34 {
35 #if HAVE_X86ASM
37 
38  if (s->aligned_input) {
40  s->unpack_frame = ff_v210_planar_unpack_aligned_ssse3;
41 
42  if (HAVE_AVX_EXTERNAL && cpu_flags & AV_CPU_FLAG_AVX)
43  s->unpack_frame = ff_v210_planar_unpack_aligned_avx;
44 
45  if (HAVE_AVX2_EXTERNAL && cpu_flags & AV_CPU_FLAG_AVX2)
46  s->unpack_frame = ff_v210_planar_unpack_aligned_avx2;
47 
49  s->unpack_frame = ff_v210_planar_unpack_avx512icl;
50  }
51  else {
54 
55  if (HAVE_AVX_EXTERNAL && cpu_flags & AV_CPU_FLAG_AVX)
56  s->unpack_frame = ff_v210_planar_unpack_unaligned_avx;
57 
58  if (HAVE_AVX2_EXTERNAL && cpu_flags & AV_CPU_FLAG_AVX2)
60 
62  s->unpack_frame = ff_v210_planar_unpack_avx512icl;
63  }
64 #endif
65 }
cpu.h
u
#define u(width, name, range_min, range_max)
Definition: cbs_h2645.c:251
av_get_cpu_flags
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
Definition: cpu.c:103
cpu_flags
static atomic_int cpu_flags
Definition: cpu.c:52
AV_CPU_FLAG_SSSE3
#define AV_CPU_FLAG_SSSE3
Conroe SSSE3 functions.
Definition: cpu.h:41
ff_v210_planar_unpack_unaligned_ssse3
void ff_v210_planar_unpack_unaligned_ssse3(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width)
av_cold
#define av_cold
Definition: attributes.h:90
width
#define width
s
#define s(width, name)
Definition: cbs_vp9.c:198
ff_v210_x86_init
av_cold void ff_v210_x86_init(V210DecContext *s)
Definition: v210-init.c:33
V210DecContext
Definition: v210dec.h:26
ff_v210_planar_unpack_unaligned_avx2
void ff_v210_planar_unpack_unaligned_avx2(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width)
ff_v210_planar_unpack_aligned_avx
void ff_v210_planar_unpack_aligned_avx(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width)
ff_v210_planar_unpack_unaligned_avx
void ff_v210_planar_unpack_unaligned_avx(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width)
AV_CPU_FLAG_AVX
#define AV_CPU_FLAG_AVX
AVX functions: requires OS support even if YMM registers aren't used.
Definition: cpu.h:47
AV_CPU_FLAG_AVX2
#define AV_CPU_FLAG_AVX2
AVX2 functions: requires OS support even if YMM registers aren't used.
Definition: cpu.h:52
attributes.h
ff_v210_planar_unpack_aligned_ssse3
void ff_v210_planar_unpack_aligned_ssse3(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width)
EXTERNAL_AVX512ICL
#define EXTERNAL_AVX512ICL(flags)
Definition: cpu.h:83
ff_v210_planar_unpack_avx512icl
void ff_v210_planar_unpack_avx512icl(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width)
src
INIT_CLIP pixel * src
Definition: h264pred_template.c:418
ff_v210_planar_unpack_aligned_avx2
void ff_v210_planar_unpack_aligned_avx2(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width)
v210dec.h