You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

222 lines
10KB

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