Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* |
michael@0 | 2 | * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
michael@0 | 3 | * |
michael@0 | 4 | * Use of this source code is governed by a BSD-style license |
michael@0 | 5 | * that can be found in the LICENSE file in the root of the source |
michael@0 | 6 | * tree. An additional intellectual property rights grant can be found |
michael@0 | 7 | * in the file PATENTS. All contributing project authors may |
michael@0 | 8 | * be found in the AUTHORS file in the root of the source tree. |
michael@0 | 9 | */ |
michael@0 | 10 | |
michael@0 | 11 | |
michael@0 | 12 | #ifndef __INC_BITSTREAM_H |
michael@0 | 13 | #define __INC_BITSTREAM_H |
michael@0 | 14 | |
michael@0 | 15 | #if HAVE_EDSP |
michael@0 | 16 | void vp8cx_pack_tokens_armv5(vp8_writer *w, const TOKENEXTRA *p, int xcount, |
michael@0 | 17 | const vp8_token *, |
michael@0 | 18 | const vp8_extra_bit_struct *, |
michael@0 | 19 | const vp8_tree_index *); |
michael@0 | 20 | void vp8cx_pack_tokens_into_partitions_armv5(VP8_COMP *, |
michael@0 | 21 | unsigned char * cx_data, |
michael@0 | 22 | const unsigned char *cx_data_end, |
michael@0 | 23 | int num_parts, |
michael@0 | 24 | const vp8_token *, |
michael@0 | 25 | const vp8_extra_bit_struct *, |
michael@0 | 26 | const vp8_tree_index *); |
michael@0 | 27 | void vp8cx_pack_mb_row_tokens_armv5(VP8_COMP *cpi, vp8_writer *w, |
michael@0 | 28 | const vp8_token *, |
michael@0 | 29 | const vp8_extra_bit_struct *, |
michael@0 | 30 | const vp8_tree_index *); |
michael@0 | 31 | # define pack_tokens(a,b,c) \ |
michael@0 | 32 | vp8cx_pack_tokens_armv5(a,b,c,vp8_coef_encodings,vp8_extra_bits,vp8_coef_tree) |
michael@0 | 33 | # define pack_tokens_into_partitions(a,b,c,d) \ |
michael@0 | 34 | vp8cx_pack_tokens_into_partitions_armv5(a,b,c,d,vp8_coef_encodings,vp8_extra_bits,vp8_coef_tree) |
michael@0 | 35 | # define pack_mb_row_tokens(a,b) \ |
michael@0 | 36 | vp8cx_pack_mb_row_tokens_armv5(a,b,vp8_coef_encodings,vp8_extra_bits,vp8_coef_tree) |
michael@0 | 37 | #else |
michael@0 | 38 | |
michael@0 | 39 | void vp8_pack_tokens_c(vp8_writer *w, const TOKENEXTRA *p, int xcount); |
michael@0 | 40 | |
michael@0 | 41 | # define pack_tokens(a,b,c) vp8_pack_tokens_c(a,b,c) |
michael@0 | 42 | # define pack_tokens_into_partitions(a,b,c,d) pack_tokens_into_partitions_c(a,b,c,d) |
michael@0 | 43 | # define pack_mb_row_tokens(a,b) pack_mb_row_tokens_c(a,b) |
michael@0 | 44 | #endif |
michael@0 | 45 | |
michael@0 | 46 | #endif |