AudioFileFormatpublic class AudioFileFormat extends Object
Fields Summary |
---|
private Type | type | private int | byteLength | private AudioFormat | format | private int | frameLength | private HashMap | prop |
Constructors Summary |
---|
protected AudioFileFormat(Type type, int byteLength, AudioFormat format, int frameLength)
this.type = type;
this.byteLength = byteLength;
this.format = format;
this.frameLength = frameLength;
| public AudioFileFormat(Type type, AudioFormat format, int frameLength)
this.type = type;
this.format = format;
this.frameLength = frameLength;
| public AudioFileFormat(Type type, AudioFormat format, int frameLength, Map properties)
this.type = type;
this.format = format;
this.frameLength = frameLength;
prop = new HashMap<String, Object>();
prop.putAll(properties);
|
|