update standards version
[debian/freetts] / tools / ArcticToFreeTTS / scheme / dump_f0_terms.scm
1 ; Portions Copyright 2004 Sun Microsystems, Inc.
2 ; Portions Copyright 1999-2003 Language Technologies Institute,
3 ; Carnegie Mellon University.
4 ; All Rights Reserved.  Use is subject to license terms.
5 ;
6 ; See the file "license.terms" for information on usage and
7 ; redistribution of this file, and for a DISCLAIMER OF ALL
8 ; WARRANTIES.
9
10 ; Dumps the target f0 mean and range to stdout.
11
12 ; Expects int_lr_params to be defined.
13 ;
14 (define (dump_f0_terms)
15   (format t 
16           "F0_MEAN=%d\n" 
17           (cadr (assoc 'target_f0_mean int_lr_params)))
18   (format t 
19           "F0_RANGE=%d\n" 
20           (cadr (assoc 'target_f0_std int_lr_params)))
21 )