/[svn]/linuxsampler/trunk/src/drivers/DeviceParameter.h
ViewVC logotype

Log of /linuxsampler/trunk/src/drivers/DeviceParameter.h

Parent Directory Parent Directory | Revision Log Revision Log


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

Revision 2434 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Mar 7 19:23:24 2013 UTC (11 years, 1 month ago) by schoenebeck
File length: 46723 byte(s)
Diff to previous 2414
* Started to spread new C++ keyword "override" over the code base
  (keyword introduced with C++11 standard).


Revision 2414 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Feb 13 13:38:00 2013 UTC (11 years, 2 months ago) by schoenebeck
File length: 46048 byte(s)
Diff to previous 1248
- Added API doc comments for driver parameter API
  (no code changes).


Revision 1248 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jun 22 10:10:06 2007 UTC (16 years, 9 months ago) by persson
File length: 15265 byte(s)
Diff to previous 880
* fixed some minor memory leaks


Revision 880 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jun 27 22:57:37 2006 UTC (17 years, 9 months ago) by schoenebeck
File length: 15216 byte(s)
Diff to previous 361
just some refactoring work:
- renamed class LinuxSamplerException -> Exception
- encapsulated LS API relevant files into LS namespace
- removed unnecessary header inclusions


Revision 361 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Feb 9 01:22:18 2005 UTC (19 years, 2 months ago) by schoenebeck
File length: 15535 byte(s)
Diff to previous 214
* bunch of fixes for OSX (patch by Stephane Letz)


Revision 214 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Aug 14 23:00:44 2004 UTC (19 years, 8 months ago) by schoenebeck
File length: 15315 byte(s)
Diff to previous 212
* src/drivers/DeviceParameter.cpp: fixed return values for
classes 'DeviceRuntimeParameterString' and 'DeviceCreationParameterString'
which returned their values without being encapsulated into apostrophes,
fixed return values for 'DeviceRuntimeParameterBool' and
'DeviceCreationParameterBool' to be returned in lower case (as defined in
the LSCP documentation)
* src/network/lscp.y: key value pairs now also allow strings (without
spaces) to be not encapsulated into apostrophes (e.g. foo=bar instead of
foo='bar')
* src/linuxsampler.cpp: show on the console which TCP port the LSCP server
is using


Revision 212 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jul 28 14:17:29 2004 UTC (19 years, 8 months ago) by schoenebeck
File length: 14815 byte(s)
Diff to previous 207
* 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 207 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 15 21:51:15 2004 UTC (19 years, 9 months ago) by schoenebeck
File length: 14565 byte(s)
Diff to previous 174
* src/linuxsampler.cpp: print out LinuxSampler version and show all
  registered MIDI input drivers
* renamed class 'InputOutputDevice' -> 'Device'


Revision 174 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jul 6 03:27:38 2004 UTC (19 years, 9 months ago) by senkov
File length: 14604 byte(s)
Diff to previous 170
* Reworked the infrastructure to allow for parameter
registration and creation
* Changed alsa audio output and midi drivers
to work with new infrastructure


Revision 170 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Jul 3 20:08:07 2004 UTC (19 years, 9 months ago) by senkov
File length: 14473 byte(s)
Diff to previous 128
* moved ToString to common
* Implemented handling of multiple connections
* Implemented guts for event subscription/unsubscription
* Illustrated event notification sending by sending MISC events
when connections are established or terminated.


Revision 128 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jun 15 03:19:30 2004 UTC (19 years, 10 months ago) by senkov
File length: 14628 byte(s)
Diff to previous 123
* Remove calls to pure virtual from constructor of base class
 to avoid runtime failure. InitWithDefault() will have to be called
 from the constructor of the class where virtuals are implemented.


Revision 123 - (view) (download) (as text) (annotate) - [select for diffs]
Added Mon Jun 14 19:33:16 2004 UTC (19 years, 10 months ago) by schoenebeck
File length: 14628 byte(s)
* 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


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