idct_altivec.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:9k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.  * Copyright (c) 2001 Michel Lespinasse
  3.  *
  4.  * This library is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU Lesser General Public
  6.  * License as published by the Free Software Foundation; either
  7.  * version 2 of the License, or (at your option) any later version.
  8.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.  * Lesser General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Lesser General Public
  15.  * License along with this library; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  */
  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 ffmpeg.
  23.  *
  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 "../dsputil.h"
  37. #include "gcc_fixes.h"
  38. #include "dsputil_altivec.h"
  39. #define vector_s16_t vector signed short
  40. #define const_vector_s16_t const_vector signed short
  41. #define vector_u16_t vector unsigned short
  42. #define vector_s8_t vector signed char
  43. #define vector_u8_t vector unsigned char
  44. #define vector_s32_t vector signed int
  45. #define vector_u32_t vector unsigned int
  46. #define IDCT_HALF
  47.     /* 1st stage */
  48.     t1 = vec_mradds (a1, vx7, vx1 );
  49.     t8 = vec_mradds (a1, vx1, vec_subs (zero, vx7));
  50.     t7 = vec_mradds (a2, vx5, vx3);
  51.     t3 = vec_mradds (ma2, vx3, vx5);
  52.     /* 2nd stage */
  53.     t5 = vec_adds (vx0, vx4);
  54.     t0 = vec_subs (vx0, vx4);
  55.     t2 = vec_mradds (a0, vx6, vx2);
  56.     t4 = vec_mradds (a0, vx2, vec_subs (zero, vx6));
  57.     t6 = vec_adds (t8, t3);
  58.     t3 = vec_subs (t8, t3);
  59.     t8 = vec_subs (t1, t7);
  60.     t1 = vec_adds (t1, t7);
  61.     /* 3rd stage */
  62.     t7 = vec_adds (t5, t2);
  63.     t2 = vec_subs (t5, t2);
  64.     t5 = vec_adds (t0, t4);
  65.     t0 = vec_subs (t0, t4);
  66.     t4 = vec_subs (t8, t3);
  67.     t3 = vec_adds (t8, t3);
  68.     /* 4th stage */
  69.     vy0 = vec_adds (t7, t1);
  70.     vy7 = vec_subs (t7, t1);
  71.     vy1 = vec_mradds (c4, t3, t5);
  72.     vy6 = vec_mradds (mc4, t3, t5);
  73.     vy2 = vec_mradds (c4, t4, t0);
  74.     vy5 = vec_mradds (mc4, t4, t0);
  75.     vy3 = vec_adds (t2, t6);
  76.     vy4 = vec_subs (t2, t6);
  77. #define IDCT
  78.     vector_s16_t vx0, vx1, vx2, vx3, vx4, vx5, vx6, vx7;
  79.     vector_s16_t vy0, vy1, vy2, vy3, vy4, vy5, vy6, vy7;
  80.     vector_s16_t a0, a1, a2, ma2, c4, mc4, zero, bias;
  81.     vector_s16_t t0, t1, t2, t3, t4, t5, t6, t7, t8;
  82.     vector_u16_t shift;
  83.     c4 = vec_splat (constants[0], 0);
  84.     a0 = vec_splat (constants[0], 1);
  85.     a1 = vec_splat (constants[0], 2);
  86.     a2 = vec_splat (constants[0], 3);
  87.     mc4 = vec_splat (constants[0], 4);
  88.     ma2 = vec_splat (constants[0], 5);
  89.     bias = (vector_s16_t)vec_splat ((vector_s32_t)constants[0], 3);
  90.     zero = vec_splat_s16 (0);
  91.     shift = vec_splat_u16 (4);
  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.     IDCT_HALF
  101.     vx0 = vec_mergeh (vy0, vy4);
  102.     vx1 = vec_mergel (vy0, vy4);
  103.     vx2 = vec_mergeh (vy1, vy5);
  104.     vx3 = vec_mergel (vy1, vy5);
  105.     vx4 = vec_mergeh (vy2, vy6);
  106.     vx5 = vec_mergel (vy2, vy6);
  107.     vx6 = vec_mergeh (vy3, vy7);
  108.     vx7 = vec_mergel (vy3, vy7);
  109.     vy0 = vec_mergeh (vx0, vx4);
  110.     vy1 = vec_mergel (vx0, vx4);
  111.     vy2 = vec_mergeh (vx1, vx5);
  112.     vy3 = vec_mergel (vx1, vx5);
  113.     vy4 = vec_mergeh (vx2, vx6);
  114.     vy5 = vec_mergel (vx2, vx6);
  115.     vy6 = vec_mergeh (vx3, vx7);
  116.     vy7 = vec_mergel (vx3, vx7);
  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.     IDCT_HALF
  126.     shift = vec_splat_u16 (6);
  127.     vx0 = vec_sra (vy0, shift);
  128.     vx1 = vec_sra (vy1, shift);
  129.     vx2 = vec_sra (vy2, shift);
  130.     vx3 = vec_sra (vy3, shift);
  131.     vx4 = vec_sra (vy4, shift);
  132.     vx5 = vec_sra (vy5, shift);
  133.     vx6 = vec_sra (vy6, shift);
  134.     vx7 = vec_sra (vy7, shift);
  135. static const_vector_s16_t constants[5] = {
  136.     (vector_s16_t) AVV(23170, 13573, 6518, 21895, -23170, -21895, 32, 31),
  137.     (vector_s16_t) AVV(16384, 22725, 21407, 19266, 16384, 19266, 21407, 22725),
  138.     (vector_s16_t) AVV(22725, 31521, 29692, 26722, 22725, 26722, 29692, 31521),
  139.     (vector_s16_t) AVV(21407, 29692, 27969, 25172, 21407, 25172, 27969, 29692),
  140.     (vector_s16_t) AVV(19266, 26722, 25172, 22654, 19266, 22654, 25172, 26722)
  141. };
  142. void idct_put_altivec(uint8_t* dest, int stride, vector_s16_t* block)
  143. {
  144. POWERPC_PERF_DECLARE(altivec_idct_put_num, 1);
  145. #ifdef ALTIVEC_USE_REFERENCE_C_CODE
  146. POWERPC_PERF_START_COUNT(altivec_idct_put_num, 1);
  147.     void simple_idct_put(uint8_t *dest, int line_size, int16_t *block);
  148.     simple_idct_put(dest, stride, (int16_t*)block);
  149. POWERPC_PERF_STOP_COUNT(altivec_idct_put_num, 1);
  150. #else /* ALTIVEC_USE_REFERENCE_C_CODE */
  151.     vector_u8_t tmp;
  152. #ifdef POWERPC_PERFORMANCE_REPORT
  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 ((vector_u32_t)tmp, 0, (unsigned int *)dest);
  159.     vec_ste ((vector_u32_t)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. #endif /* ALTIVEC_USE_REFERENCE_C_CODE */
  170. }
  171. void idct_add_altivec(uint8_t* dest, int stride, vector_s16_t* block)
  172. {
  173. POWERPC_PERF_DECLARE(altivec_idct_add_num, 1);
  174. #ifdef ALTIVEC_USE_REFERENCE_C_CODE
  175. POWERPC_PERF_START_COUNT(altivec_idct_add_num, 1);
  176.     void simple_idct_add(uint8_t *dest, int line_size, int16_t *block);
  177.     simple_idct_add(dest, stride, (int16_t*)block);
  178. POWERPC_PERF_STOP_COUNT(altivec_idct_add_num, 1);
  179. #else /* ALTIVEC_USE_REFERENCE_C_CODE */
  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 POWERPC_PERFORMANCE_REPORT
  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. #endif /* ALTIVEC_USE_REFERENCE_C_CODE */
  212. }