Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/sanear.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Marsev <alex.marsev@gmail.com>2014-12-10 04:16:49 +0300
committerAlex Marsev <alex.marsev@gmail.com>2014-12-10 04:16:49 +0300
commit96b8f6503ac95563165e7a5a4df7d86a14812324 (patch)
tree07c58ef2bfaa1ebf275b7543cd5d7b2daf8afe25 /src/DspChunk.cpp
parentb3baf5dee6dff35b277b9de86a9c7f23b4dfee90 (diff)
Comment out debug leftovers
Diffstat (limited to 'src/DspChunk.cpp')
-rw-r--r--src/DspChunk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DspChunk.cpp b/src/DspChunk.cpp
index 46bcf5b..69f8efe 100644
--- a/src/DspChunk.cpp
+++ b/src/DspChunk.cpp
@@ -170,7 +170,7 @@ namespace SaneAudioRenderer
template <>
inline void ConvertSample<DspFormat::Float, DspFormat::Pcm32>(const float& input, int32_t& output)
{
- assert(fabs(input) <= 1.0f);
+ //assert(fabs(input) <= 1.0f);
output = (int32_t)(input * (INT32_MAX - 127));
}