创建包含native方法的类,先在src下创建cn.dennishucd包,然后创建FFmpegNative.Java类文件。主要包括加载so库文件和一个native测试方法两部分,其内容如下:
package cn.dennishucd;
public class FFmpegNative {
static{
System.loadLibrary("avutil-52");
System.loadLibrary("avcodec-55");
System.loadLibrary("swresample-0");
System.loadLibrary("avformat-55");
System.loadLibrary("swscale-2");
System.loadLibrary("avfilter-3");
System.loadLibrary("ffmpeg_codec");
}
publicnative int avcodec_find_decoder(int codecID);
}