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.

1025 lines
47KB

  1. /*
  2. * Copyright (c) 2004 Romain Dolbeau <romain@dolbeau.org>
  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. #include "libavutil/cpu.h"
  21. #include "libavcodec/dsputil.h"
  22. #include "libavcodec/h264data.h"
  23. #include "libavcodec/h264dsp.h"
  24. #include "dsputil_altivec.h"
  25. #include "util_altivec.h"
  26. #include "types_altivec.h"
  27. #define PUT_OP_U8_ALTIVEC(d, s, dst) d = s
  28. #define AVG_OP_U8_ALTIVEC(d, s, dst) d = vec_avg(dst, s)
  29. #define OP_U8_ALTIVEC PUT_OP_U8_ALTIVEC
  30. #define PREFIX_h264_chroma_mc8_altivec put_h264_chroma_mc8_altivec
  31. #define PREFIX_h264_chroma_mc8_num altivec_put_h264_chroma_mc8_num
  32. #define PREFIX_h264_qpel16_h_lowpass_altivec put_h264_qpel16_h_lowpass_altivec
  33. #define PREFIX_h264_qpel16_h_lowpass_num altivec_put_h264_qpel16_h_lowpass_num
  34. #define PREFIX_h264_qpel16_v_lowpass_altivec put_h264_qpel16_v_lowpass_altivec
  35. #define PREFIX_h264_qpel16_v_lowpass_num altivec_put_h264_qpel16_v_lowpass_num
  36. #define PREFIX_h264_qpel16_hv_lowpass_altivec put_h264_qpel16_hv_lowpass_altivec
  37. #define PREFIX_h264_qpel16_hv_lowpass_num altivec_put_h264_qpel16_hv_lowpass_num
  38. #include "h264_template_altivec.c"
  39. #undef OP_U8_ALTIVEC
  40. #undef PREFIX_h264_chroma_mc8_altivec
  41. #undef PREFIX_h264_chroma_mc8_num
  42. #undef PREFIX_h264_qpel16_h_lowpass_altivec
  43. #undef PREFIX_h264_qpel16_h_lowpass_num
  44. #undef PREFIX_h264_qpel16_v_lowpass_altivec
  45. #undef PREFIX_h264_qpel16_v_lowpass_num
  46. #undef PREFIX_h264_qpel16_hv_lowpass_altivec
  47. #undef PREFIX_h264_qpel16_hv_lowpass_num
  48. #define OP_U8_ALTIVEC AVG_OP_U8_ALTIVEC
  49. #define PREFIX_h264_chroma_mc8_altivec avg_h264_chroma_mc8_altivec
  50. #define PREFIX_h264_chroma_mc8_num altivec_avg_h264_chroma_mc8_num
  51. #define PREFIX_h264_qpel16_h_lowpass_altivec avg_h264_qpel16_h_lowpass_altivec
  52. #define PREFIX_h264_qpel16_h_lowpass_num altivec_avg_h264_qpel16_h_lowpass_num
  53. #define PREFIX_h264_qpel16_v_lowpass_altivec avg_h264_qpel16_v_lowpass_altivec
  54. #define PREFIX_h264_qpel16_v_lowpass_num altivec_avg_h264_qpel16_v_lowpass_num
  55. #define PREFIX_h264_qpel16_hv_lowpass_altivec avg_h264_qpel16_hv_lowpass_altivec
  56. #define PREFIX_h264_qpel16_hv_lowpass_num altivec_avg_h264_qpel16_hv_lowpass_num
  57. #include "h264_template_altivec.c"
  58. #undef OP_U8_ALTIVEC
  59. #undef PREFIX_h264_chroma_mc8_altivec
  60. #undef PREFIX_h264_chroma_mc8_num
  61. #undef PREFIX_h264_qpel16_h_lowpass_altivec
  62. #undef PREFIX_h264_qpel16_h_lowpass_num
  63. #undef PREFIX_h264_qpel16_v_lowpass_altivec
  64. #undef PREFIX_h264_qpel16_v_lowpass_num
  65. #undef PREFIX_h264_qpel16_hv_lowpass_altivec
  66. #undef PREFIX_h264_qpel16_hv_lowpass_num
  67. #define H264_MC(OPNAME, SIZE, CODETYPE) \
  68. static void OPNAME ## h264_qpel ## SIZE ## _mc00_ ## CODETYPE (uint8_t *dst, uint8_t *src, int stride){\
  69. OPNAME ## pixels ## SIZE ## _ ## CODETYPE(dst, src, stride, SIZE);\
  70. }\
  71. \
  72. static void OPNAME ## h264_qpel ## SIZE ## _mc10_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){ \
  73. DECLARE_ALIGNED(16, uint8_t, half)[SIZE*SIZE];\
  74. put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(half, src, SIZE, stride);\
  75. OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, src, half, stride, stride, SIZE);\
  76. }\
  77. \
  78. static void OPNAME ## h264_qpel ## SIZE ## _mc20_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  79. OPNAME ## h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(dst, src, stride, stride);\
  80. }\
  81. \
  82. static void OPNAME ## h264_qpel ## SIZE ## _mc30_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  83. DECLARE_ALIGNED(16, uint8_t, half)[SIZE*SIZE];\
  84. put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(half, src, SIZE, stride);\
  85. OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, src+1, half, stride, stride, SIZE);\
  86. }\
  87. \
  88. static void OPNAME ## h264_qpel ## SIZE ## _mc01_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  89. DECLARE_ALIGNED(16, uint8_t, half)[SIZE*SIZE];\
  90. put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(half, src, SIZE, stride);\
  91. OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, src, half, stride, stride, SIZE);\
  92. }\
  93. \
  94. static void OPNAME ## h264_qpel ## SIZE ## _mc02_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  95. OPNAME ## h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(dst, src, stride, stride);\
  96. }\
  97. \
  98. static void OPNAME ## h264_qpel ## SIZE ## _mc03_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  99. DECLARE_ALIGNED(16, uint8_t, half)[SIZE*SIZE];\
  100. put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(half, src, SIZE, stride);\
  101. OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, src+stride, half, stride, stride, SIZE);\
  102. }\
  103. \
  104. static void OPNAME ## h264_qpel ## SIZE ## _mc11_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  105. DECLARE_ALIGNED(16, uint8_t, halfH)[SIZE*SIZE];\
  106. DECLARE_ALIGNED(16, uint8_t, halfV)[SIZE*SIZE];\
  107. put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src, SIZE, stride);\
  108. put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src, SIZE, stride);\
  109. OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfV, stride, SIZE, SIZE);\
  110. }\
  111. \
  112. static void OPNAME ## h264_qpel ## SIZE ## _mc31_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  113. DECLARE_ALIGNED(16, uint8_t, halfH)[SIZE*SIZE];\
  114. DECLARE_ALIGNED(16, uint8_t, halfV)[SIZE*SIZE];\
  115. put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src, SIZE, stride);\
  116. put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src+1, SIZE, stride);\
  117. OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfV, stride, SIZE, SIZE);\
  118. }\
  119. \
  120. static void OPNAME ## h264_qpel ## SIZE ## _mc13_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  121. DECLARE_ALIGNED(16, uint8_t, halfH)[SIZE*SIZE];\
  122. DECLARE_ALIGNED(16, uint8_t, halfV)[SIZE*SIZE];\
  123. put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src + stride, SIZE, stride);\
  124. put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src, SIZE, stride);\
  125. OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfV, stride, SIZE, SIZE);\
  126. }\
  127. \
  128. static void OPNAME ## h264_qpel ## SIZE ## _mc33_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  129. DECLARE_ALIGNED(16, uint8_t, halfH)[SIZE*SIZE];\
  130. DECLARE_ALIGNED(16, uint8_t, halfV)[SIZE*SIZE];\
  131. put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src + stride, SIZE, stride);\
  132. put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src+1, SIZE, stride);\
  133. OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfV, stride, SIZE, SIZE);\
  134. }\
  135. \
  136. static void OPNAME ## h264_qpel ## SIZE ## _mc22_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  137. DECLARE_ALIGNED(16, int16_t, tmp)[SIZE*(SIZE+8)];\
  138. OPNAME ## h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(dst, tmp, src, stride, SIZE, stride);\
  139. }\
  140. \
  141. static void OPNAME ## h264_qpel ## SIZE ## _mc21_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  142. DECLARE_ALIGNED(16, uint8_t, halfH)[SIZE*SIZE];\
  143. DECLARE_ALIGNED(16, uint8_t, halfHV)[SIZE*SIZE];\
  144. DECLARE_ALIGNED(16, int16_t, tmp)[SIZE*(SIZE+8)];\
  145. put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src, SIZE, stride);\
  146. put_h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(halfHV, tmp, src, SIZE, SIZE, stride);\
  147. OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfHV, stride, SIZE, SIZE);\
  148. }\
  149. \
  150. static void OPNAME ## h264_qpel ## SIZE ## _mc23_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  151. DECLARE_ALIGNED(16, uint8_t, halfH)[SIZE*SIZE];\
  152. DECLARE_ALIGNED(16, uint8_t, halfHV)[SIZE*SIZE];\
  153. DECLARE_ALIGNED(16, int16_t, tmp)[SIZE*(SIZE+8)];\
  154. put_h264_qpel ## SIZE ## _h_lowpass_ ## CODETYPE(halfH, src + stride, SIZE, stride);\
  155. put_h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(halfHV, tmp, src, SIZE, SIZE, stride);\
  156. OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfH, halfHV, stride, SIZE, SIZE);\
  157. }\
  158. \
  159. static void OPNAME ## h264_qpel ## SIZE ## _mc12_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  160. DECLARE_ALIGNED(16, uint8_t, halfV)[SIZE*SIZE];\
  161. DECLARE_ALIGNED(16, uint8_t, halfHV)[SIZE*SIZE];\
  162. DECLARE_ALIGNED(16, int16_t, tmp)[SIZE*(SIZE+8)];\
  163. put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src, SIZE, stride);\
  164. put_h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(halfHV, tmp, src, SIZE, SIZE, stride);\
  165. OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfV, halfHV, stride, SIZE, SIZE);\
  166. }\
  167. \
  168. static void OPNAME ## h264_qpel ## SIZE ## _mc32_ ## CODETYPE(uint8_t *dst, uint8_t *src, int stride){\
  169. DECLARE_ALIGNED(16, uint8_t, halfV)[SIZE*SIZE];\
  170. DECLARE_ALIGNED(16, uint8_t, halfHV)[SIZE*SIZE];\
  171. DECLARE_ALIGNED(16, int16_t, tmp)[SIZE*(SIZE+8)];\
  172. put_h264_qpel ## SIZE ## _v_lowpass_ ## CODETYPE(halfV, src+1, SIZE, stride);\
  173. put_h264_qpel ## SIZE ## _hv_lowpass_ ## CODETYPE(halfHV, tmp, src, SIZE, SIZE, stride);\
  174. OPNAME ## pixels ## SIZE ## _l2_ ## CODETYPE(dst, halfV, halfHV, stride, SIZE, SIZE);\
  175. }\
  176. static inline void put_pixels16_l2_altivec( uint8_t * dst, const uint8_t * src1,
  177. const uint8_t * src2, int dst_stride,
  178. int src_stride1, int h)
  179. {
  180. int i;
  181. vec_u8 a, b, d, tmp1, tmp2, mask, mask_, edges, align;
  182. mask_ = vec_lvsl(0, src2);
  183. for (i = 0; i < h; i++) {
  184. tmp1 = vec_ld(i * src_stride1, src1);
  185. mask = vec_lvsl(i * src_stride1, src1);
  186. tmp2 = vec_ld(i * src_stride1 + 15, src1);
  187. a = vec_perm(tmp1, tmp2, mask);
  188. tmp1 = vec_ld(i * 16, src2);
  189. tmp2 = vec_ld(i * 16 + 15, src2);
  190. b = vec_perm(tmp1, tmp2, mask_);
  191. tmp1 = vec_ld(0, dst);
  192. mask = vec_lvsl(0, dst);
  193. tmp2 = vec_ld(15, dst);
  194. d = vec_avg(a, b);
  195. edges = vec_perm(tmp2, tmp1, mask);
  196. align = vec_lvsr(0, dst);
  197. tmp2 = vec_perm(d, edges, align);
  198. tmp1 = vec_perm(edges, d, align);
  199. vec_st(tmp2, 15, dst);
  200. vec_st(tmp1, 0 , dst);
  201. dst += dst_stride;
  202. }
  203. }
  204. static inline void avg_pixels16_l2_altivec( uint8_t * dst, const uint8_t * src1,
  205. const uint8_t * src2, int dst_stride,
  206. int src_stride1, int h)
  207. {
  208. int i;
  209. vec_u8 a, b, d, tmp1, tmp2, mask, mask_, edges, align;
  210. mask_ = vec_lvsl(0, src2);
  211. for (i = 0; i < h; i++) {
  212. tmp1 = vec_ld(i * src_stride1, src1);
  213. mask = vec_lvsl(i * src_stride1, src1);
  214. tmp2 = vec_ld(i * src_stride1 + 15, src1);
  215. a = vec_perm(tmp1, tmp2, mask);
  216. tmp1 = vec_ld(i * 16, src2);
  217. tmp2 = vec_ld(i * 16 + 15, src2);
  218. b = vec_perm(tmp1, tmp2, mask_);
  219. tmp1 = vec_ld(0, dst);
  220. mask = vec_lvsl(0, dst);
  221. tmp2 = vec_ld(15, dst);
  222. d = vec_avg(vec_perm(tmp1, tmp2, mask), vec_avg(a, b));
  223. edges = vec_perm(tmp2, tmp1, mask);
  224. align = vec_lvsr(0, dst);
  225. tmp2 = vec_perm(d, edges, align);
  226. tmp1 = vec_perm(edges, d, align);
  227. vec_st(tmp2, 15, dst);
  228. vec_st(tmp1, 0 , dst);
  229. dst += dst_stride;
  230. }
  231. }
  232. /* Implemented but could be faster
  233. #define put_pixels16_l2_altivec(d,s1,s2,ds,s1s,h) put_pixels16_l2(d,s1,s2,ds,s1s,16,h)
  234. #define avg_pixels16_l2_altivec(d,s1,s2,ds,s1s,h) avg_pixels16_l2(d,s1,s2,ds,s1s,16,h)
  235. */
  236. H264_MC(put_, 16, altivec)
  237. H264_MC(avg_, 16, altivec)
  238. /****************************************************************************
  239. * IDCT transform:
  240. ****************************************************************************/
  241. #define VEC_1D_DCT(vb0,vb1,vb2,vb3,va0,va1,va2,va3) \
  242. /* 1st stage */ \
  243. vz0 = vec_add(vb0,vb2); /* temp[0] = Y[0] + Y[2] */ \
  244. vz1 = vec_sub(vb0,vb2); /* temp[1] = Y[0] - Y[2] */ \
  245. vz2 = vec_sra(vb1,vec_splat_u16(1)); \
  246. vz2 = vec_sub(vz2,vb3); /* temp[2] = Y[1].1/2 - Y[3] */ \
  247. vz3 = vec_sra(vb3,vec_splat_u16(1)); \
  248. vz3 = vec_add(vb1,vz3); /* temp[3] = Y[1] + Y[3].1/2 */ \
  249. /* 2nd stage: output */ \
  250. va0 = vec_add(vz0,vz3); /* x[0] = temp[0] + temp[3] */ \
  251. va1 = vec_add(vz1,vz2); /* x[1] = temp[1] + temp[2] */ \
  252. va2 = vec_sub(vz1,vz2); /* x[2] = temp[1] - temp[2] */ \
  253. va3 = vec_sub(vz0,vz3) /* x[3] = temp[0] - temp[3] */
  254. #define VEC_TRANSPOSE_4(a0,a1,a2,a3,b0,b1,b2,b3) \
  255. b0 = vec_mergeh( a0, a0 ); \
  256. b1 = vec_mergeh( a1, a0 ); \
  257. b2 = vec_mergeh( a2, a0 ); \
  258. b3 = vec_mergeh( a3, a0 ); \
  259. a0 = vec_mergeh( b0, b2 ); \
  260. a1 = vec_mergel( b0, b2 ); \
  261. a2 = vec_mergeh( b1, b3 ); \
  262. a3 = vec_mergel( b1, b3 ); \
  263. b0 = vec_mergeh( a0, a2 ); \
  264. b1 = vec_mergel( a0, a2 ); \
  265. b2 = vec_mergeh( a1, a3 ); \
  266. b3 = vec_mergel( a1, a3 )
  267. #define VEC_LOAD_U8_ADD_S16_STORE_U8(va) \
  268. vdst_orig = vec_ld(0, dst); \
  269. vdst = vec_perm(vdst_orig, zero_u8v, vdst_mask); \
  270. vdst_ss = (vec_s16) vec_mergeh(zero_u8v, vdst); \
  271. va = vec_add(va, vdst_ss); \
  272. va_u8 = vec_packsu(va, zero_s16v); \
  273. va_u32 = vec_splat((vec_u32)va_u8, 0); \
  274. vec_ste(va_u32, element, (uint32_t*)dst);
  275. static void ff_h264_idct_add_altivec(uint8_t *dst, DCTELEM *block, int stride)
  276. {
  277. vec_s16 va0, va1, va2, va3;
  278. vec_s16 vz0, vz1, vz2, vz3;
  279. vec_s16 vtmp0, vtmp1, vtmp2, vtmp3;
  280. vec_u8 va_u8;
  281. vec_u32 va_u32;
  282. vec_s16 vdst_ss;
  283. const vec_u16 v6us = vec_splat_u16(6);
  284. vec_u8 vdst, vdst_orig;
  285. vec_u8 vdst_mask = vec_lvsl(0, dst);
  286. int element = ((unsigned long)dst & 0xf) >> 2;
  287. LOAD_ZERO;
  288. block[0] += 32; /* add 32 as a DC-level for rounding */
  289. vtmp0 = vec_ld(0,block);
  290. vtmp1 = vec_sld(vtmp0, vtmp0, 8);
  291. vtmp2 = vec_ld(16,block);
  292. vtmp3 = vec_sld(vtmp2, vtmp2, 8);
  293. VEC_1D_DCT(vtmp0,vtmp1,vtmp2,vtmp3,va0,va1,va2,va3);
  294. VEC_TRANSPOSE_4(va0,va1,va2,va3,vtmp0,vtmp1,vtmp2,vtmp3);
  295. VEC_1D_DCT(vtmp0,vtmp1,vtmp2,vtmp3,va0,va1,va2,va3);
  296. va0 = vec_sra(va0,v6us);
  297. va1 = vec_sra(va1,v6us);
  298. va2 = vec_sra(va2,v6us);
  299. va3 = vec_sra(va3,v6us);
  300. VEC_LOAD_U8_ADD_S16_STORE_U8(va0);
  301. dst += stride;
  302. VEC_LOAD_U8_ADD_S16_STORE_U8(va1);
  303. dst += stride;
  304. VEC_LOAD_U8_ADD_S16_STORE_U8(va2);
  305. dst += stride;
  306. VEC_LOAD_U8_ADD_S16_STORE_U8(va3);
  307. }
  308. #define IDCT8_1D_ALTIVEC(s0, s1, s2, s3, s4, s5, s6, s7, d0, d1, d2, d3, d4, d5, d6, d7) {\
  309. /* a0 = SRC(0) + SRC(4); */ \
  310. vec_s16 a0v = vec_add(s0, s4); \
  311. /* a2 = SRC(0) - SRC(4); */ \
  312. vec_s16 a2v = vec_sub(s0, s4); \
  313. /* a4 = (SRC(2)>>1) - SRC(6); */ \
  314. vec_s16 a4v = vec_sub(vec_sra(s2, onev), s6); \
  315. /* a6 = (SRC(6)>>1) + SRC(2); */ \
  316. vec_s16 a6v = vec_add(vec_sra(s6, onev), s2); \
  317. /* b0 = a0 + a6; */ \
  318. vec_s16 b0v = vec_add(a0v, a6v); \
  319. /* b2 = a2 + a4; */ \
  320. vec_s16 b2v = vec_add(a2v, a4v); \
  321. /* b4 = a2 - a4; */ \
  322. vec_s16 b4v = vec_sub(a2v, a4v); \
  323. /* b6 = a0 - a6; */ \
  324. vec_s16 b6v = vec_sub(a0v, a6v); \
  325. /* a1 = SRC(5) - SRC(3) - SRC(7) - (SRC(7)>>1); */ \
  326. /* a1 = (SRC(5)-SRC(3)) - (SRC(7) + (SRC(7)>>1)); */ \
  327. vec_s16 a1v = vec_sub( vec_sub(s5, s3), vec_add(s7, vec_sra(s7, onev)) ); \
  328. /* a3 = SRC(7) + SRC(1) - SRC(3) - (SRC(3)>>1); */ \
  329. /* a3 = (SRC(7)+SRC(1)) - (SRC(3) + (SRC(3)>>1)); */ \
  330. vec_s16 a3v = vec_sub( vec_add(s7, s1), vec_add(s3, vec_sra(s3, onev)) );\
  331. /* a5 = SRC(7) - SRC(1) + SRC(5) + (SRC(5)>>1); */ \
  332. /* a5 = (SRC(7)-SRC(1)) + SRC(5) + (SRC(5)>>1); */ \
  333. vec_s16 a5v = vec_add( vec_sub(s7, s1), vec_add(s5, vec_sra(s5, onev)) );\
  334. /* a7 = SRC(5)+SRC(3) + SRC(1) + (SRC(1)>>1); */ \
  335. vec_s16 a7v = vec_add( vec_add(s5, s3), vec_add(s1, vec_sra(s1, onev)) );\
  336. /* b1 = (a7>>2) + a1; */ \
  337. vec_s16 b1v = vec_add( vec_sra(a7v, twov), a1v); \
  338. /* b3 = a3 + (a5>>2); */ \
  339. vec_s16 b3v = vec_add(a3v, vec_sra(a5v, twov)); \
  340. /* b5 = (a3>>2) - a5; */ \
  341. vec_s16 b5v = vec_sub( vec_sra(a3v, twov), a5v); \
  342. /* b7 = a7 - (a1>>2); */ \
  343. vec_s16 b7v = vec_sub( a7v, vec_sra(a1v, twov)); \
  344. /* DST(0, b0 + b7); */ \
  345. d0 = vec_add(b0v, b7v); \
  346. /* DST(1, b2 + b5); */ \
  347. d1 = vec_add(b2v, b5v); \
  348. /* DST(2, b4 + b3); */ \
  349. d2 = vec_add(b4v, b3v); \
  350. /* DST(3, b6 + b1); */ \
  351. d3 = vec_add(b6v, b1v); \
  352. /* DST(4, b6 - b1); */ \
  353. d4 = vec_sub(b6v, b1v); \
  354. /* DST(5, b4 - b3); */ \
  355. d5 = vec_sub(b4v, b3v); \
  356. /* DST(6, b2 - b5); */ \
  357. d6 = vec_sub(b2v, b5v); \
  358. /* DST(7, b0 - b7); */ \
  359. d7 = vec_sub(b0v, b7v); \
  360. }
  361. #define ALTIVEC_STORE_SUM_CLIP(dest, idctv, perm_ldv, perm_stv, sel) { \
  362. /* unaligned load */ \
  363. vec_u8 hv = vec_ld( 0, dest ); \
  364. vec_u8 lv = vec_ld( 7, dest ); \
  365. vec_u8 dstv = vec_perm( hv, lv, (vec_u8)perm_ldv ); \
  366. vec_s16 idct_sh6 = vec_sra(idctv, sixv); \
  367. vec_u16 dst16 = (vec_u16)vec_mergeh(zero_u8v, dstv); \
  368. vec_s16 idstsum = vec_adds(idct_sh6, (vec_s16)dst16); \
  369. vec_u8 idstsum8 = vec_packsu(zero_s16v, idstsum); \
  370. vec_u8 edgehv; \
  371. /* unaligned store */ \
  372. vec_u8 bodyv = vec_perm( idstsum8, idstsum8, perm_stv );\
  373. vec_u8 edgelv = vec_perm( sel, zero_u8v, perm_stv ); \
  374. lv = vec_sel( lv, bodyv, edgelv ); \
  375. vec_st( lv, 7, dest ); \
  376. hv = vec_ld( 0, dest ); \
  377. edgehv = vec_perm( zero_u8v, sel, perm_stv ); \
  378. hv = vec_sel( hv, bodyv, edgehv ); \
  379. vec_st( hv, 0, dest ); \
  380. }
  381. static void ff_h264_idct8_add_altivec( uint8_t *dst, DCTELEM *dct, int stride ) {
  382. vec_s16 s0, s1, s2, s3, s4, s5, s6, s7;
  383. vec_s16 d0, d1, d2, d3, d4, d5, d6, d7;
  384. vec_s16 idct0, idct1, idct2, idct3, idct4, idct5, idct6, idct7;
  385. vec_u8 perm_ldv = vec_lvsl(0, dst);
  386. vec_u8 perm_stv = vec_lvsr(8, dst);
  387. const vec_u16 onev = vec_splat_u16(1);
  388. const vec_u16 twov = vec_splat_u16(2);
  389. const vec_u16 sixv = vec_splat_u16(6);
  390. const vec_u8 sel = (vec_u8) {0,0,0,0,0,0,0,0,-1,-1,-1,-1,-1,-1,-1,-1};
  391. LOAD_ZERO;
  392. dct[0] += 32; // rounding for the >>6 at the end
  393. s0 = vec_ld(0x00, (int16_t*)dct);
  394. s1 = vec_ld(0x10, (int16_t*)dct);
  395. s2 = vec_ld(0x20, (int16_t*)dct);
  396. s3 = vec_ld(0x30, (int16_t*)dct);
  397. s4 = vec_ld(0x40, (int16_t*)dct);
  398. s5 = vec_ld(0x50, (int16_t*)dct);
  399. s6 = vec_ld(0x60, (int16_t*)dct);
  400. s7 = vec_ld(0x70, (int16_t*)dct);
  401. IDCT8_1D_ALTIVEC(s0, s1, s2, s3, s4, s5, s6, s7,
  402. d0, d1, d2, d3, d4, d5, d6, d7);
  403. TRANSPOSE8( d0, d1, d2, d3, d4, d5, d6, d7 );
  404. IDCT8_1D_ALTIVEC(d0, d1, d2, d3, d4, d5, d6, d7,
  405. idct0, idct1, idct2, idct3, idct4, idct5, idct6, idct7);
  406. ALTIVEC_STORE_SUM_CLIP(&dst[0*stride], idct0, perm_ldv, perm_stv, sel);
  407. ALTIVEC_STORE_SUM_CLIP(&dst[1*stride], idct1, perm_ldv, perm_stv, sel);
  408. ALTIVEC_STORE_SUM_CLIP(&dst[2*stride], idct2, perm_ldv, perm_stv, sel);
  409. ALTIVEC_STORE_SUM_CLIP(&dst[3*stride], idct3, perm_ldv, perm_stv, sel);
  410. ALTIVEC_STORE_SUM_CLIP(&dst[4*stride], idct4, perm_ldv, perm_stv, sel);
  411. ALTIVEC_STORE_SUM_CLIP(&dst[5*stride], idct5, perm_ldv, perm_stv, sel);
  412. ALTIVEC_STORE_SUM_CLIP(&dst[6*stride], idct6, perm_ldv, perm_stv, sel);
  413. ALTIVEC_STORE_SUM_CLIP(&dst[7*stride], idct7, perm_ldv, perm_stv, sel);
  414. }
  415. static av_always_inline void h264_idct_dc_add_internal(uint8_t *dst, DCTELEM *block, int stride, int size)
  416. {
  417. vec_s16 dc16;
  418. vec_u8 dcplus, dcminus, v0, v1, v2, v3, aligner;
  419. LOAD_ZERO;
  420. DECLARE_ALIGNED(16, int, dc);
  421. int i;
  422. dc = (block[0] + 32) >> 6;
  423. dc16 = vec_splat((vec_s16) vec_lde(0, &dc), 1);
  424. if (size == 4)
  425. dc16 = vec_sld(dc16, zero_s16v, 8);
  426. dcplus = vec_packsu(dc16, zero_s16v);
  427. dcminus = vec_packsu(vec_sub(zero_s16v, dc16), zero_s16v);
  428. aligner = vec_lvsr(0, dst);
  429. dcplus = vec_perm(dcplus, dcplus, aligner);
  430. dcminus = vec_perm(dcminus, dcminus, aligner);
  431. for (i = 0; i < size; i += 4) {
  432. v0 = vec_ld(0, dst+0*stride);
  433. v1 = vec_ld(0, dst+1*stride);
  434. v2 = vec_ld(0, dst+2*stride);
  435. v3 = vec_ld(0, dst+3*stride);
  436. v0 = vec_adds(v0, dcplus);
  437. v1 = vec_adds(v1, dcplus);
  438. v2 = vec_adds(v2, dcplus);
  439. v3 = vec_adds(v3, dcplus);
  440. v0 = vec_subs(v0, dcminus);
  441. v1 = vec_subs(v1, dcminus);
  442. v2 = vec_subs(v2, dcminus);
  443. v3 = vec_subs(v3, dcminus);
  444. vec_st(v0, 0, dst+0*stride);
  445. vec_st(v1, 0, dst+1*stride);
  446. vec_st(v2, 0, dst+2*stride);
  447. vec_st(v3, 0, dst+3*stride);
  448. dst += 4*stride;
  449. }
  450. }
  451. static void h264_idct_dc_add_altivec(uint8_t *dst, DCTELEM *block, int stride)
  452. {
  453. h264_idct_dc_add_internal(dst, block, stride, 4);
  454. }
  455. static void ff_h264_idct8_dc_add_altivec(uint8_t *dst, DCTELEM *block, int stride)
  456. {
  457. h264_idct_dc_add_internal(dst, block, stride, 8);
  458. }
  459. static void ff_h264_idct_add16_altivec(uint8_t *dst, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[15*8]){
  460. int i;
  461. for(i=0; i<16; i++){
  462. int nnz = nnzc[ scan8[i] ];
  463. if(nnz){
  464. if(nnz==1 && block[i*16]) h264_idct_dc_add_altivec(dst + block_offset[i], block + i*16, stride);
  465. else ff_h264_idct_add_altivec(dst + block_offset[i], block + i*16, stride);
  466. }
  467. }
  468. }
  469. static void ff_h264_idct_add16intra_altivec(uint8_t *dst, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[15*8]){
  470. int i;
  471. for(i=0; i<16; i++){
  472. if(nnzc[ scan8[i] ]) ff_h264_idct_add_altivec(dst + block_offset[i], block + i*16, stride);
  473. else if(block[i*16]) h264_idct_dc_add_altivec(dst + block_offset[i], block + i*16, stride);
  474. }
  475. }
  476. static void ff_h264_idct8_add4_altivec(uint8_t *dst, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[15*8]){
  477. int i;
  478. for(i=0; i<16; i+=4){
  479. int nnz = nnzc[ scan8[i] ];
  480. if(nnz){
  481. if(nnz==1 && block[i*16]) ff_h264_idct8_dc_add_altivec(dst + block_offset[i], block + i*16, stride);
  482. else ff_h264_idct8_add_altivec (dst + block_offset[i], block + i*16, stride);
  483. }
  484. }
  485. }
  486. static void ff_h264_idct_add8_altivec(uint8_t **dest, const int *block_offset, DCTELEM *block, int stride, const uint8_t nnzc[15*8]){
  487. int i, j;
  488. for (j = 1; j < 3; j++) {
  489. for(i = j * 16; i < j * 16 + 4; i++){
  490. if(nnzc[ scan8[i] ])
  491. ff_h264_idct_add_altivec(dest[j-1] + block_offset[i], block + i*16, stride);
  492. else if(block[i*16])
  493. h264_idct_dc_add_altivec(dest[j-1] + block_offset[i], block + i*16, stride);
  494. }
  495. }
  496. }
  497. #define transpose4x16(r0, r1, r2, r3) { \
  498. register vec_u8 r4; \
  499. register vec_u8 r5; \
  500. register vec_u8 r6; \
  501. register vec_u8 r7; \
  502. \
  503. r4 = vec_mergeh(r0, r2); /*0, 2 set 0*/ \
  504. r5 = vec_mergel(r0, r2); /*0, 2 set 1*/ \
  505. r6 = vec_mergeh(r1, r3); /*1, 3 set 0*/ \
  506. r7 = vec_mergel(r1, r3); /*1, 3 set 1*/ \
  507. \
  508. r0 = vec_mergeh(r4, r6); /*all set 0*/ \
  509. r1 = vec_mergel(r4, r6); /*all set 1*/ \
  510. r2 = vec_mergeh(r5, r7); /*all set 2*/ \
  511. r3 = vec_mergel(r5, r7); /*all set 3*/ \
  512. }
  513. static inline void write16x4(uint8_t *dst, int dst_stride,
  514. register vec_u8 r0, register vec_u8 r1,
  515. register vec_u8 r2, register vec_u8 r3) {
  516. DECLARE_ALIGNED(16, unsigned char, result)[64];
  517. uint32_t *src_int = (uint32_t *)result, *dst_int = (uint32_t *)dst;
  518. int int_dst_stride = dst_stride/4;
  519. vec_st(r0, 0, result);
  520. vec_st(r1, 16, result);
  521. vec_st(r2, 32, result);
  522. vec_st(r3, 48, result);
  523. /* FIXME: there has to be a better way!!!! */
  524. *dst_int = *src_int;
  525. *(dst_int+ int_dst_stride) = *(src_int + 1);
  526. *(dst_int+ 2*int_dst_stride) = *(src_int + 2);
  527. *(dst_int+ 3*int_dst_stride) = *(src_int + 3);
  528. *(dst_int+ 4*int_dst_stride) = *(src_int + 4);
  529. *(dst_int+ 5*int_dst_stride) = *(src_int + 5);
  530. *(dst_int+ 6*int_dst_stride) = *(src_int + 6);
  531. *(dst_int+ 7*int_dst_stride) = *(src_int + 7);
  532. *(dst_int+ 8*int_dst_stride) = *(src_int + 8);
  533. *(dst_int+ 9*int_dst_stride) = *(src_int + 9);
  534. *(dst_int+10*int_dst_stride) = *(src_int + 10);
  535. *(dst_int+11*int_dst_stride) = *(src_int + 11);
  536. *(dst_int+12*int_dst_stride) = *(src_int + 12);
  537. *(dst_int+13*int_dst_stride) = *(src_int + 13);
  538. *(dst_int+14*int_dst_stride) = *(src_int + 14);
  539. *(dst_int+15*int_dst_stride) = *(src_int + 15);
  540. }
  541. /** \brief performs a 6x16 transpose of data in src, and stores it to dst
  542. \todo FIXME: see if we can't spare some vec_lvsl() by them factorizing
  543. out of unaligned_load() */
  544. #define readAndTranspose16x6(src, src_stride, r8, r9, r10, r11, r12, r13) {\
  545. register vec_u8 r0 = unaligned_load(0, src); \
  546. register vec_u8 r1 = unaligned_load( src_stride, src); \
  547. register vec_u8 r2 = unaligned_load(2* src_stride, src); \
  548. register vec_u8 r3 = unaligned_load(3* src_stride, src); \
  549. register vec_u8 r4 = unaligned_load(4* src_stride, src); \
  550. register vec_u8 r5 = unaligned_load(5* src_stride, src); \
  551. register vec_u8 r6 = unaligned_load(6* src_stride, src); \
  552. register vec_u8 r7 = unaligned_load(7* src_stride, src); \
  553. register vec_u8 r14 = unaligned_load(14*src_stride, src); \
  554. register vec_u8 r15 = unaligned_load(15*src_stride, src); \
  555. \
  556. r8 = unaligned_load( 8*src_stride, src); \
  557. r9 = unaligned_load( 9*src_stride, src); \
  558. r10 = unaligned_load(10*src_stride, src); \
  559. r11 = unaligned_load(11*src_stride, src); \
  560. r12 = unaligned_load(12*src_stride, src); \
  561. r13 = unaligned_load(13*src_stride, src); \
  562. \
  563. /*Merge first pairs*/ \
  564. r0 = vec_mergeh(r0, r8); /*0, 8*/ \
  565. r1 = vec_mergeh(r1, r9); /*1, 9*/ \
  566. r2 = vec_mergeh(r2, r10); /*2,10*/ \
  567. r3 = vec_mergeh(r3, r11); /*3,11*/ \
  568. r4 = vec_mergeh(r4, r12); /*4,12*/ \
  569. r5 = vec_mergeh(r5, r13); /*5,13*/ \
  570. r6 = vec_mergeh(r6, r14); /*6,14*/ \
  571. r7 = vec_mergeh(r7, r15); /*7,15*/ \
  572. \
  573. /*Merge second pairs*/ \
  574. r8 = vec_mergeh(r0, r4); /*0,4, 8,12 set 0*/ \
  575. r9 = vec_mergel(r0, r4); /*0,4, 8,12 set 1*/ \
  576. r10 = vec_mergeh(r1, r5); /*1,5, 9,13 set 0*/ \
  577. r11 = vec_mergel(r1, r5); /*1,5, 9,13 set 1*/ \
  578. r12 = vec_mergeh(r2, r6); /*2,6,10,14 set 0*/ \
  579. r13 = vec_mergel(r2, r6); /*2,6,10,14 set 1*/ \
  580. r14 = vec_mergeh(r3, r7); /*3,7,11,15 set 0*/ \
  581. r15 = vec_mergel(r3, r7); /*3,7,11,15 set 1*/ \
  582. \
  583. /*Third merge*/ \
  584. r0 = vec_mergeh(r8, r12); /*0,2,4,6,8,10,12,14 set 0*/ \
  585. r1 = vec_mergel(r8, r12); /*0,2,4,6,8,10,12,14 set 1*/ \
  586. r2 = vec_mergeh(r9, r13); /*0,2,4,6,8,10,12,14 set 2*/ \
  587. r4 = vec_mergeh(r10, r14); /*1,3,5,7,9,11,13,15 set 0*/ \
  588. r5 = vec_mergel(r10, r14); /*1,3,5,7,9,11,13,15 set 1*/ \
  589. r6 = vec_mergeh(r11, r15); /*1,3,5,7,9,11,13,15 set 2*/ \
  590. /* Don't need to compute 3 and 7*/ \
  591. \
  592. /*Final merge*/ \
  593. r8 = vec_mergeh(r0, r4); /*all set 0*/ \
  594. r9 = vec_mergel(r0, r4); /*all set 1*/ \
  595. r10 = vec_mergeh(r1, r5); /*all set 2*/ \
  596. r11 = vec_mergel(r1, r5); /*all set 3*/ \
  597. r12 = vec_mergeh(r2, r6); /*all set 4*/ \
  598. r13 = vec_mergel(r2, r6); /*all set 5*/ \
  599. /* Don't need to compute 14 and 15*/ \
  600. \
  601. }
  602. // out: o = |x-y| < a
  603. static inline vec_u8 diff_lt_altivec ( register vec_u8 x,
  604. register vec_u8 y,
  605. register vec_u8 a) {
  606. register vec_u8 diff = vec_subs(x, y);
  607. register vec_u8 diffneg = vec_subs(y, x);
  608. register vec_u8 o = vec_or(diff, diffneg); /* |x-y| */
  609. o = (vec_u8)vec_cmplt(o, a);
  610. return o;
  611. }
  612. static inline vec_u8 h264_deblock_mask ( register vec_u8 p0,
  613. register vec_u8 p1,
  614. register vec_u8 q0,
  615. register vec_u8 q1,
  616. register vec_u8 alpha,
  617. register vec_u8 beta) {
  618. register vec_u8 mask;
  619. register vec_u8 tempmask;
  620. mask = diff_lt_altivec(p0, q0, alpha);
  621. tempmask = diff_lt_altivec(p1, p0, beta);
  622. mask = vec_and(mask, tempmask);
  623. tempmask = diff_lt_altivec(q1, q0, beta);
  624. mask = vec_and(mask, tempmask);
  625. return mask;
  626. }
  627. // out: newp1 = clip((p2 + ((p0 + q0 + 1) >> 1)) >> 1, p1-tc0, p1+tc0)
  628. static inline vec_u8 h264_deblock_q1(register vec_u8 p0,
  629. register vec_u8 p1,
  630. register vec_u8 p2,
  631. register vec_u8 q0,
  632. register vec_u8 tc0) {
  633. register vec_u8 average = vec_avg(p0, q0);
  634. register vec_u8 temp;
  635. register vec_u8 uncliped;
  636. register vec_u8 ones;
  637. register vec_u8 max;
  638. register vec_u8 min;
  639. register vec_u8 newp1;
  640. temp = vec_xor(average, p2);
  641. average = vec_avg(average, p2); /*avg(p2, avg(p0, q0)) */
  642. ones = vec_splat_u8(1);
  643. temp = vec_and(temp, ones); /*(p2^avg(p0, q0)) & 1 */
  644. uncliped = vec_subs(average, temp); /*(p2+((p0+q0+1)>>1))>>1 */
  645. max = vec_adds(p1, tc0);
  646. min = vec_subs(p1, tc0);
  647. newp1 = vec_max(min, uncliped);
  648. newp1 = vec_min(max, newp1);
  649. return newp1;
  650. }
  651. #define h264_deblock_p0_q0(p0, p1, q0, q1, tc0masked) { \
  652. \
  653. const vec_u8 A0v = vec_sl(vec_splat_u8(10), vec_splat_u8(4)); \
  654. \
  655. register vec_u8 pq0bit = vec_xor(p0,q0); \
  656. register vec_u8 q1minus; \
  657. register vec_u8 p0minus; \
  658. register vec_u8 stage1; \
  659. register vec_u8 stage2; \
  660. register vec_u8 vec160; \
  661. register vec_u8 delta; \
  662. register vec_u8 deltaneg; \
  663. \
  664. q1minus = vec_nor(q1, q1); /* 255 - q1 */ \
  665. stage1 = vec_avg(p1, q1minus); /* (p1 - q1 + 256)>>1 */ \
  666. stage2 = vec_sr(stage1, vec_splat_u8(1)); /* (p1 - q1 + 256)>>2 = 64 + (p1 - q1) >> 2 */ \
  667. p0minus = vec_nor(p0, p0); /* 255 - p0 */ \
  668. stage1 = vec_avg(q0, p0minus); /* (q0 - p0 + 256)>>1 */ \
  669. pq0bit = vec_and(pq0bit, vec_splat_u8(1)); \
  670. stage2 = vec_avg(stage2, pq0bit); /* 32 + ((q0 - p0)&1 + (p1 - q1) >> 2 + 1) >> 1 */ \
  671. stage2 = vec_adds(stage2, stage1); /* 160 + ((p0 - q0) + (p1 - q1) >> 2 + 1) >> 1 */ \
  672. vec160 = vec_ld(0, &A0v); \
  673. deltaneg = vec_subs(vec160, stage2); /* -d */ \
  674. delta = vec_subs(stage2, vec160); /* d */ \
  675. deltaneg = vec_min(tc0masked, deltaneg); \
  676. delta = vec_min(tc0masked, delta); \
  677. p0 = vec_subs(p0, deltaneg); \
  678. q0 = vec_subs(q0, delta); \
  679. p0 = vec_adds(p0, delta); \
  680. q0 = vec_adds(q0, deltaneg); \
  681. }
  682. #define h264_loop_filter_luma_altivec(p2, p1, p0, q0, q1, q2, alpha, beta, tc0) { \
  683. DECLARE_ALIGNED(16, unsigned char, temp)[16]; \
  684. register vec_u8 alphavec; \
  685. register vec_u8 betavec; \
  686. register vec_u8 mask; \
  687. register vec_u8 p1mask; \
  688. register vec_u8 q1mask; \
  689. register vector signed char tc0vec; \
  690. register vec_u8 finaltc0; \
  691. register vec_u8 tc0masked; \
  692. register vec_u8 newp1; \
  693. register vec_u8 newq1; \
  694. \
  695. temp[0] = alpha; \
  696. temp[1] = beta; \
  697. alphavec = vec_ld(0, temp); \
  698. betavec = vec_splat(alphavec, 0x1); \
  699. alphavec = vec_splat(alphavec, 0x0); \
  700. mask = h264_deblock_mask(p0, p1, q0, q1, alphavec, betavec); /*if in block */ \
  701. \
  702. *((int *)temp) = *((int *)tc0); \
  703. tc0vec = vec_ld(0, (signed char*)temp); \
  704. tc0vec = vec_mergeh(tc0vec, tc0vec); \
  705. tc0vec = vec_mergeh(tc0vec, tc0vec); \
  706. mask = vec_and(mask, vec_cmpgt(tc0vec, vec_splat_s8(-1))); /* if tc0[i] >= 0 */ \
  707. finaltc0 = vec_and((vec_u8)tc0vec, mask); /* tc = tc0 */ \
  708. \
  709. p1mask = diff_lt_altivec(p2, p0, betavec); \
  710. p1mask = vec_and(p1mask, mask); /* if ( |p2 - p0| < beta) */ \
  711. tc0masked = vec_and(p1mask, (vec_u8)tc0vec); \
  712. finaltc0 = vec_sub(finaltc0, p1mask); /* tc++ */ \
  713. newp1 = h264_deblock_q1(p0, p1, p2, q0, tc0masked); \
  714. /*end if*/ \
  715. \
  716. q1mask = diff_lt_altivec(q2, q0, betavec); \
  717. q1mask = vec_and(q1mask, mask); /* if ( |q2 - q0| < beta ) */\
  718. tc0masked = vec_and(q1mask, (vec_u8)tc0vec); \
  719. finaltc0 = vec_sub(finaltc0, q1mask); /* tc++ */ \
  720. newq1 = h264_deblock_q1(p0, q1, q2, q0, tc0masked); \
  721. /*end if*/ \
  722. \
  723. h264_deblock_p0_q0(p0, p1, q0, q1, finaltc0); \
  724. p1 = newp1; \
  725. q1 = newq1; \
  726. }
  727. static void h264_v_loop_filter_luma_altivec(uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0) {
  728. if ((tc0[0] & tc0[1] & tc0[2] & tc0[3]) >= 0) {
  729. register vec_u8 p2 = vec_ld(-3*stride, pix);
  730. register vec_u8 p1 = vec_ld(-2*stride, pix);
  731. register vec_u8 p0 = vec_ld(-1*stride, pix);
  732. register vec_u8 q0 = vec_ld(0, pix);
  733. register vec_u8 q1 = vec_ld(stride, pix);
  734. register vec_u8 q2 = vec_ld(2*stride, pix);
  735. h264_loop_filter_luma_altivec(p2, p1, p0, q0, q1, q2, alpha, beta, tc0);
  736. vec_st(p1, -2*stride, pix);
  737. vec_st(p0, -1*stride, pix);
  738. vec_st(q0, 0, pix);
  739. vec_st(q1, stride, pix);
  740. }
  741. }
  742. static void h264_h_loop_filter_luma_altivec(uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0) {
  743. register vec_u8 line0, line1, line2, line3, line4, line5;
  744. if ((tc0[0] & tc0[1] & tc0[2] & tc0[3]) < 0)
  745. return;
  746. readAndTranspose16x6(pix-3, stride, line0, line1, line2, line3, line4, line5);
  747. h264_loop_filter_luma_altivec(line0, line1, line2, line3, line4, line5, alpha, beta, tc0);
  748. transpose4x16(line1, line2, line3, line4);
  749. write16x4(pix-2, stride, line1, line2, line3, line4);
  750. }
  751. static av_always_inline
  752. void weight_h264_W_altivec(uint8_t *block, int stride, int height,
  753. int log2_denom, int weight, int offset, int w)
  754. {
  755. int y, aligned;
  756. vec_u8 vblock;
  757. vec_s16 vtemp, vweight, voffset, v0, v1;
  758. vec_u16 vlog2_denom;
  759. DECLARE_ALIGNED(16, int32_t, temp)[4];
  760. LOAD_ZERO;
  761. offset <<= log2_denom;
  762. if(log2_denom) offset += 1<<(log2_denom-1);
  763. temp[0] = log2_denom;
  764. temp[1] = weight;
  765. temp[2] = offset;
  766. vtemp = (vec_s16)vec_ld(0, temp);
  767. vlog2_denom = (vec_u16)vec_splat(vtemp, 1);
  768. vweight = vec_splat(vtemp, 3);
  769. voffset = vec_splat(vtemp, 5);
  770. aligned = !((unsigned long)block & 0xf);
  771. for (y = 0; y < height; y++) {
  772. vblock = vec_ld(0, block);
  773. v0 = (vec_s16)vec_mergeh(zero_u8v, vblock);
  774. v1 = (vec_s16)vec_mergel(zero_u8v, vblock);
  775. if (w == 16 || aligned) {
  776. v0 = vec_mladd(v0, vweight, zero_s16v);
  777. v0 = vec_adds(v0, voffset);
  778. v0 = vec_sra(v0, vlog2_denom);
  779. }
  780. if (w == 16 || !aligned) {
  781. v1 = vec_mladd(v1, vweight, zero_s16v);
  782. v1 = vec_adds(v1, voffset);
  783. v1 = vec_sra(v1, vlog2_denom);
  784. }
  785. vblock = vec_packsu(v0, v1);
  786. vec_st(vblock, 0, block);
  787. block += stride;
  788. }
  789. }
  790. static av_always_inline
  791. void biweight_h264_W_altivec(uint8_t *dst, uint8_t *src, int stride, int height,
  792. int log2_denom, int weightd, int weights, int offset, int w)
  793. {
  794. int y, dst_aligned, src_aligned;
  795. vec_u8 vsrc, vdst;
  796. vec_s16 vtemp, vweights, vweightd, voffset, v0, v1, v2, v3;
  797. vec_u16 vlog2_denom;
  798. DECLARE_ALIGNED(16, int32_t, temp)[4];
  799. LOAD_ZERO;
  800. offset = ((offset + 1) | 1) << log2_denom;
  801. temp[0] = log2_denom+1;
  802. temp[1] = weights;
  803. temp[2] = weightd;
  804. temp[3] = offset;
  805. vtemp = (vec_s16)vec_ld(0, temp);
  806. vlog2_denom = (vec_u16)vec_splat(vtemp, 1);
  807. vweights = vec_splat(vtemp, 3);
  808. vweightd = vec_splat(vtemp, 5);
  809. voffset = vec_splat(vtemp, 7);
  810. dst_aligned = !((unsigned long)dst & 0xf);
  811. src_aligned = !((unsigned long)src & 0xf);
  812. for (y = 0; y < height; y++) {
  813. vdst = vec_ld(0, dst);
  814. vsrc = vec_ld(0, src);
  815. v0 = (vec_s16)vec_mergeh(zero_u8v, vdst);
  816. v1 = (vec_s16)vec_mergel(zero_u8v, vdst);
  817. v2 = (vec_s16)vec_mergeh(zero_u8v, vsrc);
  818. v3 = (vec_s16)vec_mergel(zero_u8v, vsrc);
  819. if (w == 8) {
  820. if (src_aligned)
  821. v3 = v2;
  822. else
  823. v2 = v3;
  824. }
  825. if (w == 16 || dst_aligned) {
  826. v0 = vec_mladd(v0, vweightd, zero_s16v);
  827. v2 = vec_mladd(v2, vweights, zero_s16v);
  828. v0 = vec_adds(v0, voffset);
  829. v0 = vec_adds(v0, v2);
  830. v0 = vec_sra(v0, vlog2_denom);
  831. }
  832. if (w == 16 || !dst_aligned) {
  833. v1 = vec_mladd(v1, vweightd, zero_s16v);
  834. v3 = vec_mladd(v3, vweights, zero_s16v);
  835. v1 = vec_adds(v1, voffset);
  836. v1 = vec_adds(v1, v3);
  837. v1 = vec_sra(v1, vlog2_denom);
  838. }
  839. vdst = vec_packsu(v0, v1);
  840. vec_st(vdst, 0, dst);
  841. dst += stride;
  842. src += stride;
  843. }
  844. }
  845. #define H264_WEIGHT(W) \
  846. static void ff_weight_h264_pixels ## W ## _altivec(uint8_t *block, int stride, int height, \
  847. int log2_denom, int weight, int offset){ \
  848. weight_h264_W_altivec(block, stride, height, log2_denom, weight, offset, W); \
  849. }\
  850. static void ff_biweight_h264_pixels ## W ## _altivec(uint8_t *dst, uint8_t *src, int stride, int height, \
  851. int log2_denom, int weightd, int weights, int offset){ \
  852. biweight_h264_W_altivec(dst, src, stride, height, log2_denom, weightd, weights, offset, W); \
  853. }
  854. H264_WEIGHT(16)
  855. H264_WEIGHT( 8)
  856. void dsputil_h264_init_ppc(DSPContext* c, AVCodecContext *avctx) {
  857. const int high_bit_depth = avctx->bits_per_raw_sample > 8;
  858. if (av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC) {
  859. if (!high_bit_depth) {
  860. c->put_h264_chroma_pixels_tab[0] = put_h264_chroma_mc8_altivec;
  861. c->avg_h264_chroma_pixels_tab[0] = avg_h264_chroma_mc8_altivec;
  862. #define dspfunc(PFX, IDX, NUM) \
  863. c->PFX ## _pixels_tab[IDX][ 0] = PFX ## NUM ## _mc00_altivec; \
  864. c->PFX ## _pixels_tab[IDX][ 1] = PFX ## NUM ## _mc10_altivec; \
  865. c->PFX ## _pixels_tab[IDX][ 2] = PFX ## NUM ## _mc20_altivec; \
  866. c->PFX ## _pixels_tab[IDX][ 3] = PFX ## NUM ## _mc30_altivec; \
  867. c->PFX ## _pixels_tab[IDX][ 4] = PFX ## NUM ## _mc01_altivec; \
  868. c->PFX ## _pixels_tab[IDX][ 5] = PFX ## NUM ## _mc11_altivec; \
  869. c->PFX ## _pixels_tab[IDX][ 6] = PFX ## NUM ## _mc21_altivec; \
  870. c->PFX ## _pixels_tab[IDX][ 7] = PFX ## NUM ## _mc31_altivec; \
  871. c->PFX ## _pixels_tab[IDX][ 8] = PFX ## NUM ## _mc02_altivec; \
  872. c->PFX ## _pixels_tab[IDX][ 9] = PFX ## NUM ## _mc12_altivec; \
  873. c->PFX ## _pixels_tab[IDX][10] = PFX ## NUM ## _mc22_altivec; \
  874. c->PFX ## _pixels_tab[IDX][11] = PFX ## NUM ## _mc32_altivec; \
  875. c->PFX ## _pixels_tab[IDX][12] = PFX ## NUM ## _mc03_altivec; \
  876. c->PFX ## _pixels_tab[IDX][13] = PFX ## NUM ## _mc13_altivec; \
  877. c->PFX ## _pixels_tab[IDX][14] = PFX ## NUM ## _mc23_altivec; \
  878. c->PFX ## _pixels_tab[IDX][15] = PFX ## NUM ## _mc33_altivec
  879. dspfunc(put_h264_qpel, 0, 16);
  880. dspfunc(avg_h264_qpel, 0, 16);
  881. #undef dspfunc
  882. }
  883. }
  884. }
  885. void ff_h264dsp_init_ppc(H264DSPContext *c, const int bit_depth, const int chroma_format_idc)
  886. {
  887. if (av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC) {
  888. if (bit_depth == 8) {
  889. c->h264_idct_add = ff_h264_idct_add_altivec;
  890. if (chroma_format_idc == 1)
  891. c->h264_idct_add8 = ff_h264_idct_add8_altivec;
  892. c->h264_idct_add16 = ff_h264_idct_add16_altivec;
  893. c->h264_idct_add16intra = ff_h264_idct_add16intra_altivec;
  894. c->h264_idct_dc_add= h264_idct_dc_add_altivec;
  895. c->h264_idct8_dc_add = ff_h264_idct8_dc_add_altivec;
  896. c->h264_idct8_add = ff_h264_idct8_add_altivec;
  897. c->h264_idct8_add4 = ff_h264_idct8_add4_altivec;
  898. c->h264_v_loop_filter_luma= h264_v_loop_filter_luma_altivec;
  899. c->h264_h_loop_filter_luma= h264_h_loop_filter_luma_altivec;
  900. c->weight_h264_pixels_tab[0] = ff_weight_h264_pixels16_altivec;
  901. c->weight_h264_pixels_tab[1] = ff_weight_h264_pixels8_altivec;
  902. c->biweight_h264_pixels_tab[0] = ff_biweight_h264_pixels16_altivec;
  903. c->biweight_h264_pixels_tab[1] = ff_biweight_h264_pixels8_altivec;
  904. }
  905. }
  906. }