h264dsp_init_mips.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * Copyright (c) 2015 Parag Salasakar (Parag.Salasakar@imgtec.com)
  3. * Copyright (c) 2015 Zhou Xiaoyong <zhouxiaoyong@loongson.cn>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "h264dsp_mips.h"
  22. #if HAVE_MSA
  23. static av_cold void h264dsp_init_msa(H264DSPContext *c,
  24. const int bit_depth,
  25. const int chroma_format_idc)
  26. {
  27. if (8 == bit_depth) {
  28. c->h264_v_loop_filter_luma = ff_h264_v_lpf_luma_inter_msa;
  29. c->h264_h_loop_filter_luma = ff_h264_h_lpf_luma_inter_msa;
  30. c->h264_h_loop_filter_luma_mbaff =
  31. ff_h264_h_loop_filter_luma_mbaff_msa;
  32. c->h264_v_loop_filter_luma_intra = ff_h264_v_lpf_luma_intra_msa;
  33. c->h264_h_loop_filter_luma_intra = ff_h264_h_lpf_luma_intra_msa;
  34. c->h264_h_loop_filter_luma_mbaff_intra =
  35. ff_h264_h_loop_filter_luma_mbaff_intra_msa;
  36. c->h264_v_loop_filter_chroma = ff_h264_v_lpf_chroma_inter_msa;
  37. if (chroma_format_idc <= 1)
  38. c->h264_h_loop_filter_chroma = ff_h264_h_lpf_chroma_inter_msa;
  39. else
  40. c->h264_h_loop_filter_chroma =
  41. ff_h264_h_loop_filter_chroma422_msa;
  42. if (chroma_format_idc > 1)
  43. c->h264_h_loop_filter_chroma_mbaff =
  44. ff_h264_h_loop_filter_chroma422_mbaff_msa;
  45. c->h264_v_loop_filter_chroma_intra =
  46. ff_h264_v_lpf_chroma_intra_msa;
  47. if (chroma_format_idc <= 1)
  48. c->h264_h_loop_filter_chroma_intra =
  49. ff_h264_h_lpf_chroma_intra_msa;
  50. /* Weighted MC */
  51. c->weight_h264_pixels_tab[0] = ff_weight_h264_pixels16_8_msa;
  52. c->weight_h264_pixels_tab[1] = ff_weight_h264_pixels8_8_msa;
  53. c->weight_h264_pixels_tab[2] = ff_weight_h264_pixels4_8_msa;
  54. c->biweight_h264_pixels_tab[0] = ff_biweight_h264_pixels16_8_msa;
  55. c->biweight_h264_pixels_tab[1] = ff_biweight_h264_pixels8_8_msa;
  56. c->biweight_h264_pixels_tab[2] = ff_biweight_h264_pixels4_8_msa;
  57. c->h264_idct_add = ff_h264_idct_add_msa;
  58. c->h264_idct8_add = ff_h264_idct8_addblk_msa;
  59. c->h264_idct_dc_add = ff_h264_idct4x4_addblk_dc_msa;
  60. c->h264_idct8_dc_add = ff_h264_idct8_dc_addblk_msa;
  61. c->h264_idct_add16 = ff_h264_idct_add16_msa;
  62. c->h264_idct8_add4 = ff_h264_idct8_add4_msa;
  63. if (chroma_format_idc <= 1)
  64. c->h264_idct_add8 = ff_h264_idct_add8_msa;
  65. else
  66. c->h264_idct_add8 = ff_h264_idct_add8_422_msa;
  67. c->h264_idct_add16intra = ff_h264_idct_add16_intra_msa;
  68. c->h264_luma_dc_dequant_idct = ff_h264_deq_idct_luma_dc_msa;
  69. } // if (8 == bit_depth)
  70. }
  71. #endif // #if HAVE_MSA
  72. #if HAVE_MMI
  73. static av_cold void h264dsp_init_mmi(H264DSPContext * c,
  74. const int bit_depth,
  75. const int chroma_format_idc)
  76. {
  77. if (bit_depth == 8) {
  78. c->weight_h264_pixels_tab[0] = ff_h264_weight_pixels16_8_mmi;
  79. c->weight_h264_pixels_tab[1] = ff_h264_weight_pixels8_8_mmi;
  80. c->weight_h264_pixels_tab[2] = ff_h264_weight_pixels4_8_mmi;
  81. c->biweight_h264_pixels_tab[0] = ff_h264_biweight_pixels16_8_mmi;
  82. c->biweight_h264_pixels_tab[1] = ff_h264_biweight_pixels8_8_mmi;
  83. c->biweight_h264_pixels_tab[2] = ff_h264_biweight_pixels4_8_mmi;
  84. }
  85. }
  86. #endif /* HAVE_MMI */
  87. av_cold void ff_h264dsp_init_mips(H264DSPContext *c, const int bit_depth,
  88. const int chroma_format_idc)
  89. {
  90. #if HAVE_MSA
  91. h264dsp_init_msa(c, bit_depth, chroma_format_idc);
  92. #endif // #if HAVE_MSA
  93. #if HAVE_MMI
  94. h264dsp_init_mmi(c, bit_depth, chroma_format_idc);
  95. #endif /* HAVE_MMI */
  96. }