| Line | Branch | Exec | Source |
|---|---|---|---|
| 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 | |||
| 33 | 41 | av_cold void ff_v210_x86_init(V210DecContext *s) | |
| 34 | { | ||
| 35 | 41 | int cpu_flags = av_get_cpu_flags(); | |
| 36 | |||
| 37 |
2/2✓ Branch 0 taken 9 times.
✓ Branch 1 taken 32 times.
|
41 | if (s->aligned_input) { |
| 38 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 9 times.
|
9 | if (cpu_flags & AV_CPU_FLAG_SSSE3) |
| 39 | ✗ | s->unpack_frame = ff_v210_planar_unpack_aligned_ssse3; | |
| 40 | #if HAVE_AVX_EXTERNAL | ||
| 41 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 9 times.
|
9 | if (cpu_flags & AV_CPU_FLAG_AVX) |
| 42 | ✗ | s->unpack_frame = ff_v210_planar_unpack_aligned_avx; | |
| 43 | #endif | ||
| 44 | |||
| 45 | #if HAVE_AVX2_EXTERNAL | ||
| 46 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 9 times.
|
9 | if (cpu_flags & AV_CPU_FLAG_AVX2) |
| 47 | ✗ | s->unpack_frame = ff_v210_planar_unpack_aligned_avx2; | |
| 48 | #endif | ||
| 49 | |||
| 50 | #if HAVE_AVX512ICL_EXTERNAL | ||
| 51 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 9 times.
|
9 | if (EXTERNAL_AVX512ICL(cpu_flags)) |
| 52 | ✗ | s->unpack_frame = ff_v210_planar_unpack_avx512icl; | |
| 53 | #endif | ||
| 54 | } | ||
| 55 | else { | ||
| 56 |
2/2✓ Branch 0 taken 8 times.
✓ Branch 1 taken 24 times.
|
32 | if (cpu_flags & AV_CPU_FLAG_SSSE3) |
| 57 | 8 | s->unpack_frame = ff_v210_planar_unpack_unaligned_ssse3; | |
| 58 | #if HAVE_AVX_EXTERNAL | ||
| 59 |
2/2✓ Branch 0 taken 3 times.
✓ Branch 1 taken 29 times.
|
32 | if (cpu_flags & AV_CPU_FLAG_AVX) |
| 60 | 3 | s->unpack_frame = ff_v210_planar_unpack_unaligned_avx; | |
| 61 | #endif | ||
| 62 | |||
| 63 | #if HAVE_AVX2_EXTERNAL | ||
| 64 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 31 times.
|
32 | if (cpu_flags & AV_CPU_FLAG_AVX2) |
| 65 | 1 | s->unpack_frame = ff_v210_planar_unpack_unaligned_avx2; | |
| 66 | #endif | ||
| 67 | |||
| 68 | #if HAVE_AVX512ICL_EXTERNAL | ||
| 69 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 32 times.
|
32 | if (EXTERNAL_AVX512ICL(cpu_flags)) |
| 70 | ✗ | s->unpack_frame = ff_v210_planar_unpack_avx512icl; | |
| 71 | #endif | ||
| 72 | } | ||
| 73 | 41 | } | |
| 74 |