Main Page   Namespace List   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   Related Pages  

bitstream.h

00001 /*
00002  * bitstream.h
00003  * Copyright (C) 2000-2002 Michel Lespinasse <walken@zoy.org>
00004  * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
00005  *
00006  * This file is part of a52dec, a free ATSC A-52 stream decoder.
00007  * See http://liba52.sourceforge.net/ for updates.
00008  *
00009  * a52dec is free software; you can redistribute it and/or modify
00010  * it under the terms of the GNU General Public License as published by
00011  * the Free Software Foundation; either version 2 of the License, or
00012  * (at your option) any later version.
00013  *
00014  * a52dec is distributed in the hope that it will be useful,
00015  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00016  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017  * GNU General Public License for more details.
00018  *
00019  * You should have received a copy of the GNU General Public License
00020  * along with this program; if not, write to the Free Software
00021  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00022  */
00023 
00024 /* (stolen from the kernel) */
00025 #ifdef WORDS_BIGENDIAN
00026 
00027 #       define swab32(x) (x)
00028 
00029 #else
00030 
00031 #       if 0 && defined (__i386__)
00032 
00033 #       define swab32(x) __i386_swab32(x)
00034         static inline const uint32_t __i386_swab32(uint32_t x)
00035         {
00036                 __asm__("bswap %0" : "=r" (x) : "0" (x));
00037                 return x;
00038         }
00039 
00040 #       else
00041 
00042 #       define swab32(x)\
00043 ((((uint8_t*)&x)[0] << 24) | (((uint8_t*)&x)[1] << 16) |  \
00044  (((uint8_t*)&x)[2] << 8)  | (((uint8_t*)&x)[3]))
00045 
00046 #       endif
00047 #endif
00048 
00049 extern uint32_t a52_bits_left;
00050 extern uint32_t a52_current_word;
00051 
00052 void a52_bitstream_set_ptr (uint8_t * buf);
00053 uint32_t a52_bitstream_get_bh(uint32_t num_bits);
00054 int32_t a52_bitstream_get_bh_2(uint32_t num_bits);
00055 
00056 static inline uint32_t 
00057 bitstream_get(uint32_t num_bits)
00058 {
00059     uint32_t result;
00060         
00061     if(num_bits < a52_bits_left) {
00062         result = (a52_current_word << (32 - a52_bits_left)) >> (32 - num_bits);
00063         a52_bits_left -= num_bits;
00064         return result;
00065     }
00066 
00067     return a52_bitstream_get_bh(num_bits);
00068 }
00069 
00070 static inline int32_t 
00071 bitstream_get_2(uint32_t num_bits)
00072 {
00073     int32_t result;
00074         
00075     if(num_bits < a52_bits_left) {
00076         result = (((int32_t)a52_current_word) << (32 - a52_bits_left)) >> (32 - num_bits);
00077         a52_bits_left -= num_bits;
00078         return result;
00079     }
00080 
00081     return a52_bitstream_get_bh_2(num_bits);
00082 }

Generated on Sat Sep 25 14:06:35 2004 for ac3 by doxygen1.2.18