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 | 11 |
12 EXPORT |vp8_start_encode| | 12 EXPORT |vp8_start_encode| |
13 EXPORT |vp8_encode_bool| | 13 EXPORT |vp8_encode_bool| |
14 EXPORT |vp8_stop_encode| | 14 EXPORT |vp8_stop_encode| |
15 EXPORT |vp8_encode_value| | 15 EXPORT |vp8_encode_value| |
16 IMPORT |vp8_validate_buffer_arm| | 16 IMPORT |vp8_validate_buffer_arm| |
17 | 17 |
18 INCLUDE asm_enc_offsets.asm | 18 INCLUDE vp8_asm_enc_offsets.asm |
19 | 19 |
20 ARM | 20 ARM |
21 REQUIRE8 | 21 REQUIRE8 |
22 PRESERVE8 | 22 PRESERVE8 |
23 | 23 |
24 AREA |.text|, CODE, READONLY | 24 AREA |.text|, CODE, READONLY |
25 | 25 |
26 ; macro for validating write buffer position | 26 ; macro for validating write buffer position |
27 ; needs vp8_writer in r0 | 27 ; needs vp8_writer in r0 |
28 ; start shall not be in r1 | 28 ; start shall not be in r1 |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 subs r10, r10, #1 | 301 subs r10, r10, #1 |
302 bne encode_value_loop | 302 bne encode_value_loop |
303 | 303 |
304 str r2, [r0, #vp8_writer_lowvalue] | 304 str r2, [r0, #vp8_writer_lowvalue] |
305 str r5, [r0, #vp8_writer_range] | 305 str r5, [r0, #vp8_writer_range] |
306 str r3, [r0, #vp8_writer_count] | 306 str r3, [r0, #vp8_writer_count] |
307 pop {r4-r12, pc} | 307 pop {r4-r12, pc} |
308 ENDP | 308 ENDP |
309 | 309 |
310 END | 310 END |
OLD | NEW |