jbonsai 0.4.1

Voice synthesis library for Text-to-Speech applications (Currently HTS Engine rewrite in Rust language).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Parameters for a stream.

use super::{GvParameter, StreamParameter, Windows};

/// Set of parameters associated with a stream.
pub struct ModelStream<'a> {
    /// The length of parameter vector, which will be generated using the parameters in this struct.
    pub vector_length: usize,
    /// Stream parameter.
    pub stream: StreamParameter,
    /// Global variance parameter.
    pub gv: Option<GvParameter>,
    /// MLPG window coefficients.
    pub windows: &'a Windows,
}