formatBitstream.h
上传用户:njqiyou
上传日期:2007-01-08
资源大小:574k
文件大小:5k
源码类别:

mpeg/mp3

开发平台:

C/C++

  1. #ifndef _FORMAT_BITSTREAM_H
  2. #define _FORMAT_BITSTREAM_H
  3. /*********************************************************************
  4.   Copyright (c) 1995 ISO/IEC JTC1 SC29 WG1, All Rights Reserved
  5.   formatBitstream.h
  6. **********************************************************************/
  7. /*
  8.   Revision History:
  9.   Date        Programmer                Comment
  10.   ==========  ========================= ===============================
  11.   1995/09/06  mc@fivebats.com           created
  12. */
  13. #ifndef MAX_CHANNELS
  14. #define MAX_CHANNELS 2
  15. #endif
  16. #ifndef MAX_GRANULES
  17. #define MAX_GRANULES 2
  18. #endif
  19. /* Find the ANSI header for these! */
  20. typedef unsigned int   uint32;
  21. typedef unsigned short uint16;
  22. /*
  23.   This is the prototype for the function pointer you must
  24.   provide to write bits to the bitstream. It should write
  25.   'length' bits from 'value,' msb first. Bits in value are
  26.   assumed to be right-justified.
  27. */
  28. typedef void (*BitsFcnPtr)( uint32 value, uint16 length );
  29. /*
  30.   A BitstreamElement contains encoded data
  31.   to be written to the bitstream.
  32.   'length' bits of 'value' will be written to
  33.   the bitstream msb-first.
  34. */
  35. typedef struct
  36. {
  37.     uint32 value;
  38.     uint16 length;
  39. } BF_BitstreamElement;
  40. /*
  41.   A BitstreamPart contains a group
  42.   of 'nrEntries' of BitstreamElements.
  43.   Each BitstreamElement will be written
  44.   to the bitstream in the order it appears
  45.   in the 'element' array.
  46. */
  47. typedef struct
  48. {
  49.     uint32              nrEntries;
  50.     BF_BitstreamElement *element;
  51. } BF_BitstreamPart;
  52. /*
  53.   This structure contains all the information needed by the
  54.   bitstream formatter to encode one frame of data. You must
  55.   fill this out and provide a pointer to it when you call
  56.   the formatter.
  57.   Maintainers: If you add or remove part of the side
  58.   information, you will have to update the routines that
  59.   make local copies of that information (in formatBitstream.c)
  60. */
  61. typedef struct BF_FrameData
  62. {
  63.     BitsFcnPtr       putbits;  /* your low-level bitstream function */
  64.     int              frameLength;
  65.     int              nGranules;
  66.     int              nChannels;
  67.     BF_BitstreamPart *header;
  68.     BF_BitstreamPart *frameSI;
  69.     BF_BitstreamPart *channelSI[MAX_CHANNELS];
  70.     BF_BitstreamPart *spectrumSI[MAX_GRANULES][MAX_CHANNELS];
  71.     BF_BitstreamPart *scaleFactors[MAX_GRANULES][MAX_CHANNELS];
  72.     BF_BitstreamPart *codedData[MAX_GRANULES][MAX_CHANNELS];
  73.     BF_BitstreamPart *userSpectrum[MAX_GRANULES][MAX_CHANNELS];
  74.     BF_BitstreamPart *userFrameData;
  75. } BF_FrameData;
  76. /*
  77.   This structure contains information provided by
  78.   the bitstream formatter. You can use this to
  79.   check to see if your code agrees with the results
  80.   of the call to the formatter.
  81. */
  82. typedef struct BF_FrameResults
  83. {
  84.     int SILength;
  85.     int mainDataLength;
  86.     int nextBackPtr;
  87. } BF_FrameResults;
  88. /*
  89.   The following is a shorthand bitstream syntax for
  90.   the type of bitstream this package will create.
  91.   The bitstream has headers and side information that
  92.   are placed at appropriate sections to allow framing.
  93.   The main data is placed where it fits in a manner
  94.   similar to layer3, which means that main data for a
  95.   frame may be written to the bitstream before the
  96.   frame's header and side information is written.
  97. BitstreamFrame()
  98. {
  99.     Header();
  100.     FrameSI();
  101.     for ( ch )
  102. ChannelSI();
  103.     for ( gr )
  104. for ( ch )
  105.     SpectrumSI();
  106.     MainData();
  107. }
  108. MainData()
  109. {
  110.     for ( gr )
  111. for ( ch )
  112. {
  113.     Scalefactors();
  114.     CodedData();
  115.     UserSpectrum();
  116. }
  117.     UserFrameData();
  118. }
  119. */
  120. /*
  121.   public functions in formatBitstream.c
  122. */
  123. /* count the bits in a BitstreamPart */
  124. int  BF_PartLength( BF_BitstreamPart *part );
  125. /* encode a frame of audio and write it to your bitstream */
  126. void BF_BitstreamFrame( BF_FrameData *frameInfo, BF_FrameResults *results );
  127. /* write any remaining frames to the bitstream, padding with zeros */
  128. void BF_FlushBitstream( BF_FrameData *frameInfo, BF_FrameResults *results );
  129. typedef struct BF_PartHolder
  130. {
  131.     int              max_elements;
  132.     BF_BitstreamPart *part;
  133. } BF_PartHolder;
  134. BF_PartHolder *BF_newPartHolder( int max_elements );
  135. BF_PartHolder *BF_resizePartHolder( BF_PartHolder *oldPH, int max_elements );
  136. BF_PartHolder *BF_addElement( BF_PartHolder *thePH, BF_BitstreamElement *theElement );
  137. BF_PartHolder *BF_addEntry( BF_PartHolder *thePH, uint32 value, uint16 length );
  138. BF_PartHolder *BF_NewHolderFromBitstreamPart( BF_BitstreamPart *thePart );
  139. BF_PartHolder *BF_LoadHolderFromBitstreamPart( BF_PartHolder *theHolder, BF_BitstreamPart *thePart );
  140. BF_PartHolder *BF_freePartHolder( BF_PartHolder *thePH );
  141. #endif