AliasDiphone
public class Diphone
extends java.lang.Object
Modifier and Type | Field | Description |
---|---|---|
protected static int |
ALIAS_MAGIC |
|
protected static int |
MAGIC |
|
protected static int |
NAME_LENGTH |
Modifier | Constructor | Description |
---|---|---|
protected |
Diphone(java.lang.String name) |
Constructor to be used only by subclasses who do not use the
variables except for the name
|
|
Diphone(java.lang.String name,
Sample[] samples,
int midPoint) |
Creates a diphone with the given name, samples and midpoint.
|
Modifier and Type | Method | Description |
---|---|---|
void |
dump() |
dumps out this Diphone.
|
void |
dumpBinary(java.io.DataOutputStream os) |
Dumps the diphone to the given channel.
|
void |
dumpBinary(java.nio.ByteBuffer bb) |
Dumps the diphone to the given channel.
|
int |
getMidPoint() |
Returns the midpoint index. the midpoint index is the sample
that divides the diphone into the first and second parts.
|
java.lang.String |
getName() |
Gets the name of the diphone.
|
int |
getPbPositionMillis() |
Returns the midpoint index. the midpoint index is the sample
that divides the diphone into the first and second parts.
|
Sample[] |
getSamples() |
Returns the samples associated with this diphone.
|
Sample |
getSamples(int which) |
Returns a particular sample.
|
int |
getUnitSize(int unitPart) |
Returns the total number of residuals in the given part for this
diphone.
|
static Diphone |
loadBinary(java.io.DataInputStream dis) |
Loads a new diphone from the given DataInputStream.
|
static Diphone |
loadBinary(java.nio.ByteBuffer bb) |
Loads a new diphone from the given buffer.
|
Sample |
nearestSample(float uIndex,
int unitPart) |
Returns the sample that is closest to uIndex.
|
protected static final int MAGIC
protected static final int ALIAS_MAGIC
protected static final int NAME_LENGTH
public Diphone(java.lang.String name, Sample[] samples, int midPoint)
name
- the name of the diphonesamples
- the set of samples for the diphonemidPoint
- the index of the sample midpointprotected Diphone(java.lang.String name)
name
- the name of the diphonepublic Sample[] getSamples()
public Sample getSamples(int which)
which
- which sample to returnpublic java.lang.String getName()
public int getMidPoint()
public int getPbPositionMillis()
public Sample nearestSample(float uIndex, int unitPart)
uIndex
- the desired indexunitPart
- do we want the first have (1) or the second
half (2)public int getUnitSize(int unitPart)
unitPart
- indicates which part is of interest (1 or 2)public void dump()
public void dumpBinary(java.nio.ByteBuffer bb) throws java.io.IOException
bb
- the ByteBuffer to write tojava.io.IOException
- if IO error occurspublic void dumpBinary(java.io.DataOutputStream os) throws java.io.IOException
os
- the DataOutputStream to write tojava.io.IOException
- if IO error occurspublic static Diphone loadBinary(java.nio.ByteBuffer bb) throws java.io.IOException
bb
- the byte buffer to load the diphone fromjava.io.IOException
- if IO error occurspublic static Diphone loadBinary(java.io.DataInputStream dis) throws java.io.IOException
dis
- the datainput stream to load the diphone fromjava.io.IOException
- if IO error occurs