equalizer.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * equalizer.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 18c59d931aa170e4d283a1d2c9e7f535860234a3 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #ifndef EQUALIZER_HPP
  24. #define EQUALIZER_HPP
  25. #include "../utils/var_percent.hpp"
  26. #include <string>
  27. /// Variable for graphical equalizer
  28. class EqualizerBands: public SkinObject, public Observer<VarPercent>
  29. {
  30.     public:
  31.         /// Number of bands
  32.         static const int kNbBands = 10;
  33.         EqualizerBands( intf_thread_t *pIntf );
  34.         virtual ~EqualizerBands();
  35.         /// Set the equalizer bands from a configuration string,
  36.         /// e.g. "1 5.2 -3.6 0 0 2.5 0 0 0 0"
  37.         void set( string bands );
  38.         /// Return the variable for a specific band
  39.         VariablePtr getBand( int band );
  40.     private:
  41.         /// Array of equalizer bands
  42.         VariablePtr m_cBands[kNbBands];
  43.         /// Flag set when an update is in progress
  44.         bool m_isUpdating;
  45.         /// Callback for band updates
  46.         virtual void onUpdate( Subject<VarPercent> &rBand , void *);
  47. };
  48. /// Variable for equalizer preamp
  49. class EqualizerPreamp: public VarPercent
  50. {
  51.     public:
  52.         EqualizerPreamp( intf_thread_t *pIntf );
  53.         virtual ~EqualizerPreamp() {}
  54.         virtual void set( float percentage, bool updateVLC );
  55.         void set( float percentage ) { set( percentage, true ); }
  56. };
  57. #endif