|
CASampledSP
|
Go to the source code of this file.
Functions | |
| JNIEXPORT void JNICALL | Java_com_tagtraum_casampledsp_CAURLInputStream_fillNativeBuffer (JNIEnv *env, jobject stream, jlong afioPtr) |
| Callback to fill the native buffer. | |
| JNIEXPORT jlong JNICALL | Java_com_tagtraum_casampledsp_CAURLInputStream_open (JNIEnv *env, jobject stream, jstring url, jint bufferSize) |
| Opens the given URL via AudioFileOpenURL. | |
| JNIEXPORT jboolean JNICALL | Java_com_tagtraum_casampledsp_CAURLInputStream_isSeekable (JNIEnv *env, jobject stream, jlong afioPtr) |
| Indicates whether the resource is seekable. | |
| JNIEXPORT void JNICALL | Java_com_tagtraum_casampledsp_CAURLInputStream_seek (JNIEnv *env, jobject stream, jlong afioPtr, jlong microseconds) |
| Attempts the seek a given timestamp in the resource. | |
| JNIEXPORT void JNICALL | Java_com_tagtraum_casampledsp_CAURLInputStream_close (JNIEnv *env, jobject stream, jlong afioPtr) |
| Closes this resource and frees all associated resources. | |
| JNIEXPORT void JNICALL Java_com_tagtraum_casampledsp_CAURLInputStream_close | ( | JNIEnv * | env, |
| jobject | stream, | ||
| jlong | afioPtr ) |
Closes this resource and frees all associated resources.
| env | JNI env |
| stream | calling Java stream |
| afioPtr | pointer to CAAudioFileIO |
Definition at line 286 of file CAURLInputStream.cpp.
| JNIEXPORT void JNICALL Java_com_tagtraum_casampledsp_CAURLInputStream_fillNativeBuffer | ( | JNIEnv * | env, |
| jobject | stream, | ||
| jlong | afioPtr ) |
Callback to fill the native buffer.
| env | JNI env |
| stream | calling Java stream |
| afioPtr | pointer to CAAudioFileIO |
Definition at line 52 of file CAURLInputStream.cpp.
| JNIEXPORT jboolean JNICALL Java_com_tagtraum_casampledsp_CAURLInputStream_isSeekable | ( | JNIEnv * | env, |
| jobject | stream, | ||
| jlong | afioPtr ) |
Indicates whether the resource is seekable.
| env | JNI env |
| stream | calling Java stream |
| afioPtr | pointer to CAAudioFileIO |
JNI_TRUE Definition at line 233 of file CAURLInputStream.cpp.
| JNIEXPORT jlong JNICALL Java_com_tagtraum_casampledsp_CAURLInputStream_open | ( | JNIEnv * | env, |
| jobject | stream, | ||
| jstring | url, | ||
| jint | bufferSize ) |
Opens the given URL via AudioFileOpenURL.
| env | JNI env |
| stream | calling Java stream |
| url | URL to open |
Definition at line 115 of file CAURLInputStream.cpp.
| JNIEXPORT void JNICALL Java_com_tagtraum_casampledsp_CAURLInputStream_seek | ( | JNIEnv * | env, |
| jobject | stream, | ||
| jlong | afioPtr, | ||
| jlong | microseconds ) |
Attempts the seek a given timestamp in the resource.
| env | JNI env |
| stream | calling Java stream |
| afioPtr | pointer to CAAudioFileIO |
| microseconds | timestamp in microseconds |
Definition at line 245 of file CAURLInputStream.cpp.