1
0
Fork 0
forked from len0rd/rockbox

Run Rockbox as a service, which allows for music decoding&playback in the background,

the activity only attaches to the framebuffer for displaying it. An icon
in the notification area is displayed (it could be prettier I guess).

Note: Some HTC phones won't, includng mine, get enough CPU time to do background decoding
fluently, see: http://code.google.com/p/android/issues/detail?id=9663

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27686 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-08-03 22:56:24 +00:00
parent 83c60a1012
commit 9dd0158ffb
10 changed files with 74 additions and 136 deletions

View file

@ -32,8 +32,8 @@ void system_init(void) { }
/* global fields for use with various JNI calls */
JNIEnv *env_ptr;
jobject RockboxActivity_instance;
jclass RockboxActivity_class;
jobject RockboxService_instance;
jclass RockboxService_class;
uintptr_t *stackbegin;
uintptr_t *stackend;
@ -41,7 +41,7 @@ uintptr_t *stackend;
extern int main(void);
/* this is the entry point of the android app initially called by jni */
JNIEXPORT void JNICALL
Java_org_rockbox_RockboxActivity_main(JNIEnv *env, jobject this)
Java_org_rockbox_RockboxService_main(JNIEnv *env, jobject this)
{
/* hack!!! we can't have a valid stack pointer otherwise.
* but we don't really need it anyway, thread.c only needs it
@ -53,7 +53,7 @@ Java_org_rockbox_RockboxActivity_main(JNIEnv *env, jobject this)
volatile uintptr_t stack = 0;
stackbegin = stackend = (uintptr_t*) &stack;
env_ptr = env;
RockboxActivity_instance = this;
RockboxActivity_class = (*env)->GetObjectClass(env, this);
RockboxService_instance = this;
RockboxService_class = (*env)->GetObjectClass(env, this);
main();
}