Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-05 | ALL: Use CLIP to clip volumes | Adrian Frühwirth | |
2016-03-13 | BACKENDS: Only expose one set of functions for AudioCDManager | Matthew Hoops | |
Engines should only have to call one set of functions and not decide between the two. In fact, the 'emulation' API was documented to just call the 'real CD' API. | |||
2016-03-13 | CINE: Ensure openCD() is called | Matthew Hoops | |
2015-09-13 | CINE: Correct size of arrays for CD version of Future Wars. | Kirben | |
2015-09-13 | CINE: Add support for CD music in the CD version of Future Wars. | Kirben | |
2015-07-07 | AUDIO: Remove all AudioStream access to OPL | Matthew Hoops | |
2015-07-07 | CINE: Use the built-in OPL timer | Matthew Hoops | |
2015-07-07 | AUDIO: Remove the sample rate configuration from the OPL code | Matthew Hoops | |
2015-07-07 | AUDIO: Remove the legacy OPL API | Matthew Hoops | |
2014-03-16 | CINE: Avoid possible string buffer overrun by using strlcpy and strlcat | Strangerke | |
2014-02-18 | CINE: Make GPL headers consistent in themselves. | Johannes Schickel | |
2013-11-03 | CINE: Remove unnecessary check. CID 1004117 | Eugene Sandulenko | |
2013-10-02 | CINE: Ensure that Adlib driver callbacks are initialized. CID 1003411. | D G Turner | |
2012-09-11 | CINE: Implement music fade out for Amiga/AtariST music. | Johannes Schickel | |
2012-09-08 | CINE: Implement panning for sfx for FW Amiga and AtariST. | Johannes Schickel | |
2012-09-08 | CINE: Remove unused Sound::update method. | Johannes Schickel | |
2012-09-08 | CINE: Implement sfx repeat and volume fade for FW Amiga/AtariST. | Johannes Schickel | |
This fixes bug 3091660 "FW: Looping samples don't loop in Amiga version". | |||
2012-09-08 | CINE: Skip resource header in loadSpl. | Johannes Schickel | |
This implements a long standing TODO in PaulaSound::playSound. | |||
2012-09-07 | CINE: A little bit enforcement of our formatting guidelines. | Johannes Schickel | |
Powered by astyle & manual fixup afterwards. | |||
2012-08-11 | CINE: Fix lockup in Scene 5 when "operate Girl" underwater. | D G Turner | |
Traced with gdb to sound.cpp:792 i.e. _fadeOutTimer infinite loop. This bug was introduced by the addition of the MT-32 output driver for Future Wars and associated mutex changes. The _fadeOutTimer increment is done by the timer callback occuring during the load method call, but this was excluded by the mutex. Fixed by moving the mutex in the load method. | |||
2011-12-19 | CINE: Add some comments to the MT-32 instrument code. | Johannes Schickel | |
2011-12-11 | CINE: Make findNote behave like in the original. | Johannes Schickel | |
This also reverts 42fd6975447b99f4a66ec411a62def2b3b49c5d6, which was wrong, since I misread the assembly. Ooops. | |||
2011-12-11 | CINE: Fall back to AdLib, in case a user tries to use the MT-32 output with ↵ | Johannes Schickel | |
an GM device. The driver is really specific to the Roland MT-32 right now, since it uses MT-32 specific sysEx messages to setup instruments etc. | |||
2011-12-11 | CINE: Make PC sound code thread safe, since the MIDI output might run the ↵ | Johannes Schickel | |
callback in an extra thread. | |||
2011-12-11 | CINE: Make findNote behave a bit more like the original. | Johannes Schickel | |
2011-12-11 | CINE: Implement MT-32 output driver. | Johannes Schickel | |
The driver is based on Future Wars. I do not own Operation Stealth, thus I do not know whether it works fine for it. | |||
2011-11-02 | CINE: Fix warnings | Eugene Sandulenko | |
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2011-02-09 | AUDIO: Rename sound/ dir to audio/ | Max Horn | |
svn-id: r55850 | |||
2010-12-31 | CINE: Close Memory Leak in PCSoundFxPlayer. | David Turner | |
This leakage was reported by Valgrind while playing Operation Stealth. svn-id: r55070 | |||
2010-12-29 | CINE: Fix Memory Leak in PCSoundFxPlayer. | David Turner | |
Found this using Valgrind when loading a Future Wars savegame from the launcher. Occurs since the load() method called stop() but this did not unload() the allocated playing resource data unless it was still playing. Fixed in stop() by calling unload() in all cases. svn-id: r55059 | |||
2010-11-19 | COMMON: Split common/stream.h into several headers | Max Horn | |
svn-id: r54385 | |||
2010-04-12 | AUDIO: Rename Mixer::playInputStream to playStream | Max Horn | |
svn-id: r48637 | |||
2010-01-30 | Replace use of Audio::makeRawMemoryStream by Audio::makeRawStream. | Johannes Schickel | |
svn-id: r47716 | |||
2010-01-26 | Moved audio stream implementations (for MP3, FLAC, etc.) to new dir ↵ | Max Horn | |
sound/decoders/ svn-id: r47579 | |||
2010-01-23 | Reorder params to Audio::makeRawMemoryStream | Max Horn | |
svn-id: r47492 | |||
2010-01-19 | Convert more engines from Mixer::playRaw to Mixer::playInputStream | Max Horn | |
svn-id: r47377 | |||
2010-01-19 | Get rid of Mixer::FLAG_AUTOFREE. | Max Horn | |
Also fix several recently introduced new/delete vs. malloc/free mismatches. svn-id: r47369 | |||
2010-01-12 | Rename all "Adlib" uses to "AdLib" to match the real name of the sound card ↵ | Johannes Schickel | |
/ company. Check this for reference: http://en.wikipedia.org/wiki/Ad_Lib,_Inc. http://www.crossfire-designs.de/images/articles/soundcards/adlib.jpg (note the upper left of the card) This commit does not touch "adlib" and "ADLIB" uses! Also it does not update all the SCUMM detection entries, which still use "Adlib". svn-id: r47279 | |||
2010-01-08 | Switch Mixer::playInputStream to use DisposeAfterUse::Flag | Max Horn | |
svn-id: r47182 | |||
2009-06-20 | fixed OPL 0xB0 register write. the return value of findNote() already ↵ | Gregory Montoir | |
includes the octave, no need to readd it. svn-id: r41704 | |||
2008-08-16 | Changed AdlibRegisterSoundInstrument's member variables from unsigned 16-bit ↵ | Kari Salminen | |
to unsigned 8-bit. Maybe this'll fix the crash in AdlibSoundDriver::setupInstrument() eriktorbjorn was getting in Future Wars when teleporting from the photocopier room to the swamp. There was a OPLWriteReg(_opl, 0x80 | car, reg->sustainRelease) call with sustainRelease = 65452. Now there shouldn't be any such calls made because the sustainRelease value is always 8-bit now. Hopefully this won't break anything. svn-id: r33935 | |||
2008-08-12 | Hopefully fixes 'Conditional jump or move depends on uninitialised value(s)' ↵ | Kari Salminen | |
Valgrind warning at sound.cpp:611. svn-id: r33812 | |||
2008-05-27 | CINE: Fixed two memory leaks when shutting down the CINE engine | Christopher Page | |
svn-id: r32332 | |||
2008-04-07 | Patch #1913862: "CinE Script system" | Eugene Sandulenko | |
svn-id: r31444 | |||
2007-12-13 | use CLIP template for clipping, made an array static const and renamed ↵ | Gregory Montoir | |
MAX_OBJECTDATA to MAX_VAR svn-id: r29853 | |||
2007-12-13 | Cleanup | Filippos Karapetis | |
svn-id: r29844 | |||
2007-12-09 | - minor screen fix for OS | Gregory Montoir | |
- added new debug channel for sound - updated 2 opcodes comments svn-id: r29790 | |||
2007-12-08 | reverted parts of commits #29447 and #29446 (caused regressions in ADL music ↵ | Gregory Montoir | |
playback) and properly (I hope) fixed the sound issues described in tracker item #1763053. svn-id: r29766 |