| OLD | NEW |
| 1 ; | 1 ; |
| 2 ; Copyright (c) 2015 The WebM project authors. All Rights Reserved. | 2 ; Copyright (c) 2015 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 ; This file provides SSSE3 version of the forward transformation. Part | 13 ; This file provides SSSE3 version of the forward transformation. Part |
| 16 ; of the macro definitions are originally derived from the ffmpeg project. | 14 ; of the macro definitions are originally derived from the ffmpeg project. |
| 17 ; The current version applies to x86 64-bit only. | 15 ; The current version applies to x86 64-bit only. |
| 18 | 16 |
| 19 SECTION_RODATA | 17 SECTION_RODATA |
| 20 | 18 |
| 21 pw_11585x2: times 8 dw 23170 | 19 pw_11585x2: times 8 dw 23170 |
| 22 pd_8192: times 4 dd 8192 | 20 pd_8192: times 4 dd 8192 |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 mova [outputq + 16], m1 | 174 mova [outputq + 16], m1 |
| 177 mova [outputq + 32], m2 | 175 mova [outputq + 32], m2 |
| 178 mova [outputq + 48], m3 | 176 mova [outputq + 48], m3 |
| 179 mova [outputq + 64], m4 | 177 mova [outputq + 64], m4 |
| 180 mova [outputq + 80], m5 | 178 mova [outputq + 80], m5 |
| 181 mova [outputq + 96], m6 | 179 mova [outputq + 96], m6 |
| 182 mova [outputq + 112], m7 | 180 mova [outputq + 112], m7 |
| 183 | 181 |
| 184 RET | 182 RET |
| 185 %endif | 183 %endif |
| OLD | NEW |