bitreader_buffer.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Copyright (c) 2013 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. #include "./vpx_config.h"
  11. #include "./bitreader_buffer.h"
  12. size_t vpx_rb_bytes_read(struct vpx_read_bit_buffer *rb) {
  13. return (rb->bit_offset + 7) >> 3;
  14. }
  15. int vpx_rb_read_bit(struct vpx_read_bit_buffer *rb) {
  16. const size_t off = rb->bit_offset;
  17. const size_t p = off >> 3;
  18. const int q = 7 - (int)(off & 0x7);
  19. if (rb->bit_buffer + p < rb->bit_buffer_end) {
  20. const int bit = (rb->bit_buffer[p] >> q) & 1;
  21. rb->bit_offset = off + 1;
  22. return bit;
  23. } else {
  24. rb->error_handler(rb->error_handler_data);
  25. return 0;
  26. }
  27. }
  28. int vpx_rb_read_literal(struct vpx_read_bit_buffer *rb, int bits) {
  29. int value = 0, bit;
  30. for (bit = bits - 1; bit >= 0; bit--)
  31. value |= vpx_rb_read_bit(rb) << bit;
  32. return value;
  33. }
  34. int vpx_rb_read_signed_literal(struct vpx_read_bit_buffer *rb,
  35. int bits) {
  36. const int value = vpx_rb_read_literal(rb, bits);
  37. return vpx_rb_read_bit(rb) ? -value : value;
  38. }
  39. int vpx_rb_read_inv_signed_literal(struct vpx_read_bit_buffer *rb,
  40. int bits) {
  41. #if CONFIG_MISC_FIXES
  42. const int nbits = sizeof(unsigned) * 8 - bits - 1;
  43. const unsigned value = (unsigned)vpx_rb_read_literal(rb, bits + 1) << nbits;
  44. return ((int) value) >> nbits;
  45. #else
  46. return vpx_rb_read_signed_literal(rb, bits);
  47. #endif
  48. }