bits.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * bits.h
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 VideoLAN
  5.  * $Id: bits.h 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Eric Petit <titer@videolan.org>
  9.  *
  10.  * This program 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.  * This program 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, USA.
  23.  *****************************************************************************/
  24. typedef struct bits_buffer_s
  25. {
  26.     int     i_size;
  27.     int     i_data;
  28.     uint8_t i_mask;
  29.     uint8_t *p_data;
  30. } bits_buffer_t;
  31. static inline int bits_initwrite( bits_buffer_t *p_buffer,
  32.                                   int i_size, void *p_data )
  33. {
  34.     p_buffer->i_size = i_size;
  35.     p_buffer->i_data = 0;
  36.     p_buffer->i_mask = 0x80;
  37.     p_buffer->p_data = p_data;
  38.     p_buffer->p_data[0] = 0;
  39.     if( !p_buffer->p_data )
  40.     {
  41.         if( !( p_buffer->p_data = malloc( i_size ) ) )
  42.         {
  43.             return( -1 );
  44.         }
  45.         else
  46.         {
  47.             return( 0 );
  48.         }
  49.     }
  50.     else
  51.     {
  52.         return( 0 );
  53.     }
  54. }
  55. static inline void bits_align( bits_buffer_t *p_buffer )
  56. {
  57.     if( p_buffer->i_mask != 0x80 && p_buffer->i_data < p_buffer->i_size )
  58.     {
  59.         p_buffer->i_mask = 0x80;
  60.         p_buffer->i_data++;
  61.         p_buffer->p_data[p_buffer->i_data] = 0x00;
  62.     }
  63. }
  64. static inline void bits_write( bits_buffer_t *p_buffer,
  65.                                int i_count, uint64_t i_bits )
  66. {
  67.     while( i_count > 0 )
  68.     {
  69.         i_count--;
  70.         if( ( i_bits >> i_count )&0x01 )
  71.         {
  72.             p_buffer->p_data[p_buffer->i_data] |= p_buffer->i_mask;
  73.         }
  74.         else
  75.         {
  76.             p_buffer->p_data[p_buffer->i_data] &= ~p_buffer->i_mask;
  77.         }
  78.         p_buffer->i_mask >>= 1;
  79.         if( p_buffer->i_mask == 0 )
  80.         {
  81.             p_buffer->i_data++;
  82.             p_buffer->i_mask = 0x80;
  83.         }
  84.     }
  85. }