r4124: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 25 Feb 2003 18:19:45 +0000 (18:19 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 25 Feb 2003 18:19:45 +0000 (18:19 +0000)
wdq2wav.cpp

index 90bb1b358eda0949e9c24a581b0c9338599926dd..c912b8d65386a255d1a474f071f7f620b7c6c4a0 100644 (file)
@@ -8,7 +8,7 @@
 **
 **  Copyright (c) 2003 Kevin Rosenberg
 **
-**  $Id: wdq2wav.cpp,v 1.23 2003/02/25 18:18:45 kevin Exp $
+**  $Id: wdq2wav.cpp,v 1.24 2003/02/25 18:19:45 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -26,7 +26,7 @@
 
 #include <wdq2wav.h>
 
-const char* g_szIdStr = "$Id: wdq2wav.cpp,v 1.23 2003/02/25 18:18:45 kevin Exp $";
+const char* g_szIdStr = "$Id: wdq2wav.cpp,v 1.24 2003/02/25 18:19:45 kevin Exp $";
 
 bool g_quiet = false;
 bool g_verbose = false;
@@ -509,7 +509,7 @@ WindaqChannel::read_channel_data ()
   m_min_scaled_data = (m_slope * data_min) + m_intercept;
 
   if (g_demean) {
-    double dmean = total_data / static_cast<double>(wdq.m_nSamples);
+    double dmean = total_data / static_cast<double>(r_wdq.m_nSamples);
     int mean = nearest<int>(dmean);
     for (i = 0; i < r_wdq.m_nSamples; i++)
       m_data[i] -= mean;