Back to project page walkitalkie.
The source code is released under:
Apache License
If you think the Android project walkitalkie listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.miloss; //w ww. ja v a 2s . c o m public class SoundBite { public final int audioFormat; public final byte[] data; public SoundBite(int audioFormat, byte[] data) { this.audioFormat = audioFormat; this.data = data; } }