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.

104 lines
3.6KB

  1. /*
  2. * Copyright (c) 2010 Mans Rullgard
  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 "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. bxle lr
  58. cmp r3, #8
  59. bgt 1b
  60. 2:
  61. vld1.16 {d0}, [r0,:64]
  62. vclt.s16 d3, d0, #0
  63. vceq.s16 d1, d0, #0
  64. vmul.s16 d2, d0, d30
  65. vbsl d3, d26, d28
  66. vadd.s16 d2, d2, d3
  67. vbif d0, d2, d1
  68. vst1.16 {d0}, [r1,:64]
  69. bx lr
  70. endfunc
  71. function ff_dct_unquantize_h263_intra_neon, export=1
  72. push {r4-r6,lr}
  73. add r12, r0, #BLOCK_LAST_INDEX
  74. ldr r6, [r0, #AC_PRED]
  75. add lr, r0, #INTER_SCANTAB_RASTER_END
  76. cmp r6, #0
  77. movne r12, #63
  78. bne 1f
  79. ldr r12, [r12, r2, lsl #2]
  80. ldrb r12, [lr, r12]
  81. 1: ldr r5, [r0, #H263_AIC]
  82. ldrsh r4, [r1]
  83. cmp r5, #0
  84. mov r5, r1
  85. movne r2, #0
  86. bne 2f
  87. cmp r2, #4
  88. addge r0, r0, #4
  89. sub r2, r3, #1
  90. ldr r6, [r0, #Y_DC_SCALE]
  91. orr r2, r2, #1
  92. smulbb r4, r4, r6
  93. 2: lsl r0, r3, #1
  94. add r3, r12, #1
  95. bl ff_dct_unquantize_h263_neon
  96. vmov.16 d0[0], r4
  97. vst1.16 {d0[0]}, [r5]
  98. pop {r4-r6,pc}
  99. endfunc