| OLD | NEW |
| 1 ; | 1 ; |
| 2 ; Copyright (c) 2011 The WebM project authors. All Rights Reserved. | 2 ; Copyright (c) 2011 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 | 11 |
| 12 EXPORT |vp8_fast_quantize_b_neon| | 12 EXPORT |vp8_fast_quantize_b_neon| |
| 13 EXPORT |vp8_fast_quantize_b_pair_neon| | 13 EXPORT |vp8_fast_quantize_b_pair_neon| |
| 14 | 14 |
| 15 INCLUDE asm_enc_offsets.asm | 15 INCLUDE vp8_asm_enc_offsets.asm |
| 16 | 16 |
| 17 ARM | 17 ARM |
| 18 REQUIRE8 | 18 REQUIRE8 |
| 19 PRESERVE8 | 19 PRESERVE8 |
| 20 | 20 |
| 21 AREA ||.text||, CODE, READONLY, ALIGN=4 | 21 AREA ||.text||, CODE, READONLY, ALIGN=4 |
| 22 | 22 |
| 23 ;vp8_fast_quantize_b_pair_neon(BLOCK *b1, BLOCK *b2, BLOCKD *d1, BLOCKD *d2); | 23 ;vp8_fast_quantize_b_pair_neon(BLOCK *b1, BLOCK *b2, BLOCKD *d1, BLOCKD *d2); |
| 24 |vp8_fast_quantize_b_pair_neon| PROC | 24 |vp8_fast_quantize_b_pair_neon| PROC |
| 25 | 25 |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 ; default inverse zigzag table is defined in vp8/common/entropy.c | 249 ; default inverse zigzag table is defined in vp8/common/entropy.c |
| 250 ALIGN 16 ; enable use of @128 bit aligned loads | 250 ALIGN 16 ; enable use of @128 bit aligned loads |
| 251 inv_zig_zag | 251 inv_zig_zag |
| 252 DCW 0x0001, 0x0002, 0x0006, 0x0007 | 252 DCW 0x0001, 0x0002, 0x0006, 0x0007 |
| 253 DCW 0x0003, 0x0005, 0x0008, 0x000d | 253 DCW 0x0003, 0x0005, 0x0008, 0x000d |
| 254 DCW 0x0004, 0x0009, 0x000c, 0x000e | 254 DCW 0x0004, 0x0009, 0x000c, 0x000e |
| 255 DCW 0x000a, 0x000b, 0x000f, 0x0010 | 255 DCW 0x000a, 0x000b, 0x000f, 0x0010 |
| 256 | 256 |
| 257 END | 257 END |
| 258 | 258 |
| OLD | NEW |