Back to project page DoomPlay.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUC...
If you think the Android project DoomPlay listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* BASSOPUS 2.4 Java class/* www . j av a 2 s.c o m*/ Copyright (c) 2012 Un4seen Developments Ltd. See the BASSOPUS.CHM file for more detailed documentation */ package com.un4seen.bass; import java.nio.ByteBuffer; public class BASSOPUS { // BASS_CHANNELINFO type public static final int BASS_CTYPE_STREAM_OPUS = 0x11200; // Additional attributes public static final int BASS_ATTRIB_OPUS_ORIGFREQ = 0x13000; public static native int BASS_OPUS_StreamCreateFile(String file, long offset, long length, int flags); public static native int BASS_OPUS_StreamCreateFile(ByteBuffer file, long offset, long length, int flags); public static native int BASS_OPUS_StreamCreateURL(String url, int offset, int flags, BASS.DOWNLOADPROC proc, Object user); public static native int BASS_OPUS_StreamCreateFileUser(int system, int flags, BASS.BASS_FILEPROCS procs, Object user); static { System.loadLibrary("bassopus"); } }