[SCM] drc/master: Fix more spelling.
mira-guest at users.alioth.debian.org
mira-guest at users.alioth.debian.org
Wed Dec 21 22:43:08 UTC 2016
The following commit has been merged in the master branch:
commit a1518703b0da5e6a6ee6e53f76aa90cafc1ced0e
Author: Jaromír Mikeš <mira.mikes at seznam.cz>
Date: Wed Dec 21 19:08:57 2016 +0100
Fix more spelling.
diff --git a/debian/patches/02-spelling-errors.patch b/debian/patches/02-spelling-errors.patch
index c2d5aa6..7dc4dae 100644
--- a/debian/patches/02-spelling-errors.patch
+++ b/debian/patches/02-spelling-errors.patch
@@ -6,6 +6,8 @@ Forwarded: yes
source/baselib.cpp | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
+Index: drc/source/baselib.cpp
+===================================================================
--- drc.orig/source/baselib.cpp
+++ drc/source/baselib.cpp
@@ -230,7 +230,7 @@ Boolean WriteSignal(const char * FName,c
@@ -71,3 +73,256 @@ Forwarded: yes
return False;
}
}
+Index: drc/source/drc.cpp
+===================================================================
+--- drc.orig/source/drc.cpp
++++ drc/source/drc.cpp
+@@ -21,13 +21,13 @@
+
+ d.sbragion at infotecna.it
+
+- This program uses the FFT routines from Takuya Ooura and the GNU
+- Scientific Library (GSL). Many thanks to Takuya Ooura and the GSL
++ This program uses the FFT routines from Takuya Ooura and the GNU
++ Scientific Library (GSL). Many thanks to Takuya Ooura and the GSL
+ developers for these efficient routines.
+
+ ****************************************************************************/
+
+-/* Main file */
++/* Main file */
+
+ /* Inclusioni */
+ #include "drc.h"
+@@ -51,15 +51,15 @@
+ #include <stdlib.h>
+ #include <string.h>
+ #include <time.h>
+-#include <fenv.h>
++#include <fenv.h>
+
+ /* Versione corrente */
+ #define DRCVersion "3.2.1"
+-#define DRCCopyright "2002-2012"
+-
+-/* Memory leaks debugger */
+-#ifdef DebugMLeaks
+- #include "debug_new.h"
++#define DRCCopyright "2002-2012"
++
++/* Memory leaks debugger */
++#ifdef DebugMLeaks
++ #include "debug_new.h"
+ #endif
+
+ /* Header iniziale programma */
+@@ -97,7 +97,7 @@ void ShowDRCUsage(void)
+ sputs("\nParameters:\n");
+ sputs(" --help : show the full options list (long)");
+ sputs(" Options: parameters overwriting options");
+- sputs(" DRCFile: name of DRC configration file\n");
++ sputs(" DRCFile: name of DRC configuration file\n");
+ sputs(" Refer to the manual and samples for options");
+ sputs(" details and file format\n");
+ }
+@@ -199,8 +199,8 @@ int main(int argc, char * argv[])
+
+ /* I386 Debug only, enables all floating point exceptions traps */
+ /* int em = 0x372;
+- __asm__ ("fldcw %0" : : "m" (em)); */
+-
++ __asm__ ("fldcw %0" : : "m" (em)); */
++
+ /* Messaggio iniziale */
+ ShowDRCHeader();
+
+@@ -262,9 +262,9 @@ int main(int argc, char * argv[])
+ if (CfgParse(DRCFile,CfgParmsDef,CfgSimple) <= 0)
+ {
+ /* Dealloca le informazioni parsing command line */
+- FreeCmdLine(OptData, CfgParmsDef);
++ FreeCmdLine(OptData, CfgParmsDef);
+ CfgFree(CfgParmsDef);
+-
++
+ sputs(CfgGetLastErrorDsc());
+ sputs("Configuration file parsing error.");
+ return 1;
+@@ -280,7 +280,7 @@ int main(int argc, char * argv[])
+ if (SetupDRCCfgBaseDir(&Cfg,CfgParmsDef,OptData) > 0)
+ {
+ /* Dealloca le informazioni parsing command line */
+- FreeCmdLine(OptData, CfgParmsDef);
++ FreeCmdLine(OptData, CfgParmsDef);
+ CfgFree(CfgParmsDef);
+
+ sputs("Base configuration setup error.");
+@@ -347,7 +347,7 @@ int main(int argc, char * argv[])
+
+ /* Verifica che la finestratura sia corretta */
+ if ((Cfg.BCInitWindow / 2 - Cfg.BCPreWindowLen) < PSStart)
+- sputs("!!Warning: input signal too short for correct signal prewindowing, spurios spikes may be generated.");
++ sputs("!!Warning: input signal too short for correct signal prewindowing, spurious spikes may be generated.");
+
+ for (I = 0;I < Cfg.BCInitWindow / 2 - Cfg.BCPreWindowLen;I++)
+ InSig[I] = 0;
+@@ -671,13 +671,13 @@ int main(int argc, char * argv[])
+ OInSig[I] = MCOutSig[J];
+ }
+
+- /* Calcola il valore RMS del segnale in ingresso */
++ /* Calcola il valore RMS del segnale in ingresso */
+ SRMSValue = GetRMSLevel(OInSig,MCOutSigLen);
+ if (SRMSValue > ((DLReal) 0.0))
+ printf("Input signal RMS level %f (%f dB).\n",(double) SRMSValue, (double) (20 * log10((double) SRMSValue)));
+ else
+ printf("Input signal RMS level %f (-Inf dB).\n",(double) SRMSValue);
+- fflush(stdout);
++ fflush(stdout);
+
+ /*********************************************************************************/
+ /* Dip limiting preventivo */
+@@ -689,7 +689,7 @@ int main(int argc, char * argv[])
+ switch (Cfg.BCDLType[0])
+ {
+ /* Fase lineare */
+- case 'L':
++ case 'L':
+ case 'P':
+ sputs("Input signal linear phase dip limiting...");
+ if (C1LPDipLimit(&MCOutSig[MCOutSigStart],MCOutSigLen,Cfg.BCDLMinGain,Cfg.BCDLStart,
+@@ -701,7 +701,7 @@ int main(int argc, char * argv[])
+ break;
+
+ /* Fase minima */
+- case 'M':
++ case 'M':
+ case 'W':
+ sputs("Input signal minimum phase dip limiting...");
+ if (C1HMPDipLimit(&MCOutSig[MCOutSigStart],MCOutSigLen,Cfg.BCDLMinGain,Cfg.BCDLStart,
+@@ -854,7 +854,7 @@ int main(int argc, char * argv[])
+
+ /* Verifica che la finestratura sia corretta */
+ if (((Cfg.BCPreWindowLen == 0) && (WStart1 < PSStart)) || ((WStart1 + Cfg.MPLowerWindow) > PSEnd))
+- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
++ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
+
+ BWPreFilt(&MPSig[WStart1],Cfg.MPLowerWindow,Cfg.MPUpperWindow,
+ Cfg.MPFilterLen,Cfg.MPBandSplit,Cfg.MPWindowExponent,
+@@ -867,7 +867,7 @@ int main(int argc, char * argv[])
+
+ /* Verifica che la finestratura sia corretta */
+ if ((WStart1 + Cfg.MPLowerWindow) > PSEnd)
+- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
++ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
+
+ BWPreFilt(&MPSig[WStart1],Cfg.MPLowerWindow,Cfg.MPUpperWindow,
+ Cfg.MPFilterLen,Cfg.MPBandSplit,Cfg.MPWindowExponent,
+@@ -880,7 +880,7 @@ int main(int argc, char * argv[])
+
+ /* Verifica che la finestratura sia corretta */
+ if (((Cfg.BCPreWindowLen == 0) && (WStart1 < PSStart)) || ((WStart1 + Cfg.MPLowerWindow) > PSEnd))
+- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
++ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
+
+ SLPreFilt(&MPSig[WStart1],Cfg.MPLowerWindow,Cfg.MPUpperWindow,
+ Cfg.MPFilterLen,Cfg.MPBandSplit,Cfg.MPWindowExponent,
+@@ -893,7 +893,7 @@ int main(int argc, char * argv[])
+
+ /* Verifica che la finestratura sia corretta */
+ if ((WStart1 + Cfg.MPLowerWindow) > PSEnd)
+- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
++ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
+
+ SLPreFilt(&MPSig[WStart1],Cfg.MPLowerWindow,Cfg.MPUpperWindow,
+ Cfg.MPFilterLen,Cfg.MPBandSplit,Cfg.MPWindowExponent,
+@@ -927,7 +927,7 @@ int main(int argc, char * argv[])
+ switch (Cfg.DLType[0])
+ {
+ /* Fase lineare */
+- case 'L':
++ case 'L':
+ case 'P':
+ sputs("MP signal linear phase dip limiting...");
+ if (C1LPDipLimit(&MPPFSig[WStart1],WLen1,Cfg.DLMinGain,Cfg.DLStart,
+@@ -939,7 +939,7 @@ int main(int argc, char * argv[])
+ break;
+
+ /* Fase minima */
+- case 'M':
++ case 'M':
+ case 'W':
+ sputs("MP signal minimum phase dip limiting...");
+ if (C1HMPDipLimit(&MPPFSig[WStart1],WLen1,Cfg.DLMinGain,Cfg.DLStart,
+@@ -1113,7 +1113,7 @@ int main(int argc, char * argv[])
+
+ /* Verifica che la finestratura sia corretta */
+ if (((Cfg.BCPreWindowLen == 0) && (WStart2 < PSStart)) || ((WStart2 + Cfg.EPLowerWindow) > PSEnd))
+- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
++ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
+
+ BWPreFilt(&EPSig[WStart2],Cfg.EPLowerWindow,Cfg.EPUpperWindow,
+ Cfg.EPFilterLen,Cfg.EPBandSplit,Cfg.EPWindowExponent,
+@@ -1126,7 +1126,7 @@ int main(int argc, char * argv[])
+
+ /* Verifica che la finestratura sia corretta */
+ if ((WStart2 + Cfg.EPLowerWindow) > PSEnd)
+- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
++ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
+
+ BWPreFilt(&EPSig[WStart2],Cfg.EPLowerWindow,Cfg.EPUpperWindow,
+ Cfg.EPFilterLen,Cfg.EPBandSplit,Cfg.EPWindowExponent,
+@@ -1139,7 +1139,7 @@ int main(int argc, char * argv[])
+
+ /* Verifica che la finestratura sia corretta */
+ if (((Cfg.BCPreWindowLen == 0) && (WStart2 < PSStart)) || ((WStart2 + Cfg.EPLowerWindow) > PSEnd))
+- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
++ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
+
+ SLPreFilt(&EPSig[WStart2],Cfg.EPLowerWindow,Cfg.EPUpperWindow,
+ Cfg.EPFilterLen,Cfg.EPBandSplit,Cfg.EPWindowExponent,
+@@ -1152,7 +1152,7 @@ int main(int argc, char * argv[])
+
+ /* Verifica che la finestratura sia corretta */
+ if ((WStart2 + Cfg.EPLowerWindow) > PSEnd)
+- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
++ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
+
+ SLPreFilt(&EPSig[WStart2],Cfg.EPLowerWindow,Cfg.EPUpperWindow,
+ Cfg.EPFilterLen,Cfg.EPBandSplit,Cfg.EPWindowExponent,
+@@ -1553,7 +1553,7 @@ int main(int argc, char * argv[])
+ switch (Cfg.PTDLType[0])
+ {
+ /* Fase lineare */
+- case 'L':
++ case 'L':
+ case 'P':
+ sputs("Target reference signal linear phase dip limiting...");
+ if (C1LPDipLimit(&PTTConv[PTTRefLen],Cfg.PTReferenceWindow,Cfg.PTDLMinGain,Cfg.PTDLStart,
+@@ -1565,7 +1565,7 @@ int main(int argc, char * argv[])
+ break;
+
+ /* Fase minima */
+- case 'M':
++ case 'M':
+ case 'W':
+ sputs("Target reference minimum phase dip limiting...");
+ if (C1HMPDipLimit(&PTTConv[PTTRefLen],Cfg.PTReferenceWindow,Cfg.PTDLMinGain,Cfg.PTDLStart,
+@@ -1729,7 +1729,7 @@ int main(int argc, char * argv[])
+ switch (Cfg.PLType[0])
+ {
+ /* Fase lineare */
+- case 'L':
++ case 'L':
+ case 'P':
+ sputs("Linear phase peak limiting...");
+ if (C1LPPeakLimit(&ISRevOut[WStart2],WLen2,Cfg.PLMaxGain,Cfg.PLStart,
+@@ -1741,7 +1741,7 @@ int main(int argc, char * argv[])
+ break;
+
+ /* Fase minima */
+- case 'M':
++ case 'M':
+ case 'W':
+ sputs("Minimum phase peak limiting...");
+ if (C1HMPPeakLimit(&ISRevOut[WStart2],WLen2,Cfg.PLMaxGain,Cfg.PLStart,
--
drc packaging
More information about the pkg-multimedia-commits
mailing list