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.

80 lines
2.3KB

  1. /*
  2. * Copyright (c) 2007 Luca Barbato <lu_zero@gentoo.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. /**
  21. ** @file int_altivec.c
  22. ** integer misc ops.
  23. **/
  24. #include "../dsputil.h"
  25. #include "gcc_fixes.h"
  26. #include "dsputil_altivec.h"
  27. static int ssd_int8_vs_int16_altivec(int8_t *pix1, int16_t *pix2, int size) {
  28. int i, size16;
  29. vector signed char vpix1;
  30. vector signed short vpix2, vdiff, vpix1l,vpix1h;
  31. union { vector signed int vscore;
  32. int32_t score[4];
  33. } u;
  34. u.vscore = vec_splat_s32(0);
  35. //
  36. //XXX lazy way, fix it later
  37. #define vec_unaligned_load(b) \
  38. vec_perm(vec_ld(0,b),vec_ld(15,b),vec_lvsl(0, b));
  39. size16 = size >> 4;
  40. while(size16) {
  41. // score += (pix1[i]-pix2[i])*(pix1[i]-pix2[i]);
  42. //load pix1 and the first batch of pix2
  43. vpix1 = vec_unaligned_load(pix1);
  44. vpix2 = vec_unaligned_load(pix2);
  45. pix2 += 8;
  46. //unpack
  47. vpix1h = vec_unpackh(vpix1);
  48. vdiff = vec_sub(vpix1h, vpix2);
  49. vpix1l = vec_unpackl(vpix1);
  50. // load another batch from pix2
  51. vpix2 = vec_unaligned_load(pix2);
  52. u.vscore = vec_msum(vdiff, vdiff, u.vscore);
  53. vdiff = vec_sub(vpix1l, vpix2);
  54. u.vscore = vec_msum(vdiff, vdiff, u.vscore);
  55. pix1 += 16;
  56. pix2 += 8;
  57. size16--;
  58. }
  59. u.vscore = vec_sums(u.vscore, vec_splat_s32(0));
  60. size %= 16;
  61. for (i = 0; i < size; i++) {
  62. u.score[3] += (pix1[i]-pix2[i])*(pix1[i]-pix2[i]);
  63. }
  64. return u.score[3];
  65. }
  66. void int_init_altivec(DSPContext* c, AVCodecContext *avctx)
  67. {
  68. c->ssd_int8_vs_int16 = ssd_int8_vs_int16_altivec;
  69. }