/src/vlc/contrib/contrib-build/speex/libspeex/vq_sse.h
Line | Count | Source |
1 | | /* Copyright (C) 2004 Jean-Marc Valin */ |
2 | | /** |
3 | | @file vq_sse.h |
4 | | @brief SSE-optimized vq routine |
5 | | */ |
6 | | /* |
7 | | Redistribution and use in source and binary forms, with or without |
8 | | modification, are permitted provided that the following conditions |
9 | | are met: |
10 | | |
11 | | - Redistributions of source code must retain the above copyright |
12 | | notice, this list of conditions and the following disclaimer. |
13 | | |
14 | | - Redistributions in binary form must reproduce the above copyright |
15 | | notice, this list of conditions and the following disclaimer in the |
16 | | documentation and/or other materials provided with the distribution. |
17 | | |
18 | | - Neither the name of the Xiph.org Foundation nor the names of its |
19 | | contributors may be used to endorse or promote products derived from |
20 | | this software without specific prior written permission. |
21 | | |
22 | | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
23 | | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
24 | | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
25 | | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR |
26 | | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
27 | | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
28 | | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
29 | | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
30 | | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
31 | | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
32 | | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
33 | | */ |
34 | | |
35 | | #define OVERRIDE_VQ_NBEST |
36 | | void vq_nbest(spx_word16_t *_in, const __m128 *codebook, int len, int entries, __m128 *E, int N, int *nbest, spx_word32_t *best_dist, char *stack) |
37 | 0 | { |
38 | 0 | int i,j,k,used; |
39 | 0 | VARDECL(float *dist); |
40 | 0 | VARDECL(__m128 *in); |
41 | 0 | __m128 half; |
42 | 0 | used = 0; |
43 | 0 | ALLOC(dist, entries, float); |
44 | 0 | half = _mm_set_ps1(.5f); |
45 | 0 | ALLOC(in, len, __m128); |
46 | 0 | for (i=0;i<len;i++) |
47 | 0 | in[i] = _mm_set_ps1(_in[i]); |
48 | 0 | for (i=0;i<entries>>2;i++) |
49 | 0 | { |
50 | 0 | __m128 d = _mm_mul_ps(E[i], half); |
51 | 0 | for (j=0;j<len;j++) |
52 | 0 | d = _mm_sub_ps(d, _mm_mul_ps(in[j], *codebook++)); |
53 | 0 | _mm_storeu_ps(dist+4*i, d); |
54 | 0 | } |
55 | 0 | for (i=0;i<entries;i++) |
56 | 0 | { |
57 | 0 | if (i<N || dist[i]<best_dist[N-1]) |
58 | 0 | { |
59 | 0 | for (k=N-1; (k >= 1) && (k > used || dist[i] < best_dist[k-1]); k--) |
60 | 0 | { |
61 | 0 | best_dist[k]=best_dist[k-1]; |
62 | 0 | nbest[k] = nbest[k-1]; |
63 | 0 | } |
64 | 0 | best_dist[k]=dist[i]; |
65 | 0 | nbest[k]=i; |
66 | 0 | used++; |
67 | 0 | } |
68 | 0 | } |
69 | 0 | } |
70 | | |
71 | | |
72 | | |
73 | | |
74 | | #define OVERRIDE_VQ_NBEST_SIGN |
75 | | void vq_nbest_sign(spx_word16_t *_in, const __m128 *codebook, int len, int entries, __m128 *E, int N, int *nbest, spx_word32_t *best_dist, char *stack) |
76 | 0 | { |
77 | 0 | int i,j,k,used; |
78 | 0 | VARDECL(float *dist); |
79 | 0 | VARDECL(__m128 *in); |
80 | |
|
81 | 0 | used = 0; |
82 | 0 | ALLOC(dist, entries, float); |
83 | |
|
84 | 0 | ALLOC(in, len, __m128); |
85 | 0 | for (i=0;i<len;i++) |
86 | 0 | in[i] = _mm_set_ps1(_in[i]); |
87 | 0 | for (i=0;i<entries>>2;i++) |
88 | 0 | { |
89 | 0 | __m128 d = _mm_setzero_ps(); |
90 | 0 | for (j=0;j<len;j++) |
91 | 0 | d = _mm_add_ps(d, _mm_mul_ps(in[j], *codebook++)); |
92 | 0 | _mm_storeu_ps(dist+4*i, d); |
93 | 0 | } |
94 | 0 | for (i=0;i<entries;i++) |
95 | 0 | { |
96 | 0 | int sign; |
97 | 0 | if (dist[i]>0) |
98 | 0 | { |
99 | 0 | sign=0; |
100 | 0 | dist[i]=-dist[i]; |
101 | 0 | } else |
102 | 0 | { |
103 | 0 | sign=1; |
104 | 0 | } |
105 | 0 | dist[i] += .5f*((float*)E)[i]; |
106 | 0 | if (i<N || dist[i]<best_dist[N-1]) |
107 | 0 | { |
108 | 0 | for (k=N-1; (k >= 1) && (k > used || dist[i] < best_dist[k-1]); k--) |
109 | 0 | { |
110 | 0 | best_dist[k]=best_dist[k-1]; |
111 | 0 | nbest[k] = nbest[k-1]; |
112 | 0 | } |
113 | 0 | best_dist[k]=dist[i]; |
114 | 0 | nbest[k]=i; |
115 | 0 | used++; |
116 | 0 | if (sign) |
117 | 0 | nbest[k]+=entries; |
118 | 0 | } |
119 | 0 | } |
120 | 0 | } |