| OLD | NEW |
| 1 ; | 1 ; |
| 2 ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
| 3 ; | 3 ; |
| 4 ; Use of this source code is governed by a BSD-style license | 4 ; Use of this source code is governed by a BSD-style license |
| 5 ; that can be found in the LICENSE file in the root of the source | 5 ; that can be found in the LICENSE file in the root of the source |
| 6 ; tree. An additional intellectual property rights grant can be found | 6 ; tree. An additional intellectual property rights grant can be found |
| 7 ; in the file PATENTS. All contributing project authors may | 7 ; in the file PATENTS. All contributing project authors may |
| 8 ; be found in the AUTHORS file in the root of the source tree. | 8 ; be found in the AUTHORS file in the root of the source tree. |
| 9 ; | 9 ; |
| 10 | 10 |
| 11 | 11 |
| 12 EXPORT |vp8_yv12_copy_y_neon| | 12 EXPORT |vp8_yv12_copy_y_neon| |
| 13 | 13 |
| 14 ARM | 14 ARM |
| 15 REQUIRE8 | 15 REQUIRE8 |
| 16 PRESERVE8 | 16 PRESERVE8 |
| 17 | 17 |
| 18 INCLUDE asm_com_offsets.asm | 18 INCLUDE vpx_scale_asm_offsets.asm |
| 19 | 19 |
| 20 AREA ||.text||, CODE, READONLY, ALIGN=2 | 20 AREA ||.text||, CODE, READONLY, ALIGN=2 |
| 21 | 21 |
| 22 ;void vpxyv12_copy_y_neon(YV12_BUFFER_CONFIG *src_ybc, YV12_BUFFER_CONFIG *dst_y
bc) | 22 ;void vpxyv12_copy_y_neon(YV12_BUFFER_CONFIG *src_ybc, YV12_BUFFER_CONFIG *dst_y
bc) |
| 23 |vp8_yv12_copy_y_neon| PROC | 23 |vp8_yv12_copy_y_neon| PROC |
| 24 push {r4 - r11, lr} | 24 push {r4 - r11, lr} |
| 25 vpush {d8-d15} | 25 vpush {d8-d15} |
| 26 | 26 |
| 27 ldr r4, [r0, #yv12_buffer_config_y_height] | 27 ldr r4, [r0, #yv12_buffer_config_y_height] |
| 28 ldr r5, [r0, #yv12_buffer_config_y_width] | 28 ldr r5, [r0, #yv12_buffer_config_y_width] |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 add r2, r2, r6, lsl #1 | 113 add r2, r2, r6, lsl #1 |
| 114 add r3, r3, r7, lsl #1 | 114 add r3, r3, r7, lsl #1 |
| 115 | 115 |
| 116 bne extra_cp_src_to_dst_height_loop1 | 116 bne extra_cp_src_to_dst_height_loop1 |
| 117 | 117 |
| 118 b end_of_cp_src_to_dst1 | 118 b end_of_cp_src_to_dst1 |
| 119 | 119 |
| 120 ENDP | 120 ENDP |
| 121 | 121 |
| 122 END | 122 END |
| OLD | NEW |