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.

108 lines
3.8KB

  1. /*
  2. * Copyright (c) 2010 Mans Rullgard
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "libavutil/arm/asm.S"
  21. #include "asm-offsets.h"
  22. function ff_dct_unquantize_h263_inter_neon, export=1
  23. add r12, r0, #BLOCK_LAST_INDEX
  24. ldr r12, [r12, r2, lsl #2]
  25. add r0, r0, #INTER_SCANTAB_RASTER_END
  26. ldrb r12, [r0, r12]
  27. sub r2, r3, #1
  28. lsl r0, r3, #1
  29. orr r2, r2, #1
  30. add r3, r12, #1
  31. endfunc
  32. function ff_dct_unquantize_h263_neon, export=1
  33. vdup.16 q15, r0 @ qmul
  34. vdup.16 q14, r2 @ qadd
  35. vneg.s16 q13, q14
  36. cmp r3, #4
  37. mov r0, r1
  38. ble 2f
  39. 1:
  40. vld1.16 {q0}, [r0,:128]!
  41. vclt.s16 q3, q0, #0
  42. vld1.16 {q8}, [r0,:128]!
  43. vceq.s16 q1, q0, #0
  44. vmul.s16 q2, q0, q15
  45. vclt.s16 q11, q8, #0
  46. vmul.s16 q10, q8, q15
  47. vbsl q3, q13, q14
  48. vbsl q11, q13, q14
  49. vadd.s16 q2, q2, q3
  50. vceq.s16 q9, q8, #0
  51. vadd.s16 q10, q10, q11
  52. vbif q0, q2, q1
  53. vbif q8, q10, q9
  54. subs r3, r3, #16
  55. vst1.16 {q0}, [r1,:128]!
  56. vst1.16 {q8}, [r1,:128]!
  57. it le
  58. bxle lr
  59. cmp r3, #8
  60. bgt 1b
  61. 2:
  62. vld1.16 {d0}, [r0,:64]
  63. vclt.s16 d3, d0, #0
  64. vceq.s16 d1, d0, #0
  65. vmul.s16 d2, d0, d30
  66. vbsl d3, d26, d28
  67. vadd.s16 d2, d2, d3
  68. vbif d0, d2, d1
  69. vst1.16 {d0}, [r1,:64]
  70. bx lr
  71. endfunc
  72. function ff_dct_unquantize_h263_intra_neon, export=1
  73. push {r4-r6,lr}
  74. add r12, r0, #BLOCK_LAST_INDEX
  75. ldr r6, [r0, #AC_PRED]
  76. add lr, r0, #INTER_SCANTAB_RASTER_END
  77. cmp r6, #0
  78. it ne
  79. movne r12, #63
  80. bne 1f
  81. ldr r12, [r12, r2, lsl #2]
  82. ldrb r12, [lr, r12]
  83. 1: ldr r5, [r0, #H263_AIC]
  84. ldrsh r4, [r1]
  85. cmp r5, #0
  86. mov r5, r1
  87. it ne
  88. movne r2, #0
  89. bne 2f
  90. cmp r2, #4
  91. it ge
  92. addge r0, r0, #4
  93. sub r2, r3, #1
  94. ldr r6, [r0, #Y_DC_SCALE]
  95. orr r2, r2, #1
  96. smulbb r4, r4, r6
  97. 2: lsl r0, r3, #1
  98. add r3, r12, #1
  99. bl ff_dct_unquantize_h263_neon
  100. vmov.16 d0[0], r4
  101. vst1.16 {d0[0]}, [r5]
  102. pop {r4-r6,pc}
  103. endfunc