FFmpeg
Loading...
Searching...
No Matches
af_afirdsp.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2017 Paul B Mahol
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#ifndef AVFILTER_AFIRDSP_H
22#define AVFILTER_AFIRDSP_H
23
24#include <stddef.h>
25
26#include "config.h"
28
29typedef struct AudioFIRDSPContext {
30 void (*fcmul_add)(float *sum, const float *t, const float *c,
31 ptrdiff_t len);
32 void (*dcmul_add)(double *sum, const double *t, const double *c,
33 ptrdiff_t len);
35
38
39static void fcmul_add_c(float *sum, const float *t, const float *c, ptrdiff_t len)
40{
41 int n;
42
43 for (n = 0; n < len; n++) {
44 const float cre = c[2 * n ];
45 const float cim = c[2 * n + 1];
46 const float tre = t[2 * n ];
47 const float tim = t[2 * n + 1];
48
49 sum[2 * n ] += tre * cre - tim * cim;
50 sum[2 * n + 1] += tre * cim + tim * cre;
51 }
52
53 sum[2 * n] += t[2 * n] * c[2 * n];
54}
55
56static void dcmul_add_c(double *sum, const double *t, const double *c, ptrdiff_t len)
57{
58 int n;
59
60 for (n = 0; n < len; n++) {
61 const double cre = c[2 * n ];
62 const double cim = c[2 * n + 1];
63 const double tre = t[2 * n ];
64 const double tim = t[2 * n + 1];
65
66 sum[2 * n ] += tre * cre - tim * cim;
67 sum[2 * n + 1] += tre * cim + tim * cre;
68 }
69
70 sum[2 * n] += t[2 * n] * c[2 * n];
71}
72
74{
77
78#if ARCH_RISCV
80#elif ARCH_X86 && HAVE_X86ASM
82#endif
83}
84
85#endif /* AVFILTER_AFIRDSP_H */
static av_unused void ff_afir_init(AudioFIRDSPContext *dsp)
Definition af_afirdsp.h:73
static void dcmul_add_c(double *sum, const double *t, const double *c, ptrdiff_t len)
Definition af_afirdsp.h:56
void ff_afir_init_riscv(AudioFIRDSPContext *s)
void ff_afir_init_x86(AudioFIRDSPContext *s)
static void fcmul_add_c(float *sum, const float *t, const float *c, ptrdiff_t len)
Definition af_afirdsp.h:39
#define s(width, name)
Definition cbs_vp9.c:198
Macro definitions for various function/variable attributes.
#define av_unused
Definition attributes.h:164
void(* fcmul_add)(float *sum, const float *t, const float *c, ptrdiff_t len)
Definition af_afirdsp.h:30
void(* dcmul_add)(double *sum, const double *t, const double *c, ptrdiff_t len)
Definition af_afirdsp.h:32
int len
static double c[64]