X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=vq%2Fmake_residue_books.pl;h=b37d0dcd20f5ca6a8fbe5f4ca3dd85fdfd1366ab;hb=2d7d933302d8fe78c451f42a2ae2e6f0c2de346e;hp=b811fe2bc491b29710c5a4d58f3d8b24ffd3fc50;hpb=50c1cc2d205718eda9b6076fa89a50912477a0b9;p=platform%2Fupstream%2Flibvorbis.git diff --git a/vq/make_residue_books.pl b/vq/make_residue_books.pl index b811fe2..b37d0dc 100755 --- a/vq/make_residue_books.pl +++ b/vq/make_residue_books.pl @@ -114,8 +114,8 @@ while($line=){ $plusminus=$val; } } - die "Couldn't open temp file temp$$.vql: $!" unless - open(G,">temp$$.vql"); + die "Couldn't open temp file $globalname$name.vql: $!" unless + open(G,">$globalname$name.vql"); print G "$count $dim 0 "; if($seqp=~/non/){ print G "0\n$list\n"; @@ -124,16 +124,11 @@ while($line=){ } close(G); - my $command="latticebuild temp$$.vql > $globalname$name.vqh"; + my $command="latticebuild $globalname$name.vql > $globalname$name.vqh"; print ">>> $command\n"; die "Couldn't build latticebook.\n\tcommand:$command\n" if syst($command); - my $command="latticehint $globalname$name.vqh $thlist > temp$$.vqh"; - print ">>> $command\n"; - die "Couldn't pre-hint latticebook.\n\tcommand:$command\n" - if syst($command); - if(-e $datafile){ if($interleave=~/non/){ @@ -143,32 +138,27 @@ while($line=){ } if($seqp=~/cull/){ - my $command="$restune temp$$.vqh $datafile 1 > $globalname$name.vqh"; + my $command="$restune $globalname$name.vqh $datafile 1 > temp$$.vqh"; print ">>> $command\n"; die "Couldn't tune latticebook.\n\tcommand:$command\n" if syst($command); }else{ - my $command="$restune temp$$.vqh $datafile > $globalname$name.vqh"; + my $command="$restune $globalname$name.vqh $datafile > temp$$.vqh"; print ">>> $command\n"; die "Couldn't tune latticebook.\n\tcommand:$command\n" if syst($command); } - my $command="latticehint $globalname$name.vqh $thlist > temp$$.vqh"; + my $command="mv temp$$.vqh $globalname$name.vqh"; print ">>> $command\n"; - die "Couldn't post-hint latticebook.\n\tcommand:$command\n" + die "Couldn't rename latticebook.\n\tcommand:$command\n" if syst($command); }else{ print "No matching training file; leaving this codebook untrained.\n"; } - my $command="mv temp$$.vqh $globalname$name.vqh"; - print ">>> $command\n"; - die "Couldn't rename latticebook.\n\tcommand:$command\n" - if syst($command); - - my $command="rm temp$$.vql"; + my $command="rm $globalname$name.vql"; print ">>> $command\n"; die "Couldn't remove temp files.\n\tcommand:$command\n" if syst($command);