idct_altivec.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. /*
  2. * Copyright (c) 2001 Michel Lespinasse
  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. * NOTE: This code is based on GPL code from the libmpeg2 project. The
  22. * author, Michel Lespinasses, has given explicit permission to release
  23. * under LGPL as part of ffmpeg.
  24. */
  25. /*
  26. * FFMpeg integration by Dieter Shirley
  27. *
  28. * This file is a direct copy of the altivec idct module from the libmpeg2
  29. * project. I've deleted all of the libmpeg2 specific code, renamed the functions and
  30. * re-ordered the function parameters. The only change to the IDCT function
  31. * itself was to factor out the partial transposition, and to perform a full
  32. * transpose at the end of the function.
  33. */
  34. #include <stdlib.h> /* malloc(), free() */
  35. #include <string.h>
  36. #include "libavcodec/dsputil.h"
  37. #include "gcc_fixes.h"
  38. #include "types_altivec.h"
  39. #include "dsputil_ppc.h"
  40. #define IDCT_HALF \
  41. /* 1st stage */ \
  42. t1 = vec_mradds (a1, vx7, vx1 ); \
  43. t8 = vec_mradds (a1, vx1, vec_subs (zero, vx7)); \
  44. t7 = vec_mradds (a2, vx5, vx3); \
  45. t3 = vec_mradds (ma2, vx3, vx5); \
  46. \
  47. /* 2nd stage */ \
  48. t5 = vec_adds (vx0, vx4); \
  49. t0 = vec_subs (vx0, vx4); \
  50. t2 = vec_mradds (a0, vx6, vx2); \
  51. t4 = vec_mradds (a0, vx2, vec_subs (zero, vx6)); \
  52. t6 = vec_adds (t8, t3); \
  53. t3 = vec_subs (t8, t3); \
  54. t8 = vec_subs (t1, t7); \
  55. t1 = vec_adds (t1, t7); \
  56. \
  57. /* 3rd stage */ \
  58. t7 = vec_adds (t5, t2); \
  59. t2 = vec_subs (t5, t2); \
  60. t5 = vec_adds (t0, t4); \
  61. t0 = vec_subs (t0, t4); \
  62. t4 = vec_subs (t8, t3); \
  63. t3 = vec_adds (t8, t3); \
  64. \
  65. /* 4th stage */ \
  66. vy0 = vec_adds (t7, t1); \
  67. vy7 = vec_subs (t7, t1); \
  68. vy1 = vec_mradds (c4, t3, t5); \
  69. vy6 = vec_mradds (mc4, t3, t5); \
  70. vy2 = vec_mradds (c4, t4, t0); \
  71. vy5 = vec_mradds (mc4, t4, t0); \
  72. vy3 = vec_adds (t2, t6); \
  73. vy4 = vec_subs (t2, t6);
  74. #define IDCT \
  75. vec_s16 vx0, vx1, vx2, vx3, vx4, vx5, vx6, vx7; \
  76. vec_s16 vy0, vy1, vy2, vy3, vy4, vy5, vy6, vy7; \
  77. vec_s16 a0, a1, a2, ma2, c4, mc4, zero, bias; \
  78. vec_s16 t0, t1, t2, t3, t4, t5, t6, t7, t8; \
  79. vec_u16 shift; \
  80. \
  81. c4 = vec_splat (constants[0], 0); \
  82. a0 = vec_splat (constants[0], 1); \
  83. a1 = vec_splat (constants[0], 2); \
  84. a2 = vec_splat (constants[0], 3); \
  85. mc4 = vec_splat (constants[0], 4); \
  86. ma2 = vec_splat (constants[0], 5); \
  87. bias = (vec_s16)vec_splat ((vec_s32)constants[0], 3); \
  88. \
  89. zero = vec_splat_s16 (0); \
  90. shift = vec_splat_u16 (4); \
  91. \
  92. vx0 = vec_mradds (vec_sl (block[0], shift), constants[1], zero); \
  93. vx1 = vec_mradds (vec_sl (block[1], shift), constants[2], zero); \
  94. vx2 = vec_mradds (vec_sl (block[2], shift), constants[3], zero); \
  95. vx3 = vec_mradds (vec_sl (block[3], shift), constants[4], zero); \
  96. vx4 = vec_mradds (vec_sl (block[4], shift), constants[1], zero); \
  97. vx5 = vec_mradds (vec_sl (block[5], shift), constants[4], zero); \
  98. vx6 = vec_mradds (vec_sl (block[6], shift), constants[3], zero); \
  99. vx7 = vec_mradds (vec_sl (block[7], shift), constants[2], zero); \
  100. \
  101. IDCT_HALF \
  102. \
  103. vx0 = vec_mergeh (vy0, vy4); \
  104. vx1 = vec_mergel (vy0, vy4); \
  105. vx2 = vec_mergeh (vy1, vy5); \
  106. vx3 = vec_mergel (vy1, vy5); \
  107. vx4 = vec_mergeh (vy2, vy6); \
  108. vx5 = vec_mergel (vy2, vy6); \
  109. vx6 = vec_mergeh (vy3, vy7); \
  110. vx7 = vec_mergel (vy3, vy7); \
  111. \
  112. vy0 = vec_mergeh (vx0, vx4); \
  113. vy1 = vec_mergel (vx0, vx4); \
  114. vy2 = vec_mergeh (vx1, vx5); \
  115. vy3 = vec_mergel (vx1, vx5); \
  116. vy4 = vec_mergeh (vx2, vx6); \
  117. vy5 = vec_mergel (vx2, vx6); \
  118. vy6 = vec_mergeh (vx3, vx7); \
  119. vy7 = vec_mergel (vx3, vx7); \
  120. \
  121. vx0 = vec_adds (vec_mergeh (vy0, vy4), bias); \
  122. vx1 = vec_mergel (vy0, vy4); \
  123. vx2 = vec_mergeh (vy1, vy5); \
  124. vx3 = vec_mergel (vy1, vy5); \
  125. vx4 = vec_mergeh (vy2, vy6); \
  126. vx5 = vec_mergel (vy2, vy6); \
  127. vx6 = vec_mergeh (vy3, vy7); \
  128. vx7 = vec_mergel (vy3, vy7); \
  129. \
  130. IDCT_HALF \
  131. \
  132. shift = vec_splat_u16 (6); \
  133. vx0 = vec_sra (vy0, shift); \
  134. vx1 = vec_sra (vy1, shift); \
  135. vx2 = vec_sra (vy2, shift); \
  136. vx3 = vec_sra (vy3, shift); \
  137. vx4 = vec_sra (vy4, shift); \
  138. vx5 = vec_sra (vy5, shift); \
  139. vx6 = vec_sra (vy6, shift); \
  140. vx7 = vec_sra (vy7, shift);
  141. static const vec_s16 constants[5] = {
  142. {23170, 13573, 6518, 21895, -23170, -21895, 32, 31},
  143. {16384, 22725, 21407, 19266, 16384, 19266, 21407, 22725},
  144. {22725, 31521, 29692, 26722, 22725, 26722, 29692, 31521},
  145. {21407, 29692, 27969, 25172, 21407, 25172, 27969, 29692},
  146. {19266, 26722, 25172, 22654, 19266, 22654, 25172, 26722}
  147. };
  148. void idct_put_altivec(uint8_t* dest, int stride, vec_s16* block)
  149. {
  150. POWERPC_PERF_DECLARE(altivec_idct_put_num, 1);
  151. vec_u8 tmp;
  152. #if CONFIG_POWERPC_PERF
  153. POWERPC_PERF_START_COUNT(altivec_idct_put_num, 1);
  154. #endif
  155. IDCT
  156. #define COPY(dest,src) \
  157. tmp = vec_packsu (src, src); \
  158. vec_ste ((vec_u32)tmp, 0, (unsigned int *)dest); \
  159. vec_ste ((vec_u32)tmp, 4, (unsigned int *)dest);
  160. COPY (dest, vx0) dest += stride;
  161. COPY (dest, vx1) dest += stride;
  162. COPY (dest, vx2) dest += stride;
  163. COPY (dest, vx3) dest += stride;
  164. COPY (dest, vx4) dest += stride;
  165. COPY (dest, vx5) dest += stride;
  166. COPY (dest, vx6) dest += stride;
  167. COPY (dest, vx7)
  168. POWERPC_PERF_STOP_COUNT(altivec_idct_put_num, 1);
  169. }
  170. void idct_add_altivec(uint8_t* dest, int stride, vec_s16* block)
  171. {
  172. POWERPC_PERF_DECLARE(altivec_idct_add_num, 1);
  173. vec_u8 tmp;
  174. vec_s16 tmp2, tmp3;
  175. vec_u8 perm0;
  176. vec_u8 perm1;
  177. vec_u8 p0, p1, p;
  178. #if CONFIG_POWERPC_PERF
  179. POWERPC_PERF_START_COUNT(altivec_idct_add_num, 1);
  180. #endif
  181. IDCT
  182. p0 = vec_lvsl (0, dest);
  183. p1 = vec_lvsl (stride, dest);
  184. p = vec_splat_u8 (-1);
  185. perm0 = vec_mergeh (p, p0);
  186. perm1 = vec_mergeh (p, p1);
  187. #define ADD(dest,src,perm) \
  188. /* *(uint64_t *)&tmp = *(uint64_t *)dest; */ \
  189. tmp = vec_ld (0, dest); \
  190. tmp2 = (vec_s16)vec_perm (tmp, (vec_u8)zero, perm); \
  191. tmp3 = vec_adds (tmp2, src); \
  192. tmp = vec_packsu (tmp3, tmp3); \
  193. vec_ste ((vec_u32)tmp, 0, (unsigned int *)dest); \
  194. vec_ste ((vec_u32)tmp, 4, (unsigned int *)dest);
  195. ADD (dest, vx0, perm0) dest += stride;
  196. ADD (dest, vx1, perm1) dest += stride;
  197. ADD (dest, vx2, perm0) dest += stride;
  198. ADD (dest, vx3, perm1) dest += stride;
  199. ADD (dest, vx4, perm0) dest += stride;
  200. ADD (dest, vx5, perm1) dest += stride;
  201. ADD (dest, vx6, perm0) dest += stride;
  202. ADD (dest, vx7, perm1)
  203. POWERPC_PERF_STOP_COUNT(altivec_idct_add_num, 1);
  204. }