⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aflibmixeritem.cc

📁 一个共享源码的音频库2
💻 CC
字号:
/* * Copyright: (C) 2000-2001 Bruce W. Forsberg * *   This library is free software; you can redistribute it and/or *   modify it under the terms of the GNU Lesser General Public *   License as published by the Free Software Foundation; either *   version 2.1 of the License, or any later version. * *   This library is distributed in the hope that it will be useful, *   but WITHOUT ANY WARRANTY; without even the implied warranty of *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU *   Lesser General Public License for more details. * *   You should have received a copy of the GNU Lesser General Public *   License along with this library; if not, write to the Free Software *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA * *   Bruce Forsberg  forsberg@tns.net * */#ifdef HAVE_CONFIG_H#include <config.h>#endif#include "aflibMixerItem.h"aflibMixerItem::aflibMixerItem(){}aflibMixerItem::aflibMixerItem(   int  input,   int  in_chan,   int  out_chan,   int  amp){   _input = input;   _in_chan = in_chan;   _out_chan = out_chan;   _amp = amp;}boolaflibMixerItem::operator < (const aflibMixerItem& item) const{   // This will sort the set by output channel, input, and input channel. 	// This will make it easier to process the list.   bool less_flag = false;   if (getOutChannel() < item.getOutChannel())   {      less_flag = true;   }   else if (getOutChannel() == item.getOutChannel())   {      if (getInput() < item.getInput())      {         less_flag = true;      }      else if (getInput() == item.getInput())      {         if (getInChannel() < item.getInChannel())         {            less_flag = true;         }      }   }   return (less_flag);}aflibMixerItem::~aflibMixerItem(){}voidaflibMixerItem::setInput(int input){   _input = input;}intaflibMixerItem::getInput() const{   return(_input);} voidaflibMixerItem::setInChannel(int in_chan){   _in_chan = in_chan;}intaflibMixerItem::getInChannel() const{   return(_in_chan);} voidaflibMixerItem::setOutChannel(int out_chan){   _out_chan = out_chan;} intaflibMixerItem::getOutChannel() const{   return(_out_chan);} voidaflibMixerItem::setAmplitude(int amp){   _amp = amp;} intaflibMixerItem::getAmplitude() const{   return (_amp);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -