| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |