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.

56 lines
1.7KB

  1. /*
  2. * Copyright (c) 2006 Michael Benjamin
  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 "../avcodec.h"
  21. #include "../dsputil.h"
  22. static int sad8x8_bfin( void *c, uint8_t *blk1, uint8_t *blk2, int line_size, int h )
  23. {
  24. int sum;
  25. __asm__ __volatile__ (
  26. "P0 = %1;" // blk1
  27. "P1 = %2;" // blk2
  28. "P2 = %3;\n" // h
  29. "I0 = P0;"
  30. "I1 = P1;\n"
  31. "A0 = 0;"
  32. "A1 = 0;\n"
  33. "M0 = P2;\n"
  34. "P3 = 32;\n"
  35. "LSETUP (sad8x8LoopBegin, sad8x8LoopEnd) LC0=P3;\n"
  36. "sad8x8LoopBegin:\n"
  37. " DISALGNEXCPT || R0 = [I0] || R2 = [I1];\n"
  38. " DISALGNEXCPT || R1 = [I0++] || R3 = [I1++];\n"
  39. "sad8x8LoopEnd:\n"
  40. " SAA ( R1:0 , R3:2 );\n"
  41. "R3 = A1.L + A1.H, R2 = A0.L + A0.H;\n"
  42. "%0 = R2 + R3 (S);\n"
  43. : "=&d" (sum)
  44. : "m"(blk1), "m"(blk2), "m"(h)
  45. : "P0","P1","P2","I0","I1","A0","A1","R0","R1","R2","R3");
  46. return sum;
  47. }
  48. void dsputil_init_bfin( DSPContext* c, AVCodecContext *avctx )
  49. {
  50. c->pix_abs[1][0] = sad8x8_bfin;
  51. c->sad[1] = sad8x8_bfin;
  52. }