Mercurial > libavcodec.hg
annotate ppc/float_altivec.c @ 8379:be5e0a75b457 libavcodec
Do not calculate idct_dc_add/idct_add when the variables are unused.
author | michael |
---|---|
date | Thu, 18 Dec 2008 04:13:02 +0000 |
parents | d33b47d1f4c1 |
children | 93a3020d9636 |
rev | line source |
---|---|
3581 | 1 /* |
2 * Copyright (c) 2006 Luca Barbato <lu_zero@gentoo.org> | |
3 * | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3659
diff
changeset
|
4 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3659
diff
changeset
|
5 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3659
diff
changeset
|
6 * FFmpeg is free software; you can redistribute it and/or |
3581 | 7 * modify it under the terms of the GNU Lesser General Public |
8 * License as published by the Free Software Foundation; either | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3659
diff
changeset
|
9 * version 2.1 of the License, or (at your option) any later version. |
3581 | 10 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3659
diff
changeset
|
11 * FFmpeg is distributed in the hope that it will be useful, |
3581 | 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 | |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3659
diff
changeset
|
17 * License along with FFmpeg; if not, write to the Free Software |
3581 | 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
19 */ | |
20 | |
6763 | 21 #include "libavcodec/dsputil.h" |
3581 | 22 |
23 #include "gcc_fixes.h" | |
24 | |
25 #include "dsputil_altivec.h" | |
26 | |
27 static void vector_fmul_altivec(float *dst, const float *src, int len) | |
28 { | |
29 int i; | |
30 vector float d0, d1, s, zero = (vector float)vec_splat_u32(0); | |
31 for(i=0; i<len-7; i+=8) { | |
32 d0 = vec_ld(0, dst+i); | |
33 s = vec_ld(0, src+i); | |
34 d1 = vec_ld(16, dst+i); | |
35 d0 = vec_madd(d0, s, zero); | |
36 d1 = vec_madd(d1, vec_ld(16,src+i), zero); | |
37 vec_st(d0, 0, dst+i); | |
38 vec_st(d1, 16, dst+i); | |
39 } | |
40 } | |
41 | |
42 static void vector_fmul_reverse_altivec(float *dst, const float *src0, | |
43 const float *src1, int len) | |
44 { | |
45 int i; | |
46 vector float d, s0, s1, h0, l0, | |
47 s2, s3, zero = (vector float)vec_splat_u32(0); | |
48 src1 += len-4; | |
49 for(i=0; i<len-7; i+=8) { | |
50 s1 = vec_ld(0, src1-i); // [a,b,c,d] | |
51 s0 = vec_ld(0, src0+i); | |
52 l0 = vec_mergel(s1, s1); // [c,c,d,d] | |
53 s3 = vec_ld(-16, src1-i); | |
54 h0 = vec_mergeh(s1, s1); // [a,a,b,b] | |
55 s2 = vec_ld(16, src0+i); | |
56 s1 = vec_mergeh(vec_mergel(l0,h0), // [d,b,d,b] | |
57 vec_mergeh(l0,h0)); // [c,a,c,a] | |
58 // [d,c,b,a] | |
59 l0 = vec_mergel(s3, s3); | |
60 d = vec_madd(s0, s1, zero); | |
61 h0 = vec_mergeh(s3, s3); | |
62 vec_st(d, 0, dst+i); | |
63 s3 = vec_mergeh(vec_mergel(l0,h0), | |
64 vec_mergeh(l0,h0)); | |
65 d = vec_madd(s2, s3, zero); | |
66 vec_st(d, 16, dst+i); | |
67 } | |
68 } | |
69 | |
70 static void vector_fmul_add_add_altivec(float *dst, const float *src0, | |
71 const float *src1, const float *src2, | |
72 int src3, int len, int step) | |
73 { | |
74 int i; | |
75 vector float d, s0, s1, s2, t0, t1, edges; | |
76 vector unsigned char align = vec_lvsr(0,dst), | |
77 mask = vec_lvsl(0, dst); | |
78 | |
79 #if 0 //FIXME: there is still something wrong | |
80 if (step == 2) { | |
81 int y; | |
82 vector float d0, d1, s3, t2; | |
83 vector unsigned int sel = | |
84 vec_mergeh(vec_splat_u32(-1), vec_splat_u32(0)); | |
85 t1 = vec_ld(16, dst); | |
86 for (i=0,y=0; i<len-3; i+=4,y+=8) { | |
87 | |
88 s0 = vec_ld(0,src0+i); | |
89 s1 = vec_ld(0,src1+i); | |
90 s2 = vec_ld(0,src2+i); | |
91 | |
92 // t0 = vec_ld(0, dst+y); //[x x x|a] | |
93 // t1 = vec_ld(16, dst+y); //[b c d|e] | |
94 t2 = vec_ld(31, dst+y); //[f g h|x] | |
95 | |
96 d = vec_madd(s0,s1,s2); // [A B C D] | |
97 | |
98 // [A A B B] | |
99 | |
100 // [C C D D] | |
101 | |
102 d0 = vec_perm(t0, t1, mask); // [a b c d] | |
103 | |
104 d0 = vec_sel(vec_mergeh(d, d), d0, sel); // [A b B d] | |
105 | |
106 edges = vec_perm(t1, t0, mask); | |
107 | |
108 t0 = vec_perm(edges, d0, align); // [x x x|A] | |
109 | |
110 t1 = vec_perm(d0, edges, align); // [b B d|e] | |
111 | |
112 vec_stl(t0, 0, dst+y); | |
113 | |
114 d1 = vec_perm(t1, t2, mask); // [e f g h] | |
115 | |
116 d1 = vec_sel(vec_mergel(d, d), d1, sel); // [C f D h] | |
117 | |
118 edges = vec_perm(t2, t1, mask); | |
119 | |
120 t1 = vec_perm(edges, d1, align); // [b B d|C] | |
121 | |
122 t2 = vec_perm(d1, edges, align); // [f D h|x] | |
123 | |
124 vec_stl(t1, 16, dst+y); | |
125 | |
126 t0 = t1; | |
127 | |
128 vec_stl(t2, 31, dst+y); | |
129 | |
130 t1 = t2; | |
131 } | |
132 } else | |
133 #endif | |
134 if (step == 1 && src3 == 0) | |
135 for (i=0; i<len-3; i+=4) { | |
4387 | 136 t0 = vec_ld(0, dst+i); |
3581 | 137 t1 = vec_ld(15, dst+i); |
138 s0 = vec_ld(0, src0+i); | |
139 s1 = vec_ld(0, src1+i); | |
140 s2 = vec_ld(0, src2+i); | |
141 edges = vec_perm(t1 ,t0, mask); | |
142 d = vec_madd(s0,s1,s2); | |
3659
dd55fb216497
Proper fix for the corner case that would have been corrected before, praise&blame to me and exg in equal shares
lu_zero
parents:
3657
diff
changeset
|
143 t1 = vec_perm(d, edges, align); |
dd55fb216497
Proper fix for the corner case that would have been corrected before, praise&blame to me and exg in equal shares
lu_zero
parents:
3657
diff
changeset
|
144 t0 = vec_perm(edges, d, align); |
dd55fb216497
Proper fix for the corner case that would have been corrected before, praise&blame to me and exg in equal shares
lu_zero
parents:
3657
diff
changeset
|
145 vec_st(t1, 15, dst+i); |
3581 | 146 vec_st(t0, 0, dst+i); |
147 } | |
148 else | |
149 ff_vector_fmul_add_add_c(dst, src0, src1, src2, src3, len, step); | |
150 } | |
151 | |
7674 | 152 |
8365
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
153 static void int32_to_float_fmul_scalar_altivec(float *dst, const int *src, float mul, int len) |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
154 { |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
155 union { |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
156 vector float v; |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
157 float s[4]; |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
158 } mul_u; |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
159 int i; |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
160 vector float src1, src2, dst1, dst2, mul_v, zero; |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
161 |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
162 zero = (vector float)vec_splat_u32(0); |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
163 mul_u.s[0] = mul; |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
164 mul_v = vec_splat(mul_u.v, 0); |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
165 |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
166 for(i=0; i<len; i+=8) { |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
167 src1 = vec_ctf(vec_ld(0, src+i), 0); |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
168 src2 = vec_ctf(vec_ld(16, src+i), 0); |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
169 dst1 = vec_madd(src1, mul_v, zero); |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
170 dst2 = vec_madd(src2, mul_v, zero); |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
171 vec_st(dst1, 0, dst+i); |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
172 vec_st(dst2, 16, dst+i); |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
173 } |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
174 } |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
175 |
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
176 |
7674 | 177 static vector signed short |
178 float_to_int16_one_altivec(const float *src) | |
179 { | |
180 vector float s0 = vec_ld(0, src); | |
181 vector float s1 = vec_ld(16, src); | |
182 vector signed int t0 = vec_cts(s0, 0); | |
183 vector signed int t1 = vec_cts(s1, 0); | |
184 return vec_packs(t0,t1); | |
185 } | |
186 | |
7691
8313d5901c5c
Missing static in float_to_int16_altivec declaration
lu_zero
parents:
7676
diff
changeset
|
187 static void float_to_int16_altivec(int16_t *dst, const float *src, int len) |
3581 | 188 { |
189 int i; | |
190 vector signed short d0, d1, d; | |
191 vector unsigned char align; | |
192 if(((long)dst)&15) //FIXME | |
193 for(i=0; i<len-7; i+=8) { | |
194 d0 = vec_ld(0, dst+i); | |
7674 | 195 d = float_to_int16_one_altivec(src+i); |
3581 | 196 d1 = vec_ld(15, dst+i); |
197 d1 = vec_perm(d1, d0, vec_lvsl(0,dst+i)); | |
198 align = vec_lvsr(0, dst+i); | |
3657
ff6720290478
Fix float_to_int16, unaligned case, broken by the previous commit
lu_zero
parents:
3583
diff
changeset
|
199 d0 = vec_perm(d1, d, align); |
ff6720290478
Fix float_to_int16, unaligned case, broken by the previous commit
lu_zero
parents:
3583
diff
changeset
|
200 d1 = vec_perm(d, d1, align); |
3581 | 201 vec_st(d0, 0, dst+i); |
202 vec_st(d1,15, dst+i); | |
203 } | |
204 else | |
205 for(i=0; i<len-7; i+=8) { | |
7674 | 206 d = float_to_int16_one_altivec(src+i); |
3581 | 207 vec_st(d, 0, dst+i); |
208 } | |
209 } | |
210 | |
7675
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
211 static void |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
212 float_to_int16_interleave_altivec(int16_t *dst, const float **src, |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
213 long len, int channels) |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
214 { |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
215 int i; |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
216 vector signed short d0, d1, d2, c0, c1, t0, t1; |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
217 vector unsigned char align; |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
218 if(channels == 1) |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
219 float_to_int16_altivec(dst, src[0], len); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
220 else |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
221 if (channels == 2) { |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
222 if(((long)dst)&15) |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
223 for(i=0; i<len-7; i+=8) { |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
224 d0 = vec_ld(0, dst + i); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
225 t0 = float_to_int16_one_altivec(src[0] + i); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
226 d1 = vec_ld(31, dst + i); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
227 t1 = float_to_int16_one_altivec(src[1] + i); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
228 c0 = vec_mergeh(t0, t1); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
229 c1 = vec_mergel(t0, t1); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
230 d2 = vec_perm(d1, d0, vec_lvsl(0, dst + i)); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
231 align = vec_lvsr(0, dst + i); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
232 d0 = vec_perm(d2, c0, align); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
233 d1 = vec_perm(c0, c1, align); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
234 vec_st(d0, 0, dst + i); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
235 d0 = vec_perm(c1, d2, align); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
236 vec_st(d1, 15, dst + i); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
237 vec_st(d0, 31, dst + i); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
238 dst+=8; |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
239 } |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
240 else |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
241 for(i=0; i<len-7; i+=8) { |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
242 t0 = float_to_int16_one_altivec(src[0] + i); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
243 t1 = float_to_int16_one_altivec(src[1] + i); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
244 d0 = vec_mergeh(t0, t1); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
245 d1 = vec_mergel(t0, t1); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
246 vec_st(d0, 0, dst + i); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
247 vec_st(d1, 16, dst + i); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
248 dst+=8; |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
249 } |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
250 } else { |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
251 DECLARE_ALIGNED(16, int16_t, tmp[len]); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
252 int c, j; |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
253 for (c = 0; c < channels; c++) { |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
254 float_to_int16_altivec(tmp, src[c], len); |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
255 for (i = 0, j = c; i < len; i++, j+=channels) { |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
256 dst[j] = tmp[i]; |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
257 } |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
258 } |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
259 } |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
260 } |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
261 |
3581 | 262 void float_init_altivec(DSPContext* c, AVCodecContext *avctx) |
263 { | |
264 c->vector_fmul = vector_fmul_altivec; | |
265 c->vector_fmul_reverse = vector_fmul_reverse_altivec; | |
266 c->vector_fmul_add_add = vector_fmul_add_add_altivec; | |
8365
d33b47d1f4c1
add AltiVec implementation of int32_to_float_fmul_scalar
gpoirier
parents:
7691
diff
changeset
|
267 c->int32_to_float_fmul_scalar = int32_to_float_fmul_scalar_altivec; |
7675
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
268 if(!(avctx->flags & CODEC_FLAG_BITEXACT)) { |
3581 | 269 c->float_to_int16 = float_to_int16_altivec; |
7675
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
270 c->float_to_int16_interleave = float_to_int16_interleave_altivec; |
ad4bf45b9b63
Introduce float_to_int16_interleave_altivec, tested with vorbis
lu_zero
parents:
7674
diff
changeset
|
271 } |
3581 | 272 } |