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.

237 lines
11KB

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