| 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 |
| 10 %include "third_party/x86inc/x86inc.asm" | 11 %include "third_party/x86inc/x86inc.asm" |
| 11 | 12 |
| 12 ; This file provides SSSE3 version of the inverse transformation. Part | 13 ; This file provides SSSE3 version of the inverse transformation. Part |
| 13 ; of the functions are originally derived from the ffmpeg project. | 14 ; of the functions are originally derived from the ffmpeg project. |
| 14 ; Note that the current version applies to x86 64-bit only. | 15 ; Note that the current version applies to x86 64-bit only. |
| 15 | 16 |
| 16 SECTION_RODATA | 17 SECTION_RODATA |
| 17 | 18 |
| 18 pw_11585x2: times 8 dw 23170 | 19 pw_11585x2: times 8 dw 23170 |
| 19 pd_8192: times 4 dd 8192 | 20 pd_8192: times 4 dd 8192 |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 lea outputq, [outputq + r3] | 292 lea outputq, [outputq + r3] |
| 292 ADD_STORE_8P_2X 2, 3, 9, 10, 12 | 293 ADD_STORE_8P_2X 2, 3, 9, 10, 12 |
| 293 lea outputq, [outputq + r3] | 294 lea outputq, [outputq + r3] |
| 294 ADD_STORE_8P_2X 4, 5, 9, 10, 12 | 295 ADD_STORE_8P_2X 4, 5, 9, 10, 12 |
| 295 lea outputq, [outputq + r3] | 296 lea outputq, [outputq + r3] |
| 296 ADD_STORE_8P_2X 6, 7, 9, 10, 12 | 297 ADD_STORE_8P_2X 6, 7, 9, 10, 12 |
| 297 | 298 |
| 298 RET | 299 RET |
| 299 | 300 |
| 300 %endif | 301 %endif |
| OLD | NEW |