Back to project page mclib.
The source code is released under:
Apache License, Version 2.0 FoundationProjectsPeopleGet InvolvedDownloadSupport ApacheHome ? Licenses Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITION...
If you think the Android project mclib 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 mc.lib.audio; //from w w w . jav a2s.co m import java.io.InputStream; import android.content.res.AssetFileDescriptor; import android.net.Uri; class AudioSource { Uri uri; String filePath; InputStream is; AssetFileDescriptor afd; void clear() { is = null; afd = null; uri = null; filePath = null; } }