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

Side by Side Diff: source/libvpx/vp8/encoder/x86/subtract_sse2.asm

Issue 7671004: Update libvpx snapshot to v0.9.7-p1 (Cayuga). (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: '' Created 9 years, 4 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
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 pop rbp 70 pop rbp
71 ret 71 ret
72 72
73 73
74 ;void vp8_subtract_mby_sse2(short *diff, unsigned char *src, unsigned char *pred , int stride) 74 ;void vp8_subtract_mby_sse2(short *diff, unsigned char *src, unsigned char *pred , int stride)
75 global sym(vp8_subtract_mby_sse2) 75 global sym(vp8_subtract_mby_sse2)
76 sym(vp8_subtract_mby_sse2): 76 sym(vp8_subtract_mby_sse2):
77 push rbp 77 push rbp
78 mov rbp, rsp 78 mov rbp, rsp
79 SHADOW_ARGS_TO_STACK 4 79 SHADOW_ARGS_TO_STACK 4
80 SAVE_XMM 80 SAVE_XMM 7
81 GET_GOT rbx 81 GET_GOT rbx
82 push rsi 82 push rsi
83 push rdi 83 push rdi
84 ; end prolog 84 ; end prolog
85 85
86 mov rsi, arg(1) ;src 86 mov rsi, arg(1) ;src
87 mov rdi, arg(0) ;diff 87 mov rdi, arg(0) ;diff
88 88
89 mov rax, arg(2) ;pred 89 mov rax, arg(2) ;pred
90 movsxd rdx, dword ptr arg(3) ;stride 90 movsxd rdx, dword ptr arg(3) ;stride
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 pop rsi 347 pop rsi
348 RESTORE_GOT 348 RESTORE_GOT
349 UNSHADOW_ARGS 349 UNSHADOW_ARGS
350 pop rbp 350 pop rbp
351 ret 351 ret
352 352
353 SECTION_RODATA 353 SECTION_RODATA
354 align 16 354 align 16
355 t80: 355 t80:
356 times 16 db 0x80 356 times 16 db 0x80
OLDNEW
« no previous file with comments | « source/libvpx/vp8/encoder/x86/ssim_opt.asm ('k') | source/libvpx/vp8/encoder/x86/temporal_filter_apply_sse2.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698