| OLD | NEW |
| 1 ; | 1 ; |
| 2 ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 ; Copyright (c) 2010 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 SECTION_RODATA | 13 SECTION_RODATA |
| 16 pw_4: times 8 dw 4 | 14 pw_4: times 8 dw 4 |
| 17 pw_8: times 8 dw 8 | 15 pw_8: times 8 dw 8 |
| 18 pw_16: times 8 dw 16 | 16 pw_16: times 8 dw 16 |
| 19 pw_32: times 8 dw 32 | 17 pw_32: times 8 dw 32 |
| 20 dc_128: times 16 db 128 | 18 dc_128: times 16 db 128 |
| 21 pw2_4: times 8 dw 2 | 19 pw2_4: times 8 dw 2 |
| 22 pw2_8: times 8 dw 4 | 20 pw2_8: times 8 dw 4 |
| (...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 mova [dstq +16], m9 | 658 mova [dstq +16], m9 |
| 661 packuswb m2, m8 | 659 packuswb m2, m8 |
| 662 packuswb m7, m6 | 660 packuswb m7, m6 |
| 663 mova [dstq+strideq ], m2 | 661 mova [dstq+strideq ], m2 |
| 664 mova [dstq+strideq+16], m7 | 662 mova [dstq+strideq+16], m7 |
| 665 lea dstq, [dstq+strideq*2] | 663 lea dstq, [dstq+strideq*2] |
| 666 inc lineq | 664 inc lineq |
| 667 jnz .loop | 665 jnz .loop |
| 668 REP_RET | 666 REP_RET |
| 669 %endif | 667 %endif |
| OLD | NEW |