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.

96 lines
3.3KB

  1. /*
  2. * BlackFin DSPUTILS COMMON OPTIMIZATIONS HEADER
  3. *
  4. * Copyright (C) 2007 Marc Hoffman <mmh@pleasantst.com>
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * Libav is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #ifndef AVCODEC_BFIN_DSPUTIL_BFIN_H
  23. #define AVCODEC_BFIN_DSPUTIL_BFIN_H
  24. #include <stdint.h>
  25. #include "config.h"
  26. #if defined(__FDPIC__) && CONFIG_SRAM
  27. #define attribute_l1_text __attribute__ ((l1_text))
  28. #define attribute_l1_data_b __attribute__((l1_data_B))
  29. #else
  30. #define attribute_l1_text
  31. #define attribute_l1_data_b
  32. #endif
  33. void ff_bfin_idct (int16_t *block) attribute_l1_text;
  34. void ff_bfin_fdct (int16_t *block) attribute_l1_text;
  35. void ff_bfin_add_pixels_clamped (const int16_t *block, uint8_t *dest, int line_size) attribute_l1_text;
  36. void ff_bfin_put_pixels_clamped (const int16_t *block, uint8_t *dest, int line_size) attribute_l1_text;
  37. void ff_bfin_diff_pixels (int16_t *block, const uint8_t *s1, const uint8_t *s2, int stride) attribute_l1_text;
  38. void ff_bfin_get_pixels (int16_t *restrict block, const uint8_t *pixels, int line_size) attribute_l1_text;
  39. int ff_bfin_pix_norm1 (uint8_t * pix, int line_size) attribute_l1_text;
  40. int ff_bfin_z_sad8x8 (uint8_t *blk1, uint8_t *blk2, int dsz, int line_size, int h) attribute_l1_text;
  41. int ff_bfin_z_sad16x16 (uint8_t *blk1, uint8_t *blk2, int dsz, int line_size, int h) attribute_l1_text;
  42. int ff_bfin_pix_sum (uint8_t *p, int stride) attribute_l1_text;
  43. int ff_bfin_sse4 (void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h) attribute_l1_text;
  44. int ff_bfin_sse8 (void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h) attribute_l1_text;
  45. int ff_bfin_sse16 (void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h) attribute_l1_text;
  46. #ifdef BFIN_PROFILE
  47. static double Telem[16];
  48. static char *TelemNames[16];
  49. static int TelemCnt;
  50. #define PROF(lab,e) { int xx_e = e; char*xx_lab = lab; uint64_t xx_t0 = read_time();
  51. #define EPROF() xx_t0 = read_time()-xx_t0; Telem[xx_e] = Telem[xx_e] + xx_t0; TelemNames[xx_e] = xx_lab; }
  52. static void prof_report (void)
  53. {
  54. int i;
  55. double s = 0;
  56. for (i=0;i<16;i++) {
  57. double v;
  58. if (TelemNames[i]) {
  59. v = Telem[i]/TelemCnt;
  60. av_log (NULL,AV_LOG_DEBUG,"%-20s: %12.4f\t%12.4f\n", TelemNames[i],v,v/64);
  61. s = s + Telem[i];
  62. }
  63. }
  64. av_log (NULL,AV_LOG_DEBUG,"%-20s: %12.4f\t%12.4f\n%20.4f\t%d\n",
  65. "total",s/TelemCnt,s/TelemCnt/64,s,TelemCnt);
  66. }
  67. static void bfprof (void)
  68. {
  69. static int init;
  70. if (!init) atexit (prof_report);
  71. init=1;
  72. TelemCnt++;
  73. }
  74. #else
  75. #define PROF(a,b)
  76. #define EPROF()
  77. #define bfprof()
  78. #endif
  79. #endif /* AVCODEC_BFIN_DSPUTIL_BFIN_H */