You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.7KB

  1. /*
  2. * bitstream.h
  3. *
  4. * Copyright (C) Aaron Holtzman - Dec 1999
  5. *
  6. * This file is part of ac3dec, a free AC-3 audio decoder
  7. *
  8. * ac3dec is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2, or (at your option)
  11. * any later version.
  12. *
  13. * ac3dec is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with GNU Make; see the file COPYING. If not, write to
  20. * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21. *
  22. */
  23. //My new and improved vego-matic endian swapping routine
  24. //(stolen from the kernel)
  25. #ifdef WORDS_BIGENDIAN
  26. # define swab32(x) (x)
  27. #else
  28. # if defined (__i386__)
  29. # define swab32(x) __i386_swab32(x)
  30. static inline const uint32_t __i386_swab32(uint32_t x)
  31. {
  32. __asm__("bswap %0" : "=r" (x) : "0" (x));
  33. return x;
  34. }
  35. # else
  36. # define swab32(x)\
  37. ((((uint8_t*)&x)[0] << 24) | (((uint8_t*)&x)[1] << 16) | \
  38. (((uint8_t*)&x)[2] << 8) | (((uint8_t*)&x)[3]))
  39. # endif
  40. #endif
  41. extern uint32_t bits_left;
  42. extern uint32_t current_word;
  43. void bitstream_set_ptr (uint8_t * buf);
  44. uint32_t bitstream_get_bh(uint32_t num_bits);
  45. static inline uint32_t
  46. bitstream_get(uint32_t num_bits)
  47. {
  48. uint32_t result;
  49. if(num_bits < bits_left) {
  50. result = (current_word << (32 - bits_left)) >> (32 - num_bits);
  51. bits_left -= num_bits;
  52. return result;
  53. }
  54. return bitstream_get_bh(num_bits);
  55. }