FFmpeg
Loading...
Searching...
No Matches
ac3dsp_init.c
Go to the documentation of this file.
1/*
2 * Copyright © 2023 Rémi Denis-Courmont.
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <stddef.h>
22#include <stdint.h>
23
24#include "config.h"
26#include "libavutil/cpu.h"
27#include "libavcodec/ac3dsp.h"
28
29void ff_ac3_exponent_min_rvb(uint8_t *exp, int, int);
30void ff_ac3_exponent_min_rvv(uint8_t *exp, int, int);
31void ff_extract_exponents_rvb(uint8_t *exp, int32_t *coef, int nb_coefs);
32void ff_extract_exponents_rvvb(uint8_t *exp, int32_t *coef, int nb_coefs);
33void ff_float_to_fixed24_rvv(int32_t *dst, const float *src, size_t len);
35 const int32_t *, int);
36void ff_sum_square_butterfly_float_rvv(float *, const float *,
37 const float *, int);
38
40{
41#if HAVE_RV
42 int flags = av_get_cpu_flags();
43
45 c->ac3_exponent_min = ff_ac3_exponent_min_rvb;
46 c->extract_exponents = ff_extract_exponents_rvb;
47 }
48
49# if HAVE_RVV
51 c->ac3_exponent_min = ff_ac3_exponent_min_rvv;
52
53 if (flags & AV_CPU_FLAG_RVB) {
54# if HAVE_RV_ZVBB
56 c->extract_exponents = ff_extract_exponents_rvvb;
57# endif
59 c->float_to_fixed24 = ff_float_to_fixed24_rvv;
60 c->sum_square_butterfly_float =
62 }
63# if __riscv_xlen >= 64
65 c->sum_square_butterfly_int32 =
67# endif
68 }
69 }
70# endif
71#endif
72}
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static int nb_coefs(int length, int level, uint64_t sn)
Definition af_afwtdn.c:515
int32_t
#define flags(name, subs,...)
Definition cbs_h264.c:74
long long int64_t
Definition coverity.c:34
int8_t exp
Definition eval.c:76
Macro definitions for various function/variable attributes.
#define av_cold
Definition attributes.h:117
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
Definition cpu.c:109
#define AV_CPU_FLAG_RVV_I64
Vectors of 64-bit int's *‍/.
Definition cpu.h:99
#define AV_CPU_FLAG_RVB
B (bit manipulations)
Definition cpu.h:104
#define AV_CPU_FLAG_RVB_BASIC
Basic bit-manipulations.
Definition cpu.h:101
#define AV_CPU_FLAG_RVV_I32
Vectors of 8/16/32-bit int's *‍/.
Definition cpu.h:97
#define AV_CPU_FLAG_RV_ZVBB
Vector basic bit-manipulations.
Definition cpu.h:102
#define AV_CPU_FLAG_RVV_F32
Vectors of float's *‍/.
Definition cpu.h:98
void ff_extract_exponents_rvvb(uint8_t *exp, int32_t *coef, int nb_coefs)
void ff_sum_square_butterfly_float_rvv(float *, const float *, const float *, int)
void ff_extract_exponents_rvb(uint8_t *exp, int32_t *coef, int nb_coefs)
void ff_float_to_fixed24_rvv(int32_t *dst, const float *src, size_t len)
av_cold void ff_ac3dsp_init_riscv(AC3DSPContext *c)
Definition ac3dsp_init.c:39
void ff_ac3_exponent_min_rvb(uint8_t *exp, int, int)
void ff_sum_square_butterfly_int32_rvv(int64_t *, const int32_t *, const int32_t *, int)
void ff_ac3_exponent_min_rvv(uint8_t *exp, int, int)
#define src
Definition vp8dsp.c:248
int len
static double c[64]