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

多媒体编程

开发平台:

Visual C++

  1. /*  sublay1.h
  2.  Declarations for Layer I subband objects */
  3. /*
  4.  *  @(#) subband_layer_1.h 1.6, last edit: 6/15/94 16:51:58
  5.  *  @(#) Copyright (C) 1993, 1994 Tobias Bading (bading@cs.tu-berlin.de)
  6.  *  @(#) Berlin University of Technology
  7.  *
  8.  *  This program is free software; you can redistribute it and/or modify
  9.  *  it under the terms of the GNU General Public License as published by
  10.  *  the Free Software Foundation; either version 2 of the License, or
  11.  *  (at your option) any later version.
  12.  *
  13.  *  This program is distributed in the hope that it will be useful,
  14.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  *  GNU General Public License for more details.
  17.  *
  18.  *  You should have received a copy of the GNU General Public License
  19.  *  along with this program; if not, write to the Free Software
  20.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  */
  22. #ifndef SUBBAND_LAYER_1_H
  23. #define SUBBAND_LAYER_1_H
  24. #include "all.h"
  25. #include "subband.h"
  26. #include "crc.h"
  27. // class for layer I subbands in single channel mode:
  28. class SubbandLayer1 : public Subband
  29. {
  30. protected:
  31.   uint32 subbandnumber;
  32.   uint32 samplenumber;
  33.   uint32 allocation;
  34.   real  scalefactor;
  35.   uint32 samplelength;
  36.   real  sample;
  37.   real  factor, offset;
  38. public:
  39.   SubbandLayer1 (uint32 subbandnumber);
  40.   void read_allocation (Ibitstream *, Header *, Crc16 *);
  41.   void read_scalefactor (Ibitstream *, Header *);
  42.   bool read_sampledata (Ibitstream *);
  43.   bool put_next_sample (e_channels, SynthesisFilter *, SynthesisFilter *);
  44. };
  45. // class for layer I subbands in joint stereo mode:
  46. class SubbandLayer1IntensityStereo : public SubbandLayer1
  47. {
  48. protected:
  49.   real channel2_scalefactor;
  50. public:
  51.        SubbandLayer1IntensityStereo (uint32 subbandnumber);
  52.   void read_allocation (Ibitstream *stream, Header *header, Crc16 *crc)
  53.   {
  54.     SubbandLayer1::read_allocation (stream, header, crc);
  55.   }
  56.   void read_scalefactor (Ibitstream *, Header *);
  57.   bool read_sampledata (Ibitstream *stream)
  58.   {
  59.  return SubbandLayer1::read_sampledata (stream);
  60.   }
  61.   bool put_next_sample (e_channels, SynthesisFilter *, SynthesisFilter *);
  62. };
  63. // class for layer I subbands in stereo mode:
  64. class SubbandLayer1Stereo : public SubbandLayer1
  65. {
  66. protected:
  67.   uint32 channel2_allocation;
  68.   real  channel2_scalefactor;
  69.   uint32 channel2_samplelength;
  70.   real  channel2_sample;
  71.   real  channel2_factor, channel2_offset;
  72. public:
  73.        SubbandLayer1Stereo (uint32 subbandnumber);
  74.   void read_allocation (Ibitstream *, Header *, Crc16 *);
  75.   void read_scalefactor (Ibitstream *, Header *);
  76.   bool read_sampledata (Ibitstream *);
  77.   bool put_next_sample (e_channels, SynthesisFilter *, SynthesisFilter *);
  78. };
  79. #endif