/[svn]/linuxsampler/branches/v0_2_0/src/Sampler.cpp
ViewVC logotype

Log of /linuxsampler/branches/v0_2_0/src/Sampler.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (download) (annotate)
Sticky Revision:

Revision 408 - (view) (download) (annotate) - [select for diffs]
Modified Wed Feb 23 19:14:15 2005 UTC (19 years, 1 month ago) by (unknown author)
File length: 14298 byte(s)
Diff to previous 359
This commit was manufactured by cvs2svn to create branch 'v0_2_0'.

Revision 359 - (view) (download) (annotate) - [select for diffs]
Modified Sun Feb 6 21:01:38 2005 UTC (19 years, 1 month ago) by senkov
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 14298 byte(s)
Diff to previous 329
* Added implementation for NOTIFY:CHANNELS event


Revision 329 - (view) (download) (annotate) - [select for diffs]
Modified Tue Dec 28 09:43:04 2004 UTC (19 years, 3 months ago) by senkov
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 13946 byte(s)
Diff to previous 221
* Fixes for engine reloading. Fixed streaming bugs in some
 cases only, most probably not all yet.


Revision 221 - (view) (download) (annotate) - [select for diffs]
Modified Fri Aug 20 17:25:19 2004 UTC (19 years, 7 months ago) by schoenebeck
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 13970 byte(s)
Diff to previous 212
* src/drivers/midi/MidiInputDeviceAlsa.cpp: implemented port parameter
 "NAME" which now updates the registered ALSA seq port name as well, fixed
  port parameter "ALSA_SEQ_BINDINGS" to allow more than one binding
* src/network/lscp.y: fixed symbol STRINGVAL (that is strings encapsulated
  into apostrophes) which didn't allow space characters
* changed all driver names and driver paramaters to upper case
* fixed typo in LSCP documentation
  (section 5.3.12, was: "SET MIDI_INPUT_PORT PARAMETER",
   should be: "SET MIDI_INPUT_PORT_PARAMETER")


Revision 212 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jul 28 14:17:29 2004 UTC (19 years, 8 months ago) by schoenebeck
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 14135 byte(s)
Diff to previous 209
* introduced and implemented new LSCP command "RESET" which resets the
  whole sampler instance
* src/drivers/audio/AudioOutputDeviceAlsa.cpp: parameter 'card' now
  returns all available sound cards as possibility, added dependency to
  parameter 'card' to parameters 'fragments' and 'fragmentsize'
* src/drivers/DeviceParameter.cpp: fixed return value(s) for classes
  'DeviceCreationParameterString' and 'DeviceCreationParameterStrings'
  which returned the default value(s) not encapsulated into apostrophes
* src/network/lscpserver.cpp: fixed implementation of LSCP commands
  "GET MIDI_INPUT_DRIVER_PARAMETER INFO" and
  "GET AUDIO_OUTPUT_DRIVER_PARAMETER INFO"


Revision 209 - (view) (download) (annotate) - [select for diffs]
Modified Sun Jul 18 00:29:39 2004 UTC (19 years, 8 months ago) by schoenebeck
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 13567 byte(s)
Diff to previous 203
* src/Sampler.cpp: changed sampler channel index allocation from consistent
channel index allocation to incrementing channel index allocation, that is
it doesn't fill channel index gaps anymore (to avoid race conditions)
* implemented "LIST CHANNELS" LSCP command


Revision 203 - (view) (download) (annotate) - [select for diffs]
Modified Tue Jul 13 22:44:13 2004 UTC (19 years, 8 months ago) by schoenebeck
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 12318 byte(s)
Diff to previous 175
forgot to change some things which was mandatory due to the recent
directory movements ('/src/audiodriver' -> '/src/drivers/audio',
'/src/mididriver' -> '/src/drivers/midi')


Revision 175 - (view) (download) (annotate) - [select for diffs]
Modified Tue Jul 6 04:41:23 2004 UTC (19 years, 8 months ago) by senkov
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 12326 byte(s)
Diff to previous 159
This goes with the previous commit.
Forgot to commit this file previously.


Revision 159 - (view) (download) (annotate) - [select for diffs]
Modified Tue Jun 29 21:11:50 2004 UTC (19 years, 9 months ago) by capela
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 12434 byte(s)
Diff to previous 155
* Unconsolidaded MIDI input related channel commands are back:
  SET CHANNEL MIDI_INPUT_DEVICE <chan> <midi-device>
  SET CHANNEL MIDI_INPUT_PORT <chan> <midi-port>
  SET CHANNEL MIDI_INPUT_CHANNEL <chan> <midi-chan>

* Still useful for compability with legacy clients, an almost
  deprecated command gets re-implemented:
  SET CHANNEL MIDI_INPUT_TYPE <chan> <midi-driver>

* Optional parameter list on MIDI input device creation fixed,
  but not quite fully effective yet:
  CREATE MIDI_INPUT_DEVICE <midi-driver> [<key>=<val>...]


Revision 155 - (view) (download) (annotate) - [select for diffs]
Modified Mon Jun 28 04:30:11 2004 UTC (19 years, 9 months ago) by senkov
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 10907 byte(s)
Diff to previous 123
* Updated parser, lscp server and sampler class for new MIDI_INPUT
* Minor fixes (and major new bugs) here and there
* Consolidated 3 SET CHANNEL MIDI_xxx commands into one:
SET CHANNEL MIDI_INPUT


Revision 123 - (view) (download) (annotate) - [select for diffs]
Modified Mon Jun 14 19:33:16 2004 UTC (19 years, 9 months ago) by schoenebeck
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 9974 byte(s)
Diff to previous 76
* src/common: added template class 'optional<>' which can be used e.g. as
  return type whenever a value might be returned, but don't has to; this
  template class pretty much acts like a pointer of the given type, but is
  much more safer than a simple pointer
* src/audiodriver: added static class AudioDeviceFactory to create audio
  devices at runtime by using a string and to obtain driver informations
  of drivers at runtime, driver classes should simply use the macro
  REGISTER_AUDIO_OUTPUT_DRIVER(DriverName,DriverClass) in their cpp file
  to register the driver to LinuxSampler (no changes needed anymore in the
  LS code to add a new audio output driver)
* src/drivers: added classes to dynamically manage driver parameters; there
  are two different kinds of parameters: parameters which are need to
  create a new device (DeviceCreationParameterX) used to e.g. create an
  audio output device or a MIDI input device and parameters which are only
  available at runtime, means when a device is already created
  (DeviceRuntimeParameterX) which will be e.g. used as audio channel
  parameters and MIDI port parameters
* src/linuxsampler.cpp: all registered audio output drivers will be shown
  on the console on startup
* src/network: implemented configuration of audio output devices via LSCP


Revision 76 - (view) (download) (annotate) - [select for diffs]
Modified Fri May 14 19:10:21 2004 UTC (19 years, 10 months ago) by senkov
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 9444 byte(s)
Diff to previous 64
fix small make problem when jack is not installed


Revision 64 - (view) (download) (annotate) - [select for diffs]
Modified Thu May 6 20:06:20 2004 UTC (19 years, 10 months ago) by schoenebeck
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 9423 byte(s)
Diff to previous 61
* src/Sampler.cpp: fixed 3 stupid but fatal bugs that left in the rush (in
  method SamplerChannels(), CreateAudioOutputDevice() and
  CreateMidiInputDevice())
* src/network/lscpserver.cpp: implemented LSCP command
  'SET CHANNEL MIDI_INPUT_CHANNEL'
* src/Sampler.h: moved enums 'audio_output_type_t', 'midi_input_type_t'
  and 'engine_type_t' into the respective base classes
  ('AudioOutputDevice', 'MidiInputDevice', 'Engine')


Revision 61 - (view) (download) (annotate) - [select for diffs]
Modified Mon May 3 19:29:44 2004 UTC (19 years, 10 months ago) by schoenebeck
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 9178 byte(s)
Diff to previous 53
forgot to update copyright header for 2004 for following files:
src/linuxsampler.cpp,
src/Sampler.h,
src/Sampler.cpp,
src/network/lscpscanner.cpp


Revision 53 - (view) (download) (annotate) - [select for diffs]
Added Mon Apr 26 17:15:51 2004 UTC (19 years, 11 months ago) by schoenebeck
Original Path: linuxsampler/trunk/src/Sampler.cpp
File length: 9178 byte(s)
* completely restructured source tree
* implemented multi channel support
* implemented instrument manager, which controls sharing of instruments
  between multiple sampler engines / sampler channels
* created abstract classes 'AudioOutputDevice' and 'MidiInputDevice' for
  convenient implementation of further audio output driver and MIDI input
  driver for LinuxSampler
* implemented following LSCP commands: 'SET CHANNEL MIDI INPUT TYPE',
  'LOAD ENGINE', 'GET CHANNELS', 'ADD CHANNEL', 'REMOVE CHANNEL',
  'SET CHANNEL AUDIO OUTPUT TYPE'
* temporarily removed all command line options
* LSCP server is now launched by default


This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

  ViewVC Help
Powered by ViewVC