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.

74 lines
2.8KB

  1. /*
  2. * Copyright (c) 2015 Parag Salasakar (Parag.Salasakar@imgtec.com)
  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 "../hpeldsp.h"
  21. #include "libavcodec/mips/hpeldsp_mips.h"
  22. #if HAVE_MSA
  23. static void ff_hpeldsp_init_msa(HpelDSPContext *c, int flags)
  24. {
  25. c->put_pixels_tab[0][0] = ff_put_pixels16_msa;
  26. c->put_pixels_tab[0][1] = ff_put_pixels16_x2_msa;
  27. c->put_pixels_tab[0][2] = ff_put_pixels16_y2_msa;
  28. c->put_pixels_tab[0][3] = ff_put_pixels16_xy2_msa;
  29. c->put_pixels_tab[1][0] = ff_put_pixels8_msa;
  30. c->put_pixels_tab[1][1] = ff_put_pixels8_x2_msa;
  31. c->put_pixels_tab[1][2] = ff_put_pixels8_y2_msa;
  32. c->put_pixels_tab[1][3] = ff_put_pixels8_xy2_msa;
  33. c->put_pixels_tab[2][1] = ff_put_pixels4_x2_msa;
  34. c->put_pixels_tab[2][2] = ff_put_pixels4_y2_msa;
  35. c->put_pixels_tab[2][3] = ff_put_pixels4_xy2_msa;
  36. c->put_no_rnd_pixels_tab[0][0] = ff_put_pixels16_msa;
  37. c->put_no_rnd_pixels_tab[0][1] = ff_put_no_rnd_pixels16_x2_msa;
  38. c->put_no_rnd_pixels_tab[0][2] = ff_put_no_rnd_pixels16_y2_msa;
  39. c->put_no_rnd_pixels_tab[0][3] = ff_put_no_rnd_pixels16_xy2_msa;
  40. c->put_no_rnd_pixels_tab[1][0] = ff_put_pixels8_msa;
  41. c->put_no_rnd_pixels_tab[1][1] = ff_put_no_rnd_pixels8_x2_msa;
  42. c->put_no_rnd_pixels_tab[1][2] = ff_put_no_rnd_pixels8_y2_msa;
  43. c->put_no_rnd_pixels_tab[1][3] = ff_put_no_rnd_pixels8_xy2_msa;
  44. c->avg_pixels_tab[0][0] = ff_avg_pixels16_msa;
  45. c->avg_pixels_tab[0][1] = ff_avg_pixels16_x2_msa;
  46. c->avg_pixels_tab[0][2] = ff_avg_pixels16_y2_msa;
  47. c->avg_pixels_tab[0][3] = ff_avg_pixels16_xy2_msa;
  48. c->avg_pixels_tab[1][0] = ff_avg_pixels8_msa;
  49. c->avg_pixels_tab[1][1] = ff_avg_pixels8_x2_msa;
  50. c->avg_pixels_tab[1][2] = ff_avg_pixels8_y2_msa;
  51. c->avg_pixels_tab[1][3] = ff_avg_pixels8_xy2_msa;
  52. c->avg_pixels_tab[2][0] = ff_avg_pixels4_msa;
  53. c->avg_pixels_tab[2][1] = ff_avg_pixels4_x2_msa;
  54. c->avg_pixels_tab[2][2] = ff_avg_pixels4_y2_msa;
  55. c->avg_pixels_tab[2][3] = ff_avg_pixels4_xy2_msa;
  56. }
  57. #endif // #if HAVE_MSA
  58. void ff_hpeldsp_init_mips(HpelDSPContext *c, int flags)
  59. {
  60. #if HAVE_MSA
  61. ff_hpeldsp_init_msa(c, flags);
  62. #endif // #if HAVE_MSA
  63. }