diff options
author | Jordi Vilalta Prat | 2009-02-22 13:11:43 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2009-02-22 13:11:43 +0000 |
commit | b5ce8d93200d60c3a752720300d77773750bf583 (patch) | |
tree | 77e1656645b26cb859c6ddb17843c73622880465 /engines/sci/sfx/mixer | |
parent | ac409a2ab7a15c08bde95f0647847dc71407ed88 (diff) | |
download | scummvm-rg350-b5ce8d93200d60c3a752720300d77773750bf583.tar.gz scummvm-rg350-b5ce8d93200d60c3a752720300d77773750bf583.tar.bz2 scummvm-rg350-b5ce8d93200d60c3a752720300d77773750bf583.zip |
Whitespace cleanup
svn-id: r38783
Diffstat (limited to 'engines/sci/sfx/mixer')
-rw-r--r-- | engines/sci/sfx/mixer/soft.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/sci/sfx/mixer/soft.cpp b/engines/sci/sfx/mixer/soft.cpp index e0450e578f..209fcf0633 100644 --- a/engines/sci/sfx/mixer/soft.cpp +++ b/engines/sci/sfx/mixer/soft.cpp @@ -434,16 +434,16 @@ static inline int mix_compute_buf_len(sfx_pcm_mixer_t *self, int *skip_frames) if (P->delta_observations > MAX_DELTA_OBSERVATIONS) P->delta_observations = MAX_DELTA_OBSERVATIONS; - /* /\* Disabled, broken *\/ */ - /* if (0 && P->delta_observations > MIN_DELTA_OBSERVATIONS) { /\* Start improving after a while *\/ */ - /* int diff = self->dev->conf.rate - P->max_delta; */ + /* /\* Disabled, broken *\/ */ + /* if (0 && P->delta_observations > MIN_DELTA_OBSERVATIONS) { /\* Start improving after a while *\/ */ + /* int diff = self->dev->conf.rate - P->max_delta; */ - /* /\* log-approximate P->max_delta over time *\/ */ - /* recommended_frames = P->max_delta + */ - /* ((diff * MIN_DELTA_OBSERVATIONS) / P->delta_observations); */ + /* /\* log-approximate P->max_delta over time *\/ */ + /* recommended_frames = P->max_delta + */ + /* ((diff * MIN_DELTA_OBSERVATIONS) / P->delta_observations); */ /* /\* WTF? *\/ */ - /* } else */ - /* recommended_frames = self->dev->buf_size; /\* Initially, keep the buffer full *\/ */ + /* } else */ + /* recommended_frames = self->dev->buf_size; /\* Initially, keep the buffer full *\/ */ #if (DEBUG >= 1) sciprintf("[soft-mixer] played since last time: %d, recommended: %d, free: %d\n", |