From 8dedb6c38aad39890b6ee1698e4bde25d09a37b3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 31 May 2011 03:45:30 +0000 Subject: [PATCH] Fix syntax errors (how did this happen?) git-svn-id: svn://localhost/ardour2/branches/3.0@9641 d708f5d6-7413-0410-9779-e7cbd77b26cf --- tools/synthesize_sources.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/synthesize_sources.pl b/tools/synthesize_sources.pl index 0785f09e40..37e4ec0730 100755 --- a/tools/synthesize_sources.pl +++ b/tools/synthesize_sources.pl @@ -78,11 +78,11 @@ foreach my $tmp (keys %sources) { "-t", "raw", # /dev/zero is raw :) "-r", $samplerate, # set sample rate "-c", "1", # 1 channel - "-b", "8" # input in 8 bit chunks + "-b", "8", # input in 8 bit chunks "-s", # signed "/dev/zero", # input signal - "-b", "16" # input in 16 bit chunks + "-b", "16", # input in 16 bit chunks "-t", "wav", # format wav $audioFileDirectory."/".$sources{$tmp}->{name}, # filename "trim", "0", $sources{$tmp}->{calculated_length}."s" # trim silence to wanted sample amount