deblock.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*****************************************************************************
  2. * deblock.h: msa deblocking
  3. *****************************************************************************
  4. * Copyright (C) 2017-2018 x264 project
  5. *
  6. * Authors: Anton Mitrofanov <BugMaster@narod.ru>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program 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
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111, USA.
  21. *
  22. * This program is also available under a commercial proprietary license.
  23. * For more information, contact us at licensing@x264.com.
  24. *****************************************************************************/
  25. #ifndef X264_MIPS_DEBLOCK_H
  26. #define X264_MIPS_DEBLOCK_H
  27. #if !HIGH_BIT_DEPTH
  28. #define x264_deblock_v_luma_msa x264_template(deblock_v_luma_msa)
  29. void x264_deblock_v_luma_msa( uint8_t *pix, intptr_t stride, int alpha, int beta, int8_t *tc0 );
  30. #define x264_deblock_h_luma_msa x264_template(deblock_h_luma_msa)
  31. void x264_deblock_h_luma_msa( uint8_t *pix, intptr_t stride, int alpha, int beta, int8_t *tc0 );
  32. #define x264_deblock_v_chroma_msa x264_template(deblock_v_chroma_msa)
  33. void x264_deblock_v_chroma_msa( uint8_t *pix, intptr_t stride, int alpha, int beta, int8_t *tc0 );
  34. #define x264_deblock_h_chroma_msa x264_template(deblock_h_chroma_msa)
  35. void x264_deblock_h_chroma_msa( uint8_t *pix, intptr_t stride, int alpha, int beta, int8_t *tc0 );
  36. #define x264_deblock_v_luma_intra_msa x264_template(deblock_v_luma_intra_msa)
  37. void x264_deblock_v_luma_intra_msa( uint8_t *pix, intptr_t stride, int alpha, int beta );
  38. #define x264_deblock_h_luma_intra_msa x264_template(deblock_h_luma_intra_msa)
  39. void x264_deblock_h_luma_intra_msa( uint8_t *pix, intptr_t stride, int alpha, int beta );
  40. #define x264_deblock_v_chroma_intra_msa x264_template(deblock_v_chroma_intra_msa)
  41. void x264_deblock_v_chroma_intra_msa( uint8_t *pix, intptr_t stride, int alpha, int beta );
  42. #define x264_deblock_h_chroma_intra_msa x264_template(deblock_h_chroma_intra_msa)
  43. void x264_deblock_h_chroma_intra_msa( uint8_t *pix, intptr_t stride, int alpha, int beta );
  44. #define x264_deblock_strength_msa x264_template(deblock_strength_msa)
  45. void x264_deblock_strength_msa( uint8_t nnz[X264_SCAN8_SIZE], int8_t ref[2][X264_SCAN8_LUMA_SIZE],
  46. int16_t mv[2][X264_SCAN8_LUMA_SIZE][2], uint8_t bs[2][8][4], int mvy_limit,
  47. int bframe );
  48. #endif
  49. #endif