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

多媒体编程

开发平台:

Visual C++

  1. /*
  2.  * bitstream.c
  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. #include "config.h"
  25. #include <inttypes.h>
  26. #include "dts.h"
  27. #include "dts_internal.h"
  28. #include "bitstream.h"
  29. #define BUFFER_SIZE 4096
  30. void dts_bitstream_init (dts_state_t * state, uint8_t * buf, int word_mode,
  31.                          int bigendian_mode)
  32. {
  33.     intptr_t align;
  34.     align = (uintptr_t)buf & 3;
  35.     state->buffer_start = (uint32_t *) (buf - align);
  36.     state->bits_left = 0;
  37.     state->current_word = 0;
  38.     state->word_mode = word_mode;
  39.     state->bigendian_mode = bigendian_mode;
  40.     bitstream_get (state, align * 8);
  41. }
  42. #include<stdio.h>
  43. static inline void bitstream_fill_current (dts_state_t * state)
  44. {
  45.     uint32_t tmp;
  46.     tmp = *(state->buffer_start++);
  47.     if (state->bigendian_mode)
  48.         state->current_word = swab32 (tmp);
  49.     else
  50.         state->current_word = swable32 (tmp);
  51.     if (!state->word_mode)
  52.     {
  53.         state->current_word = (state->current_word & 0x00003FFF) |
  54.             ((state->current_word & 0x3FFF0000 ) >> 2);
  55.     }
  56. }
  57. /*
  58.  * The fast paths for _get is in the
  59.  * bitstream.h header file so it can be inlined.
  60.  *
  61.  * The "bottom half" of this routine is suffixed _bh
  62.  *
  63.  * -ah
  64.  */
  65. uint32_t dts_bitstream_get_bh (dts_state_t * state, uint32_t num_bits)
  66. {
  67.     uint32_t result;
  68.     num_bits -= state->bits_left;
  69.     result = ((state->current_word << (32 - state->bits_left)) >>
  70.       (32 - state->bits_left));
  71.     if ( !state->word_mode && num_bits > 28 ) {
  72.         bitstream_fill_current (state);
  73. result = (result << 28) | state->current_word;
  74. num_bits -= 28;
  75.     }
  76.     bitstream_fill_current (state);
  77.     if ( state->word_mode )
  78.     {
  79.         if (num_bits != 0)
  80.     result = (result << num_bits) |
  81.              (state->current_word >> (32 - num_bits));
  82. state->bits_left = 32 - num_bits;
  83.     }
  84.     else
  85.     {
  86.         if (num_bits != 0)
  87.     result = (result << num_bits) |
  88.              (state->current_word >> (28 - num_bits));
  89. state->bits_left = 28 - num_bits;
  90.     }
  91.     return result;
  92. }