/[svn]/linuxsampler/trunk/src/drivers/audio/AudioOutputDevice.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/drivers/audio/AudioOutputDevice.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2411 by schoenebeck, Sat Feb 2 18:52:15 2013 UTC revision 2412 by schoenebeck, Mon Feb 4 21:52:56 2013 UTC
# Line 3  Line 3 
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *
6   *   Copyright (C) 2005 - 2010 Christian Schoenebeck                       *   *   Copyright (C) 2005 - 2013 Christian Schoenebeck                       *
7   *                                                                         *   *                                                                         *
8   *   This program is free software; you can redistribute it and/or modify  *   *   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  *   *   it under the terms of the GNU General Public License as published by  *
# Line 251  namespace LinuxSampler { Line 251  namespace LinuxSampler {
251                  (*iterEngine)->ReconnectAudioOutputDevice();                  (*iterEngine)->ReconnectAudioOutputDevice();
252              }              }
253          }          }
254            
255            // update all effects as well
256            for (std::vector<EffectChain*>::iterator it = vEffectChains.begin();
257                 it != vEffectChains.end(); ++it)
258            {
259                EffectChain* pChain = *it;
260                pChain->Reconnect(this);
261            }
262      }      }
263    
264      AudioChannel* AudioOutputDevice::Channel(uint ChannelIndex) {      AudioChannel* AudioOutputDevice::Channel(uint ChannelIndex) {

Legend:
Removed from v.2411  
changed lines
  Added in v.2412

  ViewVC Help
Powered by ViewVC