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

Side by Side Diff: source/libvpx/vp9/encoder/x86/vp9_dct_mmx.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 SECTION .text 15 SECTION .text
13 16
14 %macro TRANSFORM_COLS 0 17 %macro TRANSFORM_COLS 0
15 paddw m0, m1 18 paddw m0, m1
16 movq m4, m0 19 movq m4, m0
17 psubw m3, m2 20 psubw m3, m2
18 psubw m4, m3 21 psubw m4, m3
19 psraw m4, 1 22 psraw m4, 1
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 movq [outputq + 48], m3 95 movq [outputq + 48], m3
93 movq [outputq + 56], m7 96 movq [outputq + 56], m7
94 %else 97 %else
95 movq [outputq], m0 98 movq [outputq], m0
96 movq [outputq + 8], m1 99 movq [outputq + 8], m1
97 movq [outputq + 16], m2 100 movq [outputq + 16], m2
98 movq [outputq + 24], m3 101 movq [outputq + 24], m3
99 %endif 102 %endif
100 103
101 RET 104 RET
OLDNEW
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_temporal_filter.c ('k') | source/libvpx/vp9/encoder/x86/vp9_dct_ssse3_x86_64.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698