bitfield.c
上传用户:biaoge6808
上传日期:2007-08-15
资源大小:42k
文件大小:4k
源码类别:

多媒体

开发平台:

C/C++

  1. #ifdef __cplusplus
  2. extern "C" {
  3. #endif
  4. /*
  5. NOTICE:
  6. This document contains information that is proprietary to RADVISION LTD.
  7. No part of this publication may be reproduced in any form whatsoever without
  8. written prior approval by RADVISION LTD..
  9. RADVISION LTD. reserves the right to revise this publication and make changes
  10. without obligation to notify any person of such revisions or changes.
  11. */
  12. /****************************************************************************
  13.   bitfield.c  --  Bit-field manipulation
  14.   This Comment:  10-Mar-1997
  15.   Abstract:      Misc. routines for bit field manipulation.
  16.   Platforms:     All.
  17.   Known Bugs:    None.
  18. ****************************************************************************/
  19. #include "bitfield.h"
  20. /*===========================================================================
  21. **  == bitfieldSet() ==                                                    **
  22. **                                                                         **
  23. **  Sets a sequence of bits in an integer to a specified value.            **
  24. **                                                                         **
  25. **  PARAMETERS:                                                            **
  26. **      value      The integer value to work on.                           **
  27. **                                                                         **
  28. **      bitfield   The bit sequence to insert into the integer.            **
  29. **                                                                         **
  30. **      nStartBit  This value specifies the list-segnificant bit index     **
  31. **                 for the bit sequence.  e.g. if nStartBit is set to 1,   **
  32. **                 and nBits is set to 3, the bit sequence will occupy     **
  33. **                 bits 1 through 4.                                       **
  34. **                                                                         **
  35. **      nBits      The number of bits in the bit sequence.                 **
  36. **                                                                         **
  37. **  RETURNS:                                                               **
  38. **      The new integer value.                                             **
  39. **                                                                         **
  40. **=========================================================================*/
  41. UINT32 bitfieldSet(
  42.     IN  UINT32  value,
  43.     IN  UINT32  bitfield,
  44.     IN  int     nStartBit,
  45.     IN  int     nBits)
  46. {
  47.     int mask = (1 << nBits) - 1;
  48.     return (value & ~(mask << nStartBit)) +
  49.            ((bitfield & mask) << nStartBit);
  50. }
  51. /*===========================================================================
  52. **  == bitfieldGet() ==                                                    **
  53. **                                                                         **
  54. **  Retreives the sequence of bits in an integer.                          **
  55. **                                                                         **
  56. **  PARAMETERS:                                                            **
  57. **      value      The integer value to work on.                           **
  58. **                                                                         **
  59. **      nStartBit  This value specifies the list-segnificant bit index     **
  60. **                 of the bit sequence.  e.g. if nStartBit is set to 1,    **
  61. **                 and nBits is set to 3, the bit sequence in bits 1       **
  62. **                 through 4 is used.                                      **
  63. **                                                                         **
  64. **      nBits      The number of bits in the bit sequence.                 **
  65. **                                                                         **
  66. **  RETURNS:                                                               **
  67. **      Returns the bit sequence.  The sequence will occupy bits           **
  68. **      0..(Bits-1).                                                       **
  69. **                                                                         **
  70. **=========================================================================*/
  71. UINT32 bitfieldGet(
  72.     IN  UINT32  value,
  73.     IN  int     nStartBit,
  74.     IN  int     nBits)
  75. {
  76.     int mask = (1 << nBits) - 1;
  77.     return (value >> nStartBit) & mask;
  78. }
  79. #ifdef __cplusplus
  80. }
  81. #endif