summaryrefslogtreecommitdiff
path: root/firmware/target
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2011-06-05 09:44:57 +0000
committerThomas Martitz <kugel@rockbox.org>2011-06-05 09:44:57 +0000
commitdace72166e5250e2ea0a9beb6451f5e4da9e50e2 (patch)
tree47c2e602c55908a4b3a72a43d9baf20418e69f66 /firmware/target
parent03c12a790649c199f415f86366fc02ccee0f9004 (diff)
Android: Greatly simplify the pcm callback mechanism on both, the Java and the C side. Should be more reliable now (if the old wasn't already).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29963 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target')
-rw-r--r--firmware/target/hosted/android/pcm-android.c83
1 files changed, 34 insertions, 49 deletions
diff --git a/firmware/target/hosted/android/pcm-android.c b/firmware/target/hosted/android/pcm-android.c
index ae8e9a296d..88792cd76f 100644
--- a/firmware/target/hosted/android/pcm-android.c
+++ b/firmware/target/hosted/android/pcm-android.c
@@ -36,65 +36,49 @@ static char *pcm_data_start;
static jmethodID play_pause_method;
static jmethodID stop_method;
static jmethodID set_volume_method;
+static jmethodID write_method;
static jclass RockboxPCM_class;
static jobject RockboxPCM_instance;
/*
- * transfer our raw data into a java array
+ * write pcm samples to the hardware. Calls AudioTrack.write directly (which
+ * is usually a blocking call)
*
- * a bit of a monster functions, but it should cover all cases to overcome
- * the issue that the chunk size of the java layer and our pcm chunks are
- * differently sized
- *
- * afterall, it only copies the raw pcm data from pcm_data_start to
- * the passed byte[]-array
+ * temp_array is not strictly needed as a parameter as we could
+ * create it here, but that would result in frequent garbage collection
*
* it is called from the PositionMarker callback of AudioTrack
**/
-JNIEXPORT void JNICALL
-Java_org_rockbox_RockboxPCM_pcmSamplesToByteArray(JNIEnv *env,
- jobject this,
- jbyteArray arr)
+JNIEXPORT jint JNICALL
+Java_org_rockbox_RockboxPCM_nativeWrite(JNIEnv *env, jobject this,
+ jbyteArray temp_array, jint max_size)
{
- (void)this;
- size_t len;
- size_t array_size = (*env)->GetArrayLength(env, arr);
- if (array_size > pcm_data_size)
- len = pcm_data_size;
- else
- len = array_size;
-
- (*env)->SetByteArrayRegion(env, arr, 0, len, pcm_data_start);
-
- if (array_size > pcm_data_size)
- { /* didn't have enough data for the array ? */
- size_t remaining = array_size - pcm_data_size;
- size_t offset = len;
- retry:
- pcm_play_get_more_callback((void**)&pcm_data_start, &pcm_data_size);
- if (pcm_data_size == 0)
- {
- DEBUGF("out of data\n");
- return;
- }
- if (remaining > pcm_data_size)
- { /* got too little data, get more ... */
- (*env)->SetByteArrayRegion(env, arr, offset, pcm_data_size, pcm_data_start);
- /* advance in the java array by the amount we copied */
- offset += pcm_data_size;
- /* we copied at least a bit */
- remaining -= pcm_data_size;
- pcm_data_size = 0;
- /* let's get another buch of data and try again */
- goto retry;
- }
- else
- (*env)->SetByteArrayRegion(env, arr, offset, remaining, pcm_data_start);
- len = remaining;
+ jint left = max_size;
+
+ if (!pcm_data_size) /* get some initial data */
+ pcm_play_get_more_callback((void**) &pcm_data_start, &pcm_data_size);
+
+ while(left > 0 && pcm_data_size)
+ {
+ jint ret;
+ jsize transfer_size = MIN((size_t)left, pcm_data_size);
+ /* decrement both by the amount we're going to write */
+ pcm_data_size -= transfer_size; left -= transfer_size;
+ (*env)->SetByteArrayRegion(env, temp_array, 0,
+ transfer_size, (jbyte*)pcm_data_start);
+
+ ret = (*env)->CallIntMethod(env, this, write_method,
+ temp_array, 0, transfer_size);
+ if (ret < 0)
+ return ret;
+
+ if (pcm_data_size == 0) /* need new data */
+ pcm_play_get_more_callback((void**)&pcm_data_start, &pcm_data_size);
+ else /* increment data pointer and feed more */
+ pcm_data_start += transfer_size;
}
- pcm_data_start += len;
- pcm_data_size -= len;
+ return max_size - left;
}
void pcm_play_lock(void)
@@ -120,7 +104,7 @@ void pcm_play_dma_start(const void *addr, size_t size)
void pcm_play_dma_stop(void)
{
/* NOTE: due to how pcm_play_get_more_callback() works, this is
- * possibly called from pcmSamplesToByteArray(), i.e. another thread.
+ * possibly called from writeNative(), i.e. another thread.
* => We need to discover the env_ptr */
JNIEnv* env = getJavaEnvironment();
(*env)->CallVoidMethod(env,
@@ -168,6 +152,7 @@ void pcm_play_dma_init(void)
play_pause_method = e->GetMethodID(env_ptr, RockboxPCM_class, "play_pause", "(Z)V");
set_volume_method = e->GetMethodID(env_ptr, RockboxPCM_class, "set_volume", "(I)V");
stop_method = e->GetMethodID(env_ptr, RockboxPCM_class, "stop", "()V");
+ write_method = e->GetMethodID(env_ptr, RockboxPCM_class, "write", "([BII)I");
/* get initial pcm data, if any */
pcm_play_get_more_callback((void*)&pcm_data_start, &pcm_data_size);
}