1 回答

Linda_Je
TA貢獻(xiàn)35條經(jīng)驗(yàn) 獲得超86個(gè)贊
Adpcm2PcmInterface.java
package com.adpcm2pcm;
public class Adpcm2PcmInterface {
??? public static native void Adpcm2Pcm(byte[] data, int size, int sample, int index, byte[] output);
??? public static native void Pcm2Adpcm(byte[] data, int size, int sample, int index, byte[] output);
??? static {
??? ??? try {
??? ??? ??? System.loadLibrary("adpcm2pcm");
??? ??? } catch (Exception e) {
??? ??? ??? e.printStackTrace();
??? ??? }
??? }
}
點(diǎn)擊展開后面3條
添加回答
舉報(bào)
0/150
提交
取消