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

多媒体编程

开发平台:

Visual C++

  1. /* sublay2.cpp
  2.    Layer II subband object declarations */
  3.    /*
  4.  *  @(#) subband_layer_2.h 1.8, last edit: 6/15/94 16:51:59
  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_2_H
  23. #define SUBBAND_LAYER_2_H
  24. #include "all.h"
  25. #include "subband.h"
  26. #include "header.h"
  27. #include "crc.h"
  28. // class for layer II subbands in single channel mode:
  29. class SubbandLayer2 : public Subband
  30. {
  31. protected:
  32.   uint32 subbandnumber;
  33.   uint32 allocation;
  34.   uint32 scfsi;
  35.   real  scalefactor1, scalefactor2, scalefactor3;
  36.   uint32 codelength;
  37.   const real *groupingtable;
  38.   real  factor;
  39.   uint32 groupnumber;
  40.   uint32 samplenumber;
  41.   real  samples[3];
  42.   real  c, d;
  43.   uint32 get_allocationlength (Header *);
  44.   void  prepare_sample_reading (Header *, uint32, const real **, real *,
  45.  uint32 *, real *, real *);
  46. public:
  47.   SubbandLayer2 (uint32 subbandnumber);
  48.   void read_allocation (Ibitstream *, Header *, Crc16 *);
  49.   virtual void read_scalefactor_selection (Ibitstream *, Crc16 *);
  50.   void read_scalefactor (Ibitstream *, Header *);
  51.   bool read_sampledata (Ibitstream *);
  52.   bool put_next_sample (e_channels, SynthesisFilter *, SynthesisFilter * = NULL);
  53. };
  54. // class for layer II subbands in joint stereo mode:
  55. class SubbandLayer2IntensityStereo : public SubbandLayer2
  56. {
  57. protected:
  58.   uint32 channel2_scfsi;
  59.   real  channel2_scalefactor1, channel2_scalefactor2, channel2_scalefactor3;
  60. public:
  61.        SubbandLayer2IntensityStereo (uint32 subbandnumber);
  62.   void read_allocation (Ibitstream *stream, Header *header, Crc16 *crc)
  63.   {
  64.     SubbandLayer2::read_allocation (stream, header, crc);
  65.   }
  66.   void read_scalefactor_selection (Ibitstream *, Crc16 *);
  67.   void read_scalefactor (Ibitstream *, Header *);
  68.   bool read_sampledata (Ibitstream *stream)
  69.   {
  70.  return SubbandLayer2::read_sampledata (stream);
  71.   }
  72.   bool put_next_sample (e_channels, SynthesisFilter *, SynthesisFilter *);
  73. };
  74. // class for layer II subbands in stereo mode:
  75. class SubbandLayer2Stereo : public SubbandLayer2
  76. {
  77. protected:
  78.   uint32 channel2_allocation;
  79.   uint32 channel2_scfsi;
  80.   real  channel2_scalefactor1, channel2_scalefactor2, channel2_scalefactor3;
  81.   bool  channel2_grouping;
  82.   uint32 channel2_codelength;
  83.   const real *channel2_groupingtable;
  84.   real  channel2_factor;
  85.   real  channel2_samples[3];
  86.   real  channel2_c, channel2_d;
  87. public:
  88.        SubbandLayer2Stereo (uint32 subbandnumber);
  89.   void read_allocation (Ibitstream *, Header *, Crc16 *);
  90.   void read_scalefactor_selection (Ibitstream *, Crc16 *);
  91.   void read_scalefactor (Ibitstream *, Header *);
  92.   bool read_sampledata (Ibitstream *);
  93.   bool put_next_sample (e_channels, SynthesisFilter *, SynthesisFilter *);
  94. };
  95. #endif