]> git.sesse.net Git - ffmpeg/blob - libavutil/float_dsp.h
Merge commit '1961e46c15c23a041f8d8614a25388a3ee9eff63'
[ffmpeg] / libavutil / float_dsp.h
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 #ifndef AVUTIL_FLOAT_DSP_H
20 #define AVUTIL_FLOAT_DSP_H
21
22 typedef struct AVFloatDSPContext {
23     /**
24      * Calculate the product of two vectors of floats and store the result in
25      * a vector of floats.
26      *
27      * @param dst  output vector
28      *             constraints: 32-byte aligned
29      * @param src0 first input vector
30      *             constraints: 32-byte aligned
31      * @param src1 second input vector
32      *             constraints: 32-byte aligned
33      * @param len  number of elements in the input
34      *             constraints: multiple of 16
35      */
36     void (*vector_fmul)(float *dst, const float *src0, const float *src1,
37                         int len);
38
39     /**
40      * Multiply a vector of floats by a scalar float and add to
41      * destination vector.  Source and destination vectors must
42      * overlap exactly or not at all.
43      *
44      * @param dst result vector
45      *            constraints: 32-byte aligned
46      * @param src input vector
47      *            constraints: 32-byte aligned
48      * @param mul scalar value
49      * @param len length of vector
50      *            constraints: multiple of 16
51      */
52     void (*vector_fmac_scalar)(float *dst, const float *src, float mul,
53                                int len);
54 } AVFloatDSPContext;
55
56 /**
57  * Initialize a float DSP context.
58  *
59  * @param fdsp    float DSP context
60  * @param strict  setting to non-zero avoids using functions which may not be IEEE-754 compliant
61  */
62 void avpriv_float_dsp_init(AVFloatDSPContext *fdsp, int strict);
63
64
65 void ff_float_dsp_init_arm(AVFloatDSPContext *fdsp);
66 void ff_float_dsp_init_ppc(AVFloatDSPContext *fdsp, int strict);
67 void ff_float_dsp_init_x86(AVFloatDSPContext *fdsp);
68
69 #endif /* AVUTIL_FLOAT_DSP_H */