/media/libvpx/vp8/encoder/bitstream.h

http://github.com/zpao/v8monkey · C Header · 39 lines · 27 code · 3 blank · 9 comment · 0 complexity · 47380ebb0d4b6e163b332ff19df0dbb8 MD5 · raw file

  1. /*
  2. * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
  3. *
  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
  6. * tree. An additional intellectual property rights grant can be found
  7. * in the file PATENTS. All contributing project authors may
  8. * be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #ifndef __INC_BITSTREAM_H
  11. #define __INC_BITSTREAM_H
  12. #if HAVE_ARMV5TE
  13. void vp8cx_pack_tokens_armv5(vp8_writer *w, const TOKENEXTRA *p, int xcount,
  14. vp8_token *,
  15. vp8_extra_bit_struct *,
  16. const vp8_tree_index *);
  17. void vp8cx_pack_tokens_into_partitions_armv5(VP8_COMP *, unsigned char *, int , int *,
  18. vp8_token *,
  19. vp8_extra_bit_struct *,
  20. const vp8_tree_index *);
  21. void vp8cx_pack_mb_row_tokens_armv5(VP8_COMP *cpi, vp8_writer *w,
  22. vp8_token *,
  23. vp8_extra_bit_struct *,
  24. const vp8_tree_index *);
  25. # define pack_tokens(a,b,c) \
  26. vp8cx_pack_tokens_armv5(a,b,c,vp8_coef_encodings,vp8_extra_bits,vp8_coef_tree)
  27. # define pack_tokens_into_partitions(a,b,c,d) \
  28. vp8cx_pack_tokens_into_partitions_armv5(a,b,c,d,vp8_coef_encodings,vp8_extra_bits,vp8_coef_tree)
  29. # define pack_mb_row_tokens(a,b) \
  30. vp8cx_pack_mb_row_tokens_armv5(a,b,vp8_coef_encodings,vp8_extra_bits,vp8_coef_tree)
  31. #else
  32. # define pack_tokens(a,b,c) pack_tokens_c(a,b,c)
  33. # define pack_tokens_into_partitions(a,b,c,d) pack_tokens_into_partitions_c(a,b,c,d)
  34. # define pack_mb_row_tokens(a,b) pack_mb_row_tokens_c(a,b)
  35. #endif
  36. #endif