OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2010 The VP8 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 #ifndef __INC_BITSTREAM_H | 12 #ifndef __INC_BITSTREAM_H |
(...skipping 17 matching lines...) Expand all Loading... |
30 # define pack_tokens_into_partitions(a,b,c,d) \ | 30 # define pack_tokens_into_partitions(a,b,c,d) \ |
31 vp8cx_pack_tokens_into_partitions_armv7(a,b,c,d,vp8_coef_encodings,vp8_extra
_bits,vp8_coef_tree) | 31 vp8cx_pack_tokens_into_partitions_armv7(a,b,c,d,vp8_coef_encodings,vp8_extra
_bits,vp8_coef_tree) |
32 # define pack_mb_row_tokens(a,b) \ | 32 # define pack_mb_row_tokens(a,b) \ |
33 vp8cx_pack_mb_row_tokens_armv7(a,b,vp8_coef_encodings,vp8_extra_bits,vp8_coe
f_tree) | 33 vp8cx_pack_mb_row_tokens_armv7(a,b,vp8_coef_encodings,vp8_extra_bits,vp8_coe
f_tree) |
34 #else | 34 #else |
35 # define pack_tokens(a,b,c) pack_tokens_c(a,b,c) | 35 # define pack_tokens(a,b,c) pack_tokens_c(a,b,c) |
36 # define pack_tokens_into_partitions(a,b,c,d) pack_tokens_into_partitions_c(a,b
,c,d) | 36 # define pack_tokens_into_partitions(a,b,c,d) pack_tokens_into_partitions_c(a,b
,c,d) |
37 # define pack_mb_row_tokens(a,b) pack_mb_row_tokens_c(a,b) | 37 # define pack_mb_row_tokens(a,b) pack_mb_row_tokens_c(a,b) |
38 #endif | 38 #endif |
39 #endif | 39 #endif |
OLD | NEW |