1
0
Fork 0
forked from len0rd/rockbox

Initialize (instantiate) RockboxFramebuffer from the C code like with the othe java objects.

Remove some @Override annotations to make the Java code build with certain javac versions.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28386 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-10-29 23:12:08 +00:00
parent 669a327a2e
commit 6bb7522852
5 changed files with 59 additions and 59 deletions

View file

@ -64,6 +64,7 @@ public class RockboxService extends Service
private Object[] mStopForegroundArgs = new Object[1];
private IntentFilter itf;
private BroadcastReceiver batt_monitor;
@SuppressWarnings("unused")
private int battery_level;
@Override
@ -118,7 +119,6 @@ public class RockboxService extends Service
private void startservice()
{
final int BUFFER = 8*1024;
final Context me = this;
Thread rb = new Thread(new Runnable()
{
public void run()
@ -135,7 +135,7 @@ public class RockboxService extends Service
ZipEntry entry;
File file = new File("/data/data/org.rockbox/" +
"lib/libmisc.so");
/* use arbitary file to determine whether extracting is needed */
/* use arbitrary file to determine whether extracting is needed */
File file2 = new File("/data/data/org.rockbox/" +
"app_rockbox/rockbox/codecs/mpa.codec");
if (!file2.exists() || (file.lastModified() > file2.lastModified()))
@ -184,8 +184,6 @@ public class RockboxService extends Service
}
System.loadLibrary("rockbox");
fb = new RockboxFramebuffer(me);
main();
}
},"Rockbox thread");