ibitstr.h
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*  ibitstr.cpp
  2.  *
  3.  *  Input bitstream class declarations
  4.  */
  5. /*
  6.  *  @(#) ibitstream.h 1.5, last edit: 6/15/94 16:55:34
  7.  *  @(#) Copyright (C) 1993, 1994 Tobias Bading (bading@cs.tu-berlin.de)
  8.  *  @(#) Berlin University of Technology
  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., 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  */
  24. /*
  25.  *  Changes made by Jeff Tsay :
  26.  *  04/14/97 : Added function prototypes for new syncing and seeking
  27.  *  mechanisms. Also made this file portable.
  28.  */
  29. #ifndef BITSTREAM_H
  30. #define BITSTREAM_H
  31. #ifdef __WIN32__
  32. #define STRICT
  33. #include <wtypes.h>
  34. #endif // __WIN32__
  35. #include "all.h"
  36. enum e_syncmode { INITIAL_SYNC, STRICT_SYNC };
  37. class Header; // forward declaration so we can use the type
  38. const uint32 bufferintsize = 433;
  39. // max. 1730 bytes per frame: 144 * 384kbit/s / 32000 Hz + 2 Bytes CRC
  40. // Class to extract bitstrings from files:
  41. class Ibitstream
  42. {
  43. private:
  44. #ifdef __WIN32__
  45.   HANDLE fd;
  46. #else
  47.   int fd;
  48. #endif
  49.   uint32 buffer[bufferintsize];
  50.   uint32 framesize; // number of valid bytes in buffer
  51.   uint32 *wordpointer; // position of next unsigned int for get_bits()
  52.   uint32 bitindex; // number (0-31, from MSB to LSB) of next bit for get_bits()
  53.   uint32 syncword;
  54.   bool   single_ch_mode;
  55.   int32  current_frame_number;
  56. #ifdef SEEK_STOP
  57.   int32  last_frame_number;
  58. #endif
  59.   bool   copy;          // true if this is a copy (don't close file handle)
  60. public:
  61.   Ibitstream(const char *filename);
  62.   Ibitstream(const Ibitstream &s0);
  63.   Ibitstream();
  64.   Ibitstream &operator = (const Ibitstream &s0);
  65.   ~Ibitstream();
  66.   bool get_header(uint32 *headerstring , enum e_syncmode syncmode);
  67. // get next 32 bits from bitstream in an unsigned int,
  68. // returned value False => end of stream
  69.   bool read_frame(uint32 bytesize);
  70. // fill buffer with data from bitstream, returned value False => end of stream
  71.   uint32 get_bits(uint32 number_of_bits);
  72. // read bits (1 <= number_of_bits <= 16) from buffer into the lower bits
  73. // of an unsigned int. The LSB contains the latest read bit of the stream.
  74.   void   set_syncword(uint32 syncword0);
  75.    // Set the word we want to sync the header to, in
  76.       // Big-Endian byte order
  77.   int32  current_frame() const { return(current_frame_number); }
  78.   uint32 file_size() const;
  79. // Returns the size, in bytes, of the input file.
  80.   uint32 file_pos() const;
  81. // Returns the position
  82.   // Stream searching routines (Jeff Tsay)
  83. #ifdef SEEK_STOP
  84.   int32  last_frame() const { return(last_frame_number); }
  85.   bool   seek(int32 frames, int32 frame_size);
  86. // Seeks to frames
  87.   bool   seek_pad(int32 frames, int32 frame_size,
  88.    Header *header, uint32 *offset);
  89. // Seeks frames for 44.1 or 22.05 kHz (padded) files
  90. #endif
  91.   void reset();
  92. };
  93. #endif