Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(492)

Side by Side Diff: source/libvpx/vpx_scale/arm/neon/vp8_vpxyv12_copy_y_neon.asm

Issue 23600008: libvpx: Pull from upstream (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 |vpx_yv12_copy_y_neon|
13 13
14 ARM 14 ARM
15 REQUIRE8 15 REQUIRE8
16 PRESERVE8 16 PRESERVE8
17 17
18 INCLUDE vpx_scale_asm_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 vpx_yv12_copy_y_neon(const YV12_BUFFER_CONFIG *src_ybc,
23 |vp8_yv12_copy_y_neon| PROC 23 ; YV12_BUFFER_CONFIG *dst_ybc)
24 |vpx_yv12_copy_y_neon| PROC
24 push {r4 - r11, lr} 25 push {r4 - r11, lr}
25 vpush {d8-d15} 26 vpush {d8-d15}
26 27
27 ldr r4, [r0, #yv12_buffer_config_y_height] 28 ldr r4, [r0, #yv12_buffer_config_y_height]
28 ldr r5, [r0, #yv12_buffer_config_y_width] 29 ldr r5, [r0, #yv12_buffer_config_y_width]
29 ldr r6, [r0, #yv12_buffer_config_y_stride] 30 ldr r6, [r0, #yv12_buffer_config_y_stride]
30 ldr r7, [r1, #yv12_buffer_config_y_stride] 31 ldr r7, [r1, #yv12_buffer_config_y_stride]
31 ldr r2, [r0, #yv12_buffer_config_y_buffer] ;srcptr1 32 ldr r2, [r0, #yv12_buffer_config_y_buffer] ;srcptr1
32 ldr r3, [r1, #yv12_buffer_config_y_buffer] ;dstptr1 33 ldr r3, [r1, #yv12_buffer_config_y_buffer] ;dstptr1
33 34
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 add r2, r2, r6, lsl #1 114 add r2, r2, r6, lsl #1
114 add r3, r3, r7, lsl #1 115 add r3, r3, r7, lsl #1
115 116
116 bne extra_cp_src_to_dst_height_loop1 117 bne extra_cp_src_to_dst_height_loop1
117 118
118 b end_of_cp_src_to_dst1 119 b end_of_cp_src_to_dst1
119 120
120 ENDP 121 ENDP
121 122
122 END 123 END
OLDNEW
« no previous file with comments | « source/libvpx/vp9/vp9dx.mk ('k') | source/libvpx/vpx_scale/arm/neon/vp8_vpxyv12_copyframe_func_neon.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698