bitstream.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*
  2.  * bitstream.h
  3.  * Copyright (C) 2004 Gildas Bazin <gbazin@videolan.org>
  4.  * Copyright (C) 2000-2003 Michel Lespinasse <walken@zoy.org>
  5.  * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
  6.  *
  7.  * This file is part of dtsdec, a free DTS Coherent Acoustics stream decoder.
  8.  * See http://www.videolan.org/dtsdec.html for updates.
  9.  *
  10.  * dtsdec is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * dtsdec is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  23.  */
  24. #ifdef WORDS_BIGENDIAN
  25. #   define swab32(x) (x)
  26. #else
  27. #   define swab32(x)
  28. ((((uint8_t*)&x)[0] << 24) | (((uint8_t*)&x)[1] << 16) |  
  29.  (((uint8_t*)&x)[2] << 8)  | (((uint8_t*)&x)[3]))
  30. #endif
  31. #ifdef WORDS_BIGENDIAN
  32. #   define swable32(x)
  33. ((((uint8_t*)&x)[0] << 16) | (((uint8_t*)&x)[1] << 24) |  
  34.  (((uint8_t*)&x)[2])  | (((uint8_t*)&x)[3] << 8))
  35. #else
  36. #   define swable32(x)
  37. ((((uint16_t*)&x)[0] << 16) | (((uint16_t*)&x)[1]))
  38. #endif
  39. void dts_bitstream_init (dts_state_t * state, uint8_t * buf, int word_mode,
  40.                          int endian_mode);
  41. uint32_t dts_bitstream_get_bh (dts_state_t * state, uint32_t num_bits);
  42. static inline uint32_t bitstream_get (dts_state_t * state, uint32_t num_bits)
  43. {
  44.     uint32_t result;
  45.     if (num_bits < state->bits_left) {
  46.         result = (state->current_word << (32 - state->bits_left))
  47.       >> (32 - num_bits);
  48.         state->bits_left -= num_bits;
  49.         return result;
  50.     }
  51.     return dts_bitstream_get_bh (state, num_bits);
  52. }