summaryrefslogtreecommitdiff
path: root/vp8/encoder/bitstream.h
diff options
context:
space:
mode:
authorPaul Wilkins <paulwilkins@google.com>2012-02-27 22:23:38 +0000
committerPaul Wilkins <paulwilkins@google.com>2012-02-28 17:55:42 +0000
commitb6f02c85926b928f29b428e620b1c1ec70dd9d42 (patch)
treeffe51bf8579237dcc57772ec70585b809f61061f /vp8/encoder/bitstream.h
parenteb87b56eab32116536cd33866592e6d23b888299 (diff)
downloadlibvpx-b6f02c85926b928f29b428e620b1c1ec70dd9d42.tar
libvpx-b6f02c85926b928f29b428e620b1c1ec70dd9d42.tar.gz
libvpx-b6f02c85926b928f29b428e620b1c1ec70dd9d42.tar.bz2
libvpx-b6f02c85926b928f29b428e620b1c1ec70dd9d42.zip
Code Simplification
Removal of code relating to token partitioning Change-Id: Iaf3c88d6758639a55bd92c3be5c51e6bed407a3c
Diffstat (limited to 'vp8/encoder/bitstream.h')
-rw-r--r--vp8/encoder/bitstream.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/vp8/encoder/bitstream.h b/vp8/encoder/bitstream.h
index f5d148ea4..39fa642a5 100644
--- a/vp8/encoder/bitstream.h
+++ b/vp8/encoder/bitstream.h
@@ -17,23 +17,9 @@ void vp8cx_pack_tokens_armv5(vp8_writer *w, const TOKENEXTRA *p, int xcount,
vp8_token *,
vp8_extra_bit_struct *,
const vp8_tree_index *);
-void vp8cx_pack_tokens_into_partitions_armv5(VP8_COMP *, unsigned char *, int , int *,
- vp8_token *,
- vp8_extra_bit_struct *,
- const vp8_tree_index *);
-void vp8cx_pack_mb_row_tokens_armv5(VP8_COMP *cpi, vp8_writer *w,
- vp8_token *,
- vp8_extra_bit_struct *,
- const vp8_tree_index *);
# define pack_tokens(a,b,c) \
vp8cx_pack_tokens_armv5(a,b,c,vp8_coef_encodings,vp8_extra_bits,vp8_coef_tree)
-# define pack_tokens_into_partitions(a,b,c,d) \
- vp8cx_pack_tokens_into_partitions_armv5(a,b,c,d,vp8_coef_encodings,vp8_extra_bits,vp8_coef_tree)
-# define pack_mb_row_tokens(a,b) \
- vp8cx_pack_mb_row_tokens_armv5(a,b,vp8_coef_encodings,vp8_extra_bits,vp8_coef_tree)
#else
# define pack_tokens(a,b,c) pack_tokens_c(a,b,c)
-# define pack_tokens_into_partitions(a,b,c,d) pack_tokens_into_partitions_c(a,b,c,d)
-# define pack_mb_row_tokens(a,b) pack_mb_row_tokens_c(a,b)
#endif
#endif