bits.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * bits.h
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2002 the VideoLAN team
  5.  * $Id: 0a14e904ca20fbd37ed0de088549ee3f914b4dac $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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.     if( !p_buffer->p_data )
  39.     {
  40.         if( !( p_buffer->p_data = malloc( i_size ) ) )
  41.             return -1;
  42.     }
  43.     p_buffer->p_data[0] = 0;
  44.     return 0;
  45. }
  46. static inline void bits_align( bits_buffer_t *p_buffer )
  47. {
  48.     if( p_buffer->i_mask != 0x80 && p_buffer->i_data < p_buffer->i_size )
  49.     {
  50.         p_buffer->i_mask = 0x80;
  51.         p_buffer->i_data++;
  52.         p_buffer->p_data[p_buffer->i_data] = 0x00;
  53.     }
  54. }
  55. static inline void bits_write( bits_buffer_t *p_buffer,
  56.                                int i_count, uint64_t i_bits )
  57. {
  58.     while( i_count > 0 )
  59.     {
  60.         i_count--;
  61.         if( ( i_bits >> i_count )&0x01 )
  62.         {
  63.             p_buffer->p_data[p_buffer->i_data] |= p_buffer->i_mask;
  64.         }
  65.         else
  66.         {
  67.             p_buffer->p_data[p_buffer->i_data] &= ~p_buffer->i_mask;
  68.         }
  69.         p_buffer->i_mask >>= 1;
  70.         if( p_buffer->i_mask == 0 )
  71.         {
  72.             p_buffer->i_data++;
  73.             p_buffer->i_mask = 0x80;
  74.         }
  75.     }
  76. }