| 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 #ifndef VP8_ENCODER_BITSTREAM_H_ | 12 #ifndef VP8_ENCODER_BITSTREAM_H_ |
| 13 #define VP8_ENCODER_BITSTREAM_H_ | 13 #define VP8_ENCODER_BITSTREAM_H_ |
| 14 | 14 |
| 15 #ifdef __cplusplus | 15 #ifdef __cplusplus |
| 16 extern "C" { | 16 extern "C" { |
| 17 #endif | 17 #endif |
| 18 | 18 |
| 19 #if HAVE_EDSP | 19 #if HAVE_EDSP |
| 20 void vp8cx_pack_tokens_armv5(vp8_writer *w, const TOKENEXTRA *p, int xcount, | 20 void vp8cx_pack_tokens_armv5(vp8_writer *w, const TOKENEXTRA *p, int xcount, |
| 21 const vp8_token *, | 21 vp8_token *, |
| 22 const vp8_extra_bit_struct *, | 22 const vp8_extra_bit_struct *, |
| 23 const vp8_tree_index *); | 23 const vp8_tree_index *); |
| 24 void vp8cx_pack_tokens_into_partitions_armv5(VP8_COMP *, | 24 void vp8cx_pack_tokens_into_partitions_armv5(VP8_COMP *, |
| 25 unsigned char * cx_data, | 25 unsigned char * cx_data, |
| 26 const unsigned char *cx_data_end, | 26 const unsigned char *cx_data_end, |
| 27 int num_parts, | 27 int num_parts, |
| 28 const vp8_token *, | 28 vp8_token *, |
| 29 const vp8_extra_bit_struct *, | 29 const vp8_extra_bit_struct *, |
| 30 const vp8_tree_index *); | 30 const vp8_tree_index *); |
| 31 void vp8cx_pack_mb_row_tokens_armv5(VP8_COMP *cpi, vp8_writer *w, | 31 void vp8cx_pack_mb_row_tokens_armv5(VP8_COMP *cpi, vp8_writer *w, |
| 32 const vp8_token *, | 32 vp8_token *, |
| 33 const vp8_extra_bit_struct *, | 33 const vp8_extra_bit_struct *, |
| 34 const vp8_tree_index *); | 34 const vp8_tree_index *); |
| 35 # define pack_tokens(a,b,c) \ | 35 # define pack_tokens(a,b,c) \ |
| 36 vp8cx_pack_tokens_armv5(a,b,c,vp8_coef_encodings,vp8_extra_bits,vp8_coef_tre
e) | 36 vp8cx_pack_tokens_armv5(a,b,c,vp8_coef_encodings,vp8_extra_bits,vp8_coef_tre
e) |
| 37 # define pack_tokens_into_partitions(a,b,c,d) \ | 37 # define pack_tokens_into_partitions(a,b,c,d) \ |
| 38 vp8cx_pack_tokens_into_partitions_armv5(a,b,c,d,vp8_coef_encodings,vp8_extra
_bits,vp8_coef_tree) | 38 vp8cx_pack_tokens_into_partitions_armv5(a,b,c,d,vp8_coef_encodings,vp8_extra
_bits,vp8_coef_tree) |
| 39 # define pack_mb_row_tokens(a,b) \ | 39 # define pack_mb_row_tokens(a,b) \ |
| 40 vp8cx_pack_mb_row_tokens_armv5(a,b,vp8_coef_encodings,vp8_extra_bits,vp8_coe
f_tree) | 40 vp8cx_pack_mb_row_tokens_armv5(a,b,vp8_coef_encodings,vp8_extra_bits,vp8_coe
f_tree) |
| 41 #else | 41 #else |
| 42 | 42 |
| 43 void vp8_pack_tokens_c(vp8_writer *w, const TOKENEXTRA *p, int xcount); | 43 void vp8_pack_tokens_c(vp8_writer *w, const TOKENEXTRA *p, int xcount); |
| 44 | 44 |
| 45 # define pack_tokens(a,b,c) vp8_pack_tokens_c(a,b,c) | 45 # define pack_tokens(a,b,c) vp8_pack_tokens_c(a,b,c) |
| 46 # define pack_tokens_into_partitions(a,b,c,d) pack_tokens_into_partitions_c(a,b
,c,d) | 46 # define pack_tokens_into_partitions(a,b,c,d) pack_tokens_into_partitions_c(a,b
,c,d) |
| 47 # define pack_mb_row_tokens(a,b) pack_mb_row_tokens_c(a,b) | 47 # define pack_mb_row_tokens(a,b) pack_mb_row_tokens_c(a,b) |
| 48 #endif | 48 #endif |
| 49 | 49 |
| 50 #ifdef __cplusplus | 50 #ifdef __cplusplus |
| 51 } // extern "C" | 51 } // extern "C" |
| 52 #endif | 52 #endif |
| 53 | 53 |
| 54 #endif // VP8_ENCODER_BITSTREAM_H_ | 54 #endif // VP8_ENCODER_BITSTREAM_H_ |
| OLD | NEW |