Symbol: BSoftSynth
headers/os/midi/Synth.h
35
namespace BPrivate { class BSoftSynth; }
headers/os/midi/Synth.h
99
BPrivate::BSoftSynth* fSynth;
src/kits/midi/SoftSynth.cpp
101
BSoftSynth::IsLoaded(void) const
src/kits/midi/SoftSynth.cpp
108
BSoftSynth::SetDefaultInstrumentsFile()
src/kits/midi/SoftSynth.cpp
165
BSoftSynth::SetInstrumentsFile(const char* path)
src/kits/midi/SoftSynth.cpp
182
BSoftSynth::LoadAllInstruments()
src/kits/midi/SoftSynth.cpp
190
BSoftSynth::LoadInstrument(int16 instrument)
src/kits/midi/SoftSynth.cpp
198
BSoftSynth::UnloadInstrument(int16 instrument)
src/kits/midi/SoftSynth.cpp
206
BSoftSynth::RemapInstrument(int16 from, int16 to)
src/kits/midi/SoftSynth.cpp
214
BSoftSynth::FlushInstrumentCache(bool startStopCache)
src/kits/midi/SoftSynth.cpp
223
BSoftSynth::SetVolume(double volume)
src/kits/midi/SoftSynth.cpp
233
BSoftSynth::Volume(void) const
src/kits/midi/SoftSynth.cpp
240
BSoftSynth::SetSamplingRate(int32 rate)
src/kits/midi/SoftSynth.cpp
252
BSoftSynth::SamplingRate() const
src/kits/midi/SoftSynth.cpp
259
BSoftSynth::SetInterpolation(interpolation_mode mode)
src/kits/midi/SoftSynth.cpp
268
BSoftSynth::Interpolation() const
src/kits/midi/SoftSynth.cpp
275
BSoftSynth::EnableReverb(bool enabled)
src/kits/midi/SoftSynth.cpp
284
BSoftSynth::IsReverbEnabled() const
src/kits/midi/SoftSynth.cpp
291
BSoftSynth::SetReverb(reverb_mode mode)
src/kits/midi/SoftSynth.cpp
307
BSoftSynth::Reverb() const
src/kits/midi/SoftSynth.cpp
314
BSoftSynth::SetMaxVoices(int32 max)
src/kits/midi/SoftSynth.cpp
326
BSoftSynth::MaxVoices(void) const
src/kits/midi/SoftSynth.cpp
333
BSoftSynth::SetLimiterThreshold(int32 threshold)
src/kits/midi/SoftSynth.cpp
346
BSoftSynth::LimiterThreshold(void) const
src/kits/midi/SoftSynth.cpp
353
BSoftSynth::Pause(void)
src/kits/midi/SoftSynth.cpp
360
BSoftSynth::Resume(void)
src/kits/midi/SoftSynth.cpp
367
BSoftSynth::NoteOff(
src/kits/midi/SoftSynth.cpp
378
BSoftSynth::NoteOn(
src/kits/midi/SoftSynth.cpp
389
BSoftSynth::KeyPressure(
src/kits/midi/SoftSynth.cpp
400
BSoftSynth::ControlChange(
src/kits/midi/SoftSynth.cpp
411
BSoftSynth::ProgramChange(
src/kits/midi/SoftSynth.cpp
422
BSoftSynth::ChannelPressure(uchar channel, uchar pressure, uint32 time)
src/kits/midi/SoftSynth.cpp
432
BSoftSynth::PitchBend(uchar channel, uchar lsb, uchar msb, uint32 time)
src/kits/midi/SoftSynth.cpp
444
BSoftSynth::SystemExclusive(void* data, size_t length, uint32 time)
src/kits/midi/SoftSynth.cpp
454
BSoftSynth::SystemCommon(
src/kits/midi/SoftSynth.cpp
465
BSoftSynth::SystemRealTime(uchar status, uint32 time)
src/kits/midi/SoftSynth.cpp
475
BSoftSynth::TempoChange(int32 beatsPerMinute, uint32 time)
src/kits/midi/SoftSynth.cpp
48
BSoftSynth::BSoftSynth()
src/kits/midi/SoftSynth.cpp
485
BSoftSynth::AllNotesOff(bool justChannel, uint32 time)
src/kits/midi/SoftSynth.cpp
505
BSoftSynth::_Init()
src/kits/midi/SoftSynth.cpp
548
BSoftSynth::_Done()
src/kits/midi/SoftSynth.cpp
568
BSoftSynth::PlayBuffer(void* cookie, void* data, size_t size,
src/kits/midi/SoftSynth.cpp
571
BSoftSynth* synth = (BSoftSynth*)cookie;
src/kits/midi/SoftSynth.cpp
69
BSoftSynth::~BSoftSynth()
src/kits/midi/SoftSynth.cpp
83
BSoftSynth::InitCheck()
src/kits/midi/SoftSynth.cpp
92
BSoftSynth::Unload(void)
src/kits/midi/SoftSynth.h
33
class BSoftSynth {
src/kits/midi/SoftSynth.h
90
BSoftSynth();
src/kits/midi/SoftSynth.h
91
~BSoftSynth();
src/kits/midi/Synth.cpp
268
fSynth = new BSoftSynth();