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

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

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

revision 1933 by persson, Mon Sep 15 16:58:10 2008 UTC revision 1934 by schoenebeck, Sun Jul 12 10:35:55 2009 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2   *                                                                         *   *                                                                         *
3   *   Copyright (C) 2008 Andreas Persson                                    *   *   Copyright (C) 2008 - 2009 Andreas Persson                             *
4   *                                                                         *   *                                                                         *
5   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
6   *   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 123  namespace LinuxSampler { Line 123  namespace LinuxSampler {
123      }      }
124    
125      String AudioOutputDevicePlugin::Version() {      String AudioOutputDevicePlugin::Version() {
126          String s = "$Revision: 1.1 $";          String s = "$Revision: 1.2 $";
127          return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword          return s.substr(11, s.size() - 13); // cut dollar signs, spaces and CVS macro keyword
128      }      }
129    
# Line 134  namespace LinuxSampler { Line 134  namespace LinuxSampler {
134      AudioChannel* AudioOutputDevicePlugin::CreateChannel(uint ChannelNr) {      AudioChannel* AudioOutputDevicePlugin::CreateChannel(uint ChannelNr) {
135          return new AudioChannelPlugin(ChannelNr);          return new AudioChannelPlugin(ChannelNr);
136      }      }
137    
138        bool AudioOutputDevicePlugin::isAutonomousDevice() {
139            return false;
140        }
141    
142        bool AudioOutputDevicePlugin::isAutonomousDriver() {
143            return false;
144        }
145  }  }

Legend:
Removed from v.1933  
changed lines
  Added in v.1934

  ViewVC Help
Powered by ViewVC