diff options
| author | Torbjörn Andersson | 2010-10-12 04:19:58 +0000 |
|---|---|---|
| committer | Torbjörn Andersson | 2010-10-12 04:19:58 +0000 |
| commit | 54b2a8c98df204dfe64a27fc830936ec62e3f9ed (patch) | |
| tree | 731b870d395e797886b9d184ff709782632cc1bd /sound/decoders | |
| parent | 8388e0dfea4ae0d80e51368acd12685c740c5bb5 (diff) | |
| download | scummvm-rg350-54b2a8c98df204dfe64a27fc830936ec62e3f9ed.tar.gz scummvm-rg350-54b2a8c98df204dfe64a27fc830936ec62e3f9ed.tar.bz2 scummvm-rg350-54b2a8c98df204dfe64a27fc830936ec62e3f9ed.zip | |
JANITORIAL: Cleanup (mostly whitespace)
svn-id: r53161
Diffstat (limited to 'sound/decoders')
| -rw-r--r-- | sound/decoders/flac.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/decoders/flac.cpp b/sound/decoders/flac.cpp index e588aa872f..1264e869ad 100644 --- a/sound/decoders/flac.cpp +++ b/sound/decoders/flac.cpp @@ -140,7 +140,7 @@ public: bool seek(const Timestamp &where); Timestamp getLength() const { return _length; } - bool isStreamDecoderReady() const { return getStreamDecoderState() == FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC ; } + bool isStreamDecoderReady() const { return getStreamDecoderState() == FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC; } protected: uint getChannels() const { return MIN<uint>(_streaminfo.channels, MAX_OUTPUT_CHANNELS); } @@ -553,7 +553,7 @@ void FLACStream::convertBuffersGeneric(SampleType* bufDestination, const FLAC__i for (; numSamples > 0; numSamples -= numChannels) { for (uint i = 0; i < numChannels; ++i) - *bufDestination++ = static_cast<SampleType>(*(inChannels[i]++) >> kPower) ; + *bufDestination++ = static_cast<SampleType>(*(inChannels[i]++) >> kPower); } } else { for (; numSamples > 0; numSamples -= numChannels) { |
