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

Side by Side Diff: source/libvpx/vpx_dsp/x86/sad_sse2.asm

Issue 1302353004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 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
« no previous file with comments | « source/libvpx/vpx_dsp/x86/sad4d_sse2.asm ('k') | source/libvpx/vpx_dsp/x86/ssim_opt_x86_64.asm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 %define program_name vpx
12
13 %include "third_party/x86inc/x86inc.asm" 11 %include "third_party/x86inc/x86inc.asm"
14 12
15 SECTION .text 13 SECTION .text
16 14
17 %macro SAD_FN 4 15 %macro SAD_FN 4
18 %if %4 == 0 16 %if %4 == 0
19 %if %3 == 5 17 %if %3 == 5
20 cglobal sad%1x%2, 4, %3, 5, src, src_stride, ref, ref_stride, n_rows 18 cglobal sad%1x%2, 4, %3, 5, src, src_stride, ref, ref_stride, n_rows
21 %else ; %3 == 7 19 %else ; %3 == 7
22 cglobal sad%1x%2, 4, %3, 5, src, src_stride, ref, ref_stride, \ 20 cglobal sad%1x%2, 4, %3, 5, src, src_stride, ref, ref_stride, \
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 258
261 movd eax, m0 259 movd eax, m0
262 RET 260 RET
263 %endmacro 261 %endmacro
264 262
265 INIT_MMX sse 263 INIT_MMX sse
266 SAD4XN 8 ; sad4x8_sse 264 SAD4XN 8 ; sad4x8_sse
267 SAD4XN 4 ; sad4x4_sse 265 SAD4XN 4 ; sad4x4_sse
268 SAD4XN 8, 1 ; sad4x8_avg_sse 266 SAD4XN 8, 1 ; sad4x8_avg_sse
269 SAD4XN 4, 1 ; sad4x4_avg_sse 267 SAD4XN 4, 1 ; sad4x4_avg_sse
OLDNEW
« no previous file with comments | « source/libvpx/vpx_dsp/x86/sad4d_sse2.asm ('k') | source/libvpx/vpx_dsp/x86/ssim_opt_x86_64.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698