aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/imuse_digi
AgeCommit message (Collapse)Author
2013-10-03SCUMM: Fix unused variable warningsRodrigo Rebello
2013-06-04SCUMM: Verify sample width in Digital iMUSE callback. CID 1002112Torbjörn Andersson
Verify that 'bits' really is one of 8, 12 or 16 before decoding the data. It's probably always the case (unless the data files are damaged) but if it isn't we'll either try to queue NULL to the audio stream, or queue the same buffer more than once, or free the buffer more than once. All of which are bad, though Coverity only noticed the last of these cases.
2012-04-04SCUMM: Fix spelling of lengthJoel Teichroeb
2011-08-06OSYSTEM: extended installTimerProc() with timer ID parameterEugene Sandulenko
2011-07-03SCUMM: fix crash in digital iMuse games when using RTL and restartingathrxx
(static array were not reset to NULL after being freed and therefore didn't get reallocated on restart)
2011-05-14SCUMM: Remove some unused var warnings (see bug #3293800)Max Horn
2011-05-13SCUMM: Move class ResourceManager to its own headerMax Horn
2011-05-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
2011-04-28JANITORIAL: Reduce header dependencies in shared codeOri Avtalion
Some backends may break as I only compiled SDL
2011-04-14SCUMM: TypoMax Horn
2011-04-13SCUMM: Use shared ADPCM data tablesMax Horn
2011-04-13SCUMM: Fix bug #3187622 (COMI: incorrect decoding of audio codec 13/15)Max Horn
2011-04-13SCUMM: Resolve some code duplicationMax Horn
2011-04-13SCUMM: Move ADPCM decoder into separate functionMax Horn
2011-04-12COMMON: Replace MKID_BE by MKTAGMax Horn
MKID_BE relied on unspecified behavior of the C++ compiler, and as such was always a bit unsafe. The new MKTAG macro is slightly less elegant, but does no longer depend on the behavior of the compiler. Inspired by FFmpeg, which has an almost identical macro.
2011-03-29JANITORIAL: Remove/comment unused varsdhewg
Found by GCC 4.6's -Wunused-but-set-variable
2011-02-09AUDIO: Rename sound/ dir to audio/Max Horn
svn-id: r55850
2010-11-23SCUMM: Replace Common::File uses by SeekableReadStream and SearchManMax Horn
svn-id: r54434
2010-11-19COMMON: Split common/stream.h into several headersMax Horn
svn-id: r54385
2010-04-12AUDIO: Rename Mixer::playInputStream to playStreamMax Horn
svn-id: r48637
2010-03-04Fix another mismatching new[] call (note that this needs to be replaced by ↵Johannes Schickel
malloc, since else MemoryReadStream will try to use free on an new[] allocated block.) svn-id: r48162
2010-02-03- Rename FlacStream to FLACStream.Johannes Schickel
- Rename makeFlacStream to makeFLACStream. svn-id: r47846
2010-01-26Moved audio stream implementations (for MP3, FLAC, etc.) to new dir ↵Max Horn
sound/decoders/ svn-id: r47579
2010-01-22SCUMM: Get rid of some redundant enum vals in iMuse digitialMax Horn
svn-id: r47436
2010-01-19Move raw audio flags from sound/mixer.h to sound/raw.hMax Horn
svn-id: r47395
2010-01-19Get rid of Mixer::FLAG_REVERSE_STEREO; also change SCUMM's iMuse Digital ↵Max Horn
emulation to reverse stereo again, as it once seems to have been intended svn-id: r47374
2010-01-19Get rid of Mixer::FLAG_AUTOFREE.Max Horn
Also fix several recently introduced new/delete vs. malloc/free mismatches. svn-id: r47369
2010-01-16Switch most AudioStream factories to use DisposeAfterUse::FlagMax Horn
svn-id: r47334
2010-01-08Switch SCUMM from AppendableAudioStream to QueuingAudioStreamMax Horn
svn-id: r47183
2010-01-06Adapt digital iMuse to use SeekableAudioStream::seek, instead of ryling on ↵Johannes Schickel
the deprecated FLAC, Vorbis and MP3 interface. svn-id: r47064
2010-01-05- Put the new factories for MP3, Vorbis and FLAC in place.Johannes Schickel
- Marked the loop factories with loop related parameters as deprecated. svn-id: r47061
2009-09-23fix for bug #2820389Paweł Kołodziejski
svn-id: r44274
2009-09-23not need continue checks after foundPaweł Kołodziejski
svn-id: r44272
2009-09-11Remove excess spaces.Travis Howell
svn-id: r44029
2009-08-01Added some more information to the "Compressed sound ... invalid" error. MaybeTorbjörn Andersson
this will help in determining what's causing bug #2830364. (It sounds like a bad data file, but who knows...) svn-id: r42974
2009-07-17Fix bug #2821986 - COMI: setting to 'subtitles only' does not disable speech.Travis Howell
svn-id: r42548
2009-05-31The error() and warning() functions add ! and newline automatically. (I didn'tTorbjörn Andersson
look at debug() and debugC(), since I'm really bored with this now. :-) svn-id: r41061
2009-05-26Turned some static tables into static const tables; added some FIXME ↵Max Horn
comments to global static vars that should be removed (many more exist in SCI, Tinsel, and some other engines) svn-id: r40908
2009-04-16SCUMM: Switched opcode tables to use Common::Functor0 (a bit like Kyra does it)Max Horn
svn-id: r39956
2009-03-29fixed 'if' statement as should be/was.Paweł Kołodziejski
svn-id: r39745
2009-03-20SCUMM: Split intern.h into multiple headersMax Horn
svn-id: r39567
2009-01-10fixed radio chatter sfxPaweł Kołodziejski
svn-id: r35804
2009-01-10- added initial radio chatter sfx, still not fully correctPaweł Kołodziejski
- remove obsolete mixerStreamRunning track variable svn-id: r35801
2008-12-25Made Engine::_timer protectedMax Horn
svn-id: r35543
2008-07-22shutup valgrind warningPaweł Kołodziejski
svn-id: r33206
2008-07-20cleanupMax Horn
svn-id: r33135
2008-07-08Remove reference to kPlainSoundTypeMax Horn
svn-id: r32960
2008-05-06Allow static and dynamic plugins to be used at the same timeJordi Vilalta Prat
svn-id: r31888
2008-02-15revert stateId == 4 part of code to previous ignore action to fix bug #1881415Paweł Kołodziejski
svn-id: r30868
2008-02-05silency ignored, we handle it differentlyPaweł Kołodziejski
svn-id: r30793