Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-11 | COMMON: Rename SafeSubReadStream to SafeSeekableSubReadStream. | Johannes Schickel | |
It actually inherits from SeekableSubReadStream, so it should be named accordingly. | |||
2012-02-15 | JANITORIAL: Fix missing whitespace in pointer cast | Tarek Soliman | |
find -name '*.h' -or -name '*.cpp' | xargs sed -r -i 's@\(([A-Za-z0-9]+)\*\)@(\1 *)@g' This seems to have caught some params as well which is not undesirable IMO. It also caught some strings containing this which is undesirable so I excluded them manually. (engines/sci/engine/kernel_tables.h) | |||
2011-08-24 | AUDIO: Remove default rate parameter from xa | Matthew Hoops | |
2011-08-24 | AUDIO: Rename Vag to XA | Matthew Hoops | |
Vag is really an XA container, and one that we do not have a decoder for (nor need) | |||
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-05-06 | SWORD2: Replace SafeSubReadStream with the same-name class in Common | Sven Hesse | |
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-11-19 | COMMON: Split common/stream.h into several headers | Max Horn | |
svn-id: r54385 | |||
2010-10-15 | SWORD2: Fix some code analysis warnings (bug #3087857) | Torbjörn Andersson | |
svn-id: r53467 | |||
2010-07-16 | Cleanup. | Torbjörn Andersson | |
svn-id: r50923 | |||
2010-04-17 | Fix warnings when FLAC&MP3&VORBIS is disabled; also fixes leak in Tinsel | Max Horn | |
svn-id: r48696 | |||
2010-04-12 | AUDIO: Rename Mixer::playInputStream to playStream | Max Horn | |
svn-id: r48637 | |||
2010-02-03 | Yet more Flac -> FLAC changes for consistency. | Johannes Schickel | |
svn-id: r47847 | |||
2010-02-03 | - Rename FlacStream to FLACStream. | Johannes Schickel | |
- Rename makeFlacStream to makeFLACStream. svn-id: r47846 | |||
2010-01-28 | Hide VagStream implementation, only expose it via a factory method | Max Horn | |
svn-id: r47634 | |||
2010-01-26 | Moved audio stream implementations (for MP3, FLAC, etc.) to new dir ↵ | Max Horn | |
sound/decoders/ svn-id: r47579 | |||
2010-01-16 | Switch most AudioStream factories to use DisposeAfterUse::Flag | Max Horn | |
svn-id: r47334 | |||
2010-01-08 | Move DisposeAfterUse::Flag from Common to global namespace, and into a new ↵ | Max Horn | |
header common/types.h svn-id: r47180 | |||
2009-10-18 | Introduced new type Common::DisposeAfterUse::Flag | Max Horn | |
svn-id: r45233 | |||
2009-05-24 | Strip trailing whitespaces in the whole code base. | Johannes Schickel | |
svn-id: r40867 | |||
2009-04-07 | Sword2: PSX version support, and GMM loading/saving | Fabio Battaglia | |
svn-id: r39896 | |||
2009-03-07 | Added comment about a possible FIXME. | Torbjörn Andersson | |
svn-id: r39207 | |||
2009-02-20 | Since opening a compressed piece of music should no longer be an expensive | Torbjörn Andersson | |
operation, we can probably keep the mutex locked throughout the entire streamCompMusic() function. I'm not convinced that it was ever safe to unlock and relock it partway through. In fact, that's my prime suspect for bug #2614306 ("BS2: noise in music or speech"). svn-id: r38638 | |||
2009-02-20 | Instead of reading an entire compressed sound into a memory stream, use a | Torbjörn Andersson | |
slightly extended SeekableSubReadStream to stream the sound from a file instead. This change is experimental, so it should almost certainly not go into 0.13. svn-id: r38637 | |||
2008-07-18 | Don't crash if you try to use music file #2 as music file #1. When the music | Torbjörn Andersson | |
wasn't found, it would close the file even if something else was already playing from it. (Some music is in both files.) svn-id: r33094 | |||
2008-02-05 | I think this is slightly easier to read... | Torbjörn Andersson | |
svn-id: r30803 | |||
2007-09-19 | Merged common/stdafx.h into common/scummsys.h. All referencing files have ↵ | Nicola Mettifogo | |
been updated. svn-id: r28966 | |||
2007-07-21 | The mixer no longer allows unpausing channels that aren't paused. So don't. | Torbjörn Andersson | |
svn-id: r28155 | |||
2007-07-15 | Fixed sound factory messup caused by my previous commit | Max Horn | |
svn-id: r28111 | |||
2007-05-31 | Re-added Revolution Software copyright to BS2 engine | Max Horn | |
svn-id: r27030 | |||
2007-05-30 | Updated legal headers in source files, based on what Pidgin (the IM client ↵ | Max Horn | |
formerly knowns as Gaim) does; added new (incomplete) COPYRIGHT file; updated copyright dates in a few spots svn-id: r27024 | |||
2007-03-18 | Fixed bug that caused the music to stop. I don't know if this is a regression, | Torbjörn Andersson | |
or it if was just luck that it worked before. svn-id: r26196 | |||
2007-03-01 | Get rid of the last two usages of File::incRef/decRef | Max Horn | |
svn-id: r25919 | |||
2007-02-24 | Trying to unify the order in which we try the various audio formats: Prefer ↵ | Max Horn | |
FLAC (lossless) over Ogg Vorbis ('free') over MP3 -- the order is admittedly somewhat arbitrary, but at least now it's consistent across all parts of ScummVM svn-id: r25837 | |||
2007-02-17 | Removed some dead code, updated a warning message | Max Horn | |
svn-id: r25662 | |||
2007-02-08 | Instead of pre-rendering all subtitles and pre-loading all sounds for a movie | Torbjörn Andersson | |
cutscene, render the text and play the speech when needed. It probably won't play as nicely from CD now, but using less memory seems more important to me. svn-id: r25428 | |||
2006-04-29 | Moved the AudioCDManager as well as class AudioStream and its (standard) ↵ | Max Horn | |
subclasses to namespace Audio svn-id: r22231 | |||
2006-02-17 | Removed includes from sword2.h so that (hopefully) there will eventually be | Torbjörn Andersson | |
less dependencies. svn-id: r20741 | |||
2006-02-11 | Moved engines to the new engines/ directory | Max Horn | |
svn-id: r20582 |