提交 f34418b5 编写于 作者: Z Zhang Rui

android: fix build

上级 ad20ff23
......@@ -806,7 +806,7 @@ public final class IjkMediaPlayer extends AbstractMediaPlayer {
private native void native_message_loop(Object IjkMediaPlayer_this);
protected void finalize() {
protected void finalize() throws Throwable {
super.finalize();
native_finalize();
}
......
......@@ -35,13 +35,13 @@ public class DebugLog {
}
}
public static int e(String tag, String msg, Throwable tr) {
public static void e(String tag, String msg, Throwable tr) {
if (ENABLE_ERROR) {
Log.e(tag, msg, tr);
}
}
public static int efmt(String tag, String fmt, Object... args) {
public static void efmt(String tag, String fmt, Object... args) {
if (ENABLE_ERROR) {
String msg = String.format(Locale.US, fmt, args);
Log.e(tag, msg);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册