Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-10-10 | Removed the "reset all controllers" message. It currently breaks on Adlib, | Torbjörn Andersson | |
and I don't want to have to worry about it. Centering the pitch wheel is the change that I primarily wanted to make, and that should be supported by every MIDI driver we have. svn-id: r18999 | |||
2005-10-10 | I noticed yesterday that if you change music in IHNM at the "right" moment, | Torbjörn Andersson | |
the music will be horribly out of tune because the pitch wheel setting from the old music will still apply. I hope allNotesOff() is the correct place to ensure that the pitch wheel is centered. svn-id: r18998 | |||
2005-09-22 | Fix regression caused by recent code cleanup. Each input byte should be | Eugene Sandulenko | |
processed twice, so even if stream end is reached, there should be another iteration. Otherwise it always returned one byte less than expected. svn-id: r18859 | |||
2005-09-18 | Clarify the AudioStream::readSample requirements | Max Horn | |
svn-id: r18844 | |||
2005-09-17 | Cleaned up the ADPCM code | Max Horn | |
svn-id: r18840 | |||
2005-09-17 | libtremor is installed to a different location when using the port from ↵ | Joost Peters | |
pspdev svn svn-id: r18838 | |||
2005-09-11 | committed patch #1281714 'Kyra 1 Sound Patch'. Thanks LordHoto. | Gregory Montoir | |
svn-id: r18807 | |||
2005-09-03 | Change PalmOS ident | Chris Apers | |
svn-id: r18756 | |||
2005-08-10 | Don't explicity check for tremor and vorbis everywhere and | Jonathan Gray | |
require both USE_TREMOR and USE_VORBIS to be defined when using tremor. svn-id: r18642 | |||
2005-08-10 | Rest of the changes required for tremor to actually work. | Jonathan Gray | |
Based on patches against 0.7.1 by Jolan Luff. svn-id: r18641 | |||
2005-07-30 | Remove trailing whitespaces. | Eugene Sandulenko | |
svn-id: r18604 | |||
2005-07-19 | I believe this fixes a GCC 4 compile error, but I can't run the MT-32 | Torbjörn Andersson | |
emulator (my computer is too slow, and anyway I don't have the necessary data files) so I haven't tested it other than by compiling it. See bug #1224138 for details. svn-id: r18558 | |||
2005-07-11 | Fix more GCC 4.0 warnings | Max Horn | |
svn-id: r18533 | |||
2005-07-03 | - Small changes to sync with Munt. | Jerome Fisher | |
svn-id: r18488 | |||
2005-06-30 | Enhanced tremor support from Jolan Luff. | Jonathan Gray | |
The configure script now works as follows for detection: Tremor only: use tremor Vorbis only: use vorbis Both: use vorbis This behaviour can be changed with newly added configure script options. svn-id: r18478 | |||
2005-06-26 | Fix warning | Max Horn | |
svn-id: r18469 | |||
2005-06-26 | Updated Scummvm MP3 implementation with patch so it works with Symbian ↵ | Lars Persson | |
multithreading. This openingen/closing the file for each chunk to read. This does only affect the Symbian build and the other ports should work as normal. svn-id: r18466 | |||
2005-06-24 | oops forgot this in my previous commit | Max Horn | |
svn-id: r18457 | |||
2005-06-24 | Fixed Oki table entry; added doc URL; mention IMA ADPCM | Max Horn | |
svn-id: r18456 | |||
2005-06-24 | For consistency, specify directory when including files. | Torbjörn Andersson | |
svn-id: r18454 | |||
2005-06-24 | When including files from common/, explicitly use the common/ prefix | Max Horn | |
svn-id: r18444 | |||
2005-06-21 | Patches needed to build for SYMBIAN32 WINS/GCC added. | Lars Persson | |
Test built for Symbian and run on P910i without any major problems. Test built for MSVC6. Changed parts seems to compile ok but there are some problems with MSVC6 and some of the targets which the EPOC build does n't support (KYRA,SAGA). svn-id: r18430 | |||
2005-06-20 | Added virtual destructor, to silence a few more GCC 4 warnings | Max Horn | |
svn-id: r18420 | |||
2005-05-27 | More whitespace changes. | Torbjörn Andersson | |
svn-id: r18273 | |||
2005-05-11 | Mixer is now in namespace Audio. fix compiling. | Oliver Kiehl | |
svn-id: r18056 | |||
2005-05-11 | Moved some more stuff to namespace Audio (enough for tonight) | Max Horn | |
svn-id: r18040 | |||
2005-05-10 | Moved class SoundMixer to Audio::Mixer (didn't call the namespace 'Sound' ↵ | Max Horn | |
because we already have many classes with that name) svn-id: r18039 | |||
2005-05-10 | Moved (In/Out)SaveFile(Manager) and Timer to namespace Common | Max Horn | |
svn-id: r18038 | |||
2005-05-10 | Moved class File and the MD5 stuff to namespace Common | Max Horn | |
svn-id: r18037 | |||
2005-05-09 | fixed warning | Paweł Kołodziejski | |
svn-id: r18012 | |||
2005-05-09 | Patch #1181544 (AmigaOS 4 changes) | Max Horn | |
svn-id: r18011 | |||
2005-05-09 | Fix doxygen message | Max Horn | |
svn-id: r18000 | |||
2005-05-08 | Comply to our coding conventions | Max Horn | |
svn-id: r17975 | |||
2005-05-05 | Fixed some doxygen warnings | Max Horn | |
svn-id: r17923 | |||
2005-05-04 | Switch link to web page with more detailed information on compression types. | Travis Howell | |
svn-id: r17905 | |||
2005-05-03 | o Fixed ADPCM decoder length bug | Eugene Sandulenko | |
o Plugged IMA ADPCM into SCUMM engine so latter HE titles now have speech though it is somewhat noisy don't know why as decoder is based on ADPCM reference implementation. svn-id: r17904 | |||
2005-05-03 | Moved Oki ADPCM aka VOX decoder from SAGA engine to common sound/ directory. | Eugene Sandulenko | |
Implemented IMA ADPCM decoder. svn-id: r17903 | |||
2005-04-22 | * Added new virtual base class 'Stream', ReadStream and | Max Horn | |
WriteStream are now subclasses of it. * Added new methods eos(), ioFailed(), clearIOFailed() to all streams. This allows better error checking. * SaveFile classes take advantage of these new standard stream APIS * Removed File::gets() * Added SeekableReadStream::readLine() (replaces File::gets) * Added WriteStream::writeString, for convenience svn-id: r17752 | |||
2005-04-20 | code conventions | Gregory Montoir | |
svn-id: r17714 | |||
2005-04-20 | this should fix bug #1181979 | Gregory Montoir | |
svn-id: r17713 | |||
2005-04-16 | vc compile warn | Andrew Kurushin | |
svn-id: r17637 | |||
2005-04-13 | Only cache a track if it really exists, this should prevent some issues when ↵ | Gregory Montoir | |
playing with invalid compressed tracks. See also bug report #1181979. svn-id: r17591 | |||
2005-04-13 | Get rid of errno; add some (optional) error checking facilities to SaveFile ↵ | Max Horn | |
classes (they are ugly, and to simple, but better than nothing) svn-id: r17589 | |||
2005-04-13 | Patches #1164217 "Updated GS Support + Percussion Remapping Patch" and | Eugene Sandulenko | |
#1181750 "Updated Native MIDI documentation". Thanks _tom a lot. svn-id: r17571 | |||
2005-04-10 | Forgot to add files when committing patch #1175374. | Torbjörn Andersson | |
svn-id: r17513 | |||
2005-04-10 | Applied patch #1175374 ("FluidSynth MIDI driver"), with a few documentation | Torbjörn Andersson | |
changes. There are a few things that could use a bit more work, and I've only tested it on my Linux box. I have verified that ScummVM still compiles when it's disabled, though, so it shouldn't break anything too badly. svn-id: r17512 | |||
2005-04-09 | Remove usage of vsprintf in favour of vsnprintf and make | Jonathan Gray | |
more use of STRINGBUFLEN. Some ports may need a new stub for this, discussed with Chrilith. svn-id: r17463 | |||
2005-04-04 | Renamed getActiveChannelSoundID to getSoundID and fixed its semantics to ↵ | Max Horn | |
avoid race conditions svn-id: r17377 | |||
2005-04-04 | Add 8 sound channel support for HE games | Travis Howell | |
-Allows sound looping to work Added support for WAVE format musuc used in later HE100 games. svn-id: r17372 | |||
2005-04-03 | Committed patch #1168149 (Shared GM/MT-32 mapping) by eriktorbjorn as-is. ↵ | Jerome Fisher | |
This does the following: - Replaces multiple identical MT-32-to-General MIDI mapping tables with a common one in MidiDriver. - Changes Sky's GmChannel class to allow NULL instrument and velocity mapping tables, giving a 1-to-1 mapping without creating a dummy table. svn-id: r17361 |