Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-17 | Add the Common::Rational class from patch #2963496 (VideoDecoder Rewrite) | Matthew Hoops | |
svn-id: r49061 | |||
2010-05-07 | Fix comment to removed function | Ori Avtalion | |
svn-id: r48965 | |||
2010-05-05 | Replace various strncpy usages by strlcpy. | Johannes Schickel | |
svn-id: r48955 | |||
2010-05-03 | Cleanup. | Johannes Schickel | |
svn-id: r48921 | |||
2010-05-03 | Check for read/seek errors of the underlying SeekableReadStream in RawStream. | Johannes Schickel | |
svn-id: r48920 | |||
2010-05-03 | Fix for bug #2961787 "HE SAM1: Music in kitchen slightly off (regression)". | Johannes Schickel | |
Unlike in the branch-1-1-x I did not restore the old RawMemoryStream code in the trunk. Instead I stripped out the pre-buffering of the RawStream code. I still decided to add some in-place buffering in RawStream::readBuffer to at least not rely on super-fast disk I/O. This is currently an experimental change. There might be need to reconsider the buffering (even though backends with slow disk I/O should actually do buffering for file I/O on their own). svn-id: r48919 | |||
2010-05-03 | Paranoia change: Prevent possible assertion caused by MP3Stream. | Johannes Schickel | |
Currently we have an assert checking that the framerate of an Audio::Timestamp is always > 0. Since MAD might return "0" (and maybe even other illegal values) in case the MP3 stream is invalid we need to check that before we setup the _length Timestamp of MP3Stream. svn-id: r48904 | |||
2010-04-29 | Rename input -> stream | Max Horn | |
svn-id: r48869 | |||
2010-04-20 | Fix the MT32 gfx output for 16bit compatiblity, cleanup, get rid of ↵ | Andre Heider | |
unnecessary buffers. svn-id: r48753 | |||
2010-04-17 | Fixing some warnings (with gcc 3.3.6) | Max Horn | |
svn-id: r48694 | |||
2010-04-12 | AUDIO: Rename Mixer::playInputStream to playStream | Max Horn | |
svn-id: r48637 | |||
2010-04-09 | Add missing cases to switch statements, remove whitespace | Ori Avtalion | |
svn-id: r48604 | |||
2010-04-03 | Do not use a template parameter for stereo setting for RawStream but instead ↵ | Johannes Schickel | |
pass the constructor a boolean, this should save some binary size. svn-id: r48496 | |||
2010-04-03 | Cleanup. | Johannes Schickel | |
svn-id: r48495 | |||
2010-04-02 | Fix bug #2976353 - NIPPON: Sound looping fails (regression). By reverting ↵ | Travis Howell | |
47469, since the IFF sound code is only used by the Parallaction game engine. svn-id: r48467 | |||
2010-03-22 | Fix for bug #2969211 "NIPPON: Crash in Intro". | Johannes Schickel | |
It is not a good idea to supply an SubLoopingAudioStream with the start and end time to be exactly the same time. Clarify that in the SubLoopingAudioStream documentation, add an assert in the SubLoopingAudioStream constructor for that case and also prevent make8SVXStream from doing so. svn-id: r48356 | |||
2010-03-18 | COMMON: Move Common::RandomSource to common/random.* | Max Horn | |
svn-id: r48279 | |||
2010-03-13 | Fix our DECLARE_SINGLETON macro to conform to the C++ specs. | Johannes Schickel | |
We need to use a namespace Common { } there to make strict C++ compilers like clang++ and comeau happy. I also added a slight comment about why that is needed to the macro definition and a note that you need to use it from the global namespace. svn-id: r48254 | |||
2010-03-12 | Fix bug #2969282: DW2: Weird "PC SPEAKER-like" sound distortion. | Max Horn | |
svn-id: r48246 | |||
2010-03-12 | This hopefully fixes building on win64. | Johannes Schickel | |
svn-id: r48245 | |||
2010-03-12 | Fix typos | Max Horn | |
svn-id: r48242 | |||
2010-03-11 | MIXER: Change MixerImpl::playInputStream to error out when mixer is not ready | Max Horn | |
My previous commit which tried to support this does not work correctly when using QueuingAudioStream; it then just leads to nasty crashes. Hence I am removing this again for now, until I get around to implement one of the better alternatives. svn-id: r48239 | |||
2010-03-11 | Replace Audio::MixerImpl::setOutputRate with a new 'sampleRate' param to the ↵ | Max Horn | |
MixerImpl constructor svn-id: r48238 | |||
2010-03-10 | Remove last traces of OSystem::getOutputSampleRate() | Max Horn | |
svn-id: r48229 | |||
2010-03-09 | Initialise 'releaseAdd' to avoid a Valgrind warning in Write20() when the | Torbjörn Andersson | |
emulator is initialised. svn-id: r48214 | |||
2010-03-08 | Fix bug #2872076 (MIXER: Division by 0 in rate conversion if w/o soundcd) | Max Horn | |
svn-id: r48203 | |||
2010-03-08 | Tweak makeVOCDiskStream | Max Horn | |
* now takes a SeekableReadStream *pointer* like (almost) all other audiostream factories * fix potential memory leak in it * rename takeOwnershipOfStream to disposeAfterUse for consistency svn-id: r48184 | |||
2010-03-08 | Show an error message in case multiple OPL outputs are created instead of ↵ | Johannes Schickel | |
using an assert. The new DBOPL emulator we are using should support multiple instances though. We *might* consider allowing as many instances as the user wants. Of course since the original games only had one OPL chip available, that should not be required. Also just in case we might allow real hardware as playback device that would be out of the question again too. svn-id: r48183 | |||
2010-03-08 | Add a slight comment when the DBOPL sources where synched with DOSBox. | Johannes Schickel | |
svn-id: r48182 | |||
2010-03-08 | Use memset instead of a custom loop for zeroing the sample buffer. | Johannes Schickel | |
svn-id: r48181 | |||
2010-03-08 | Cleanup. | Johannes Schickel | |
svn-id: r48180 | |||
2010-03-08 | Switch to the other DOSBox OPL emulator as suggested by the DOSBox developers. | Johannes Schickel | |
svn-id: r48179 | |||
2010-02-26 | SID: Adding DISABLE_SID option, as SID player embiggens binary by a large ↵ | Neil Millstone | |
amount. This is a problem for the DS port. svn-id: r48137 | |||
2010-02-23 | Add assert(!_finished) to QueuingAudioStreamImpl::queueAudioStream | Max Horn | |
svn-id: r48122 | |||
2010-02-23 | Tweak QueuingAudioStream comments | Max Horn | |
svn-id: r48121 | |||
2010-02-17 | Fix gcc warning. | Johannes Schickel | |
svn-id: r48077 | |||
2010-02-14 | Add support for samples > 32kb to Paula chip emulation code. | Max Horn | |
In addition, the code got simplified considerably. Its behavior changed slightly due to this, but I think the old behavior was wrong. In any case, this may fix some bugs, or introduce regressions, or both. We'll see ;). svn-id: r48058 | |||
2010-02-10 | Hopefully fixing bug #2948858 "MP3 (CD Audio) Broken under SVN". | Johannes Schickel | |
svn-id: r48032 | |||
2010-02-09 | Formatting. | Johannes Schickel | |
svn-id: r48023 | |||
2010-02-09 | Be a bit more forgiveful in case the SeekableAudioStream passed to ↵ | Johannes Schickel | |
SubLoopingAudioStream does not allow reading the requested sample count at once (i.e. do not tread that as error, unless endOfData() is set). svn-id: r48022 | |||
2010-02-09 | Stop SubLoopingAudioStream playback, in case reading from the parent stream ↵ | Johannes Schickel | |
fails. svn-id: r48021 | |||
2010-02-09 | Make Audio::convertTimeToStreamPos return a frame-precision based result ↵ | Johannes Schickel | |
instead of a sub-frame-precision based result. This fixes the SubLoopingAudioStream tests. svn-id: r48020 | |||
2010-02-09 | Fix SubLoopingAudioStream's readBuffer implementation. | Johannes Schickel | |
svn-id: r48018 | |||
2010-02-08 | Fix RawStream::seek implementation. | Johannes Schickel | |
svn-id: r48007 | |||
2010-02-06 | Fix bug in LoopingAudioStream::readBuffer, this makes the unit tests ↵ | Johannes Schickel | |
complete without any error. svn-id: r47935 | |||
2010-02-03 | Loosening the 2 samples per channel requirement of Apple_ADPCMStream to 1 ↵ | Sven Hesse | |
sample per channel svn-id: r47864 | |||
2010-02-03 | Fix bug in RawStream::getLength for 16bit streams. (Uncovered by our new ↵ | Johannes Schickel | |
unit tests yay!) svn-id: r47859 | |||
2010-02-03 | Make makeMP3Stream return 0 on failure too. | Johannes Schickel | |
svn-id: r47848 | |||
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 |