Line
Link Here
|
0 |
-- libavcodec/sparc/simple_idct_vis.c |
0 |
++ libavcodec/sparc/simple_idct_vis.c |
Lines 384-389
Link Here
|
384 |
"st %%f14, [%12+" dest "] \n\t"\ |
384 |
"st %%f14, [%12+" dest "] \n\t"\ |
385 |
|
385 |
|
386 |
|
386 |
|
|
|
387 |
extern void ff_simple_idct_vis(DCTELEM *data); |
387 |
inline void ff_simple_idct_vis(DCTELEM *data) { |
388 |
inline void ff_simple_idct_vis(DCTELEM *data) { |
388 |
int out1, out2, out3, out4; |
389 |
int out1, out2, out3, out4; |
389 |
DECLARE_ALIGNED_8(int16_t, temp[8*8]); |
390 |
DECLARE_ALIGNED_8(int16_t, temp[8*8]); |
390 |
-- libmpeg2/idct.c |
391 |
++ libmpeg2/idct.c |
Lines 265-277
Link Here
|
265 |
mpeg2_idct_altivec_init (); |
265 |
mpeg2_idct_altivec_init (); |
266 |
} else |
266 |
} else |
267 |
#endif |
267 |
#endif |
268 |
#ifdef HAVE_VIS |
268 |
#ifdef ARCH_ALPHA |
269 |
if (accel & MPEG2_ACCEL_ALPHA_MVI) { |
269 |
if (accel & MPEG2_ACCEL_ALPHA_MVI) { |
270 |
mpeg2_idct_copy = mpeg2_idct_copy_mvi; |
270 |
mpeg2_idct_copy = mpeg2_idct_copy_mvi; |
271 |
mpeg2_idct_add = mpeg2_idct_add_mvi; |
271 |
mpeg2_idct_add = mpeg2_idct_add_mvi; |
272 |
mpeg2_idct_alpha_init (); |
272 |
mpeg2_idct_alpha_init (); |
273 |
} else |
273 |
} else |
274 |
#elif ARCH_ALPHA |
|
|
275 |
if (accel & MPEG2_ACCEL_ALPHA) { |
274 |
if (accel & MPEG2_ACCEL_ALPHA) { |
276 |
int i; |
275 |
int i; |
277 |
|
276 |
|