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

Side by Side Diff: source/libvpx/vp9/encoder/x86/vp9_dct_ssse3_x86_64.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
OLDNEW
1 ; 1 ;
2 ; Copyright (c) 2014 The WebM project authors. All Rights Reserved. 2 ; Copyright (c) 2014 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
11 %define private_prefix vp9
12
10 %include "third_party/x86inc/x86inc.asm" 13 %include "third_party/x86inc/x86inc.asm"
11 14
12 ; This file provides SSSE3 version of the forward transformation. Part 15 ; This file provides SSSE3 version of the forward transformation. Part
13 ; of the macro definitions are originally derived from the ffmpeg project. 16 ; of the macro definitions are originally derived from the ffmpeg project.
14 ; The current version applies to x86 64-bit only. 17 ; The current version applies to x86 64-bit only.
15 18
16 SECTION .text 19 SECTION .text
17 20
18 %if ARCH_X86_64 21 %if ARCH_X86_64
19 ; matrix transpose 22 ; matrix transpose
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 mova [outputq + 16], m1 112 mova [outputq + 16], m1
110 mova [outputq + 32], m2 113 mova [outputq + 32], m2
111 mova [outputq + 48], m3 114 mova [outputq + 48], m3
112 mova [outputq + 64], m4 115 mova [outputq + 64], m4
113 mova [outputq + 80], m5 116 mova [outputq + 80], m5
114 mova [outputq + 96], m6 117 mova [outputq + 96], m6
115 mova [outputq + 112], m7 118 mova [outputq + 112], m7
116 119
117 RET 120 RET
118 %endif 121 %endif
OLDNEW
« no previous file with comments | « source/libvpx/vp9/encoder/x86/vp9_dct_mmx.asm ('k') | source/libvpx/vp9/encoder/x86/vp9_error_sse2.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698