rgb2yuv_neon_16.S 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright (C) 2013 Xiaolei Yu <dreifachstein@gmail.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 "config.h"
  21. #if HAVE_AS_DN_DIRECTIVE
  22. #include "rgb2yuv_neon_common.S"
  23. /* downsampled R16G16B16 x8 */
  24. alias_qw r16x8, q7
  25. alias_qw g16x8, q8
  26. alias_qw b16x8, q9
  27. alias n16x16_l, q11
  28. alias n16x16_h, q12
  29. alias y16x16_l, q13
  30. alias y16x16_h, q14
  31. alias_qw y8x16, q15
  32. .macro init src
  33. vld3.i32 {q13_l, q14_l, q15_l}, [\src]!
  34. vld3.i32 {q13_h[0], q14_h[0], q15_h[0]}, [\src]
  35. vrshrn.i32 CO_R, q13, #7
  36. vrshrn.i32 CO_G, q14, #7
  37. vrshrn.i32 CO_B, q15, #7
  38. vmov.u8 BIAS_Y, #16
  39. vmov.u8 BIAS_U, #128
  40. .endm
  41. .macro compute_y_16x1_step action, s8x16, coeff
  42. vmovl.u8 n16x16_l, \s8x16\()_l
  43. vmovl.u8 n16x16_h, \s8x16\()_h
  44. \action y16x16_l, n16x16_l, \coeff
  45. \action y16x16_h, n16x16_h, \coeff
  46. .endm
  47. .macro compute_y_16x1
  48. compute_y_16x1_step vmul, r8x16, CO_RY
  49. compute_y_16x1_step vmla, g8x16, CO_GY
  50. compute_y_16x1_step vmla, b8x16, CO_BY
  51. vrshrn.i16 y8x16_l, y16x16_l, #8
  52. vrshrn.i16 y8x16_h, y16x16_h, #8
  53. vadd.u8 y8x16, y8x16, BIAS_Y
  54. .endm
  55. alias c16x8, q15
  56. alias_qw c8x8x2, q10
  57. .macro compute_chroma_8x1 c, C
  58. vmul c16x8, r16x8, CO_R\C
  59. vmla c16x8, g16x8, CO_G\C
  60. vmla c16x8, b16x8, CO_B\C
  61. vrshrn.i16 \c\()8x8, c16x8, #8
  62. vadd.u8 \c\()8x8, \c\()8x8, BIAS_\C
  63. .endm
  64. loop_420sp rgbx, nv12, init, kernel_420_16x2, 16
  65. #endif