diff options
author | Sven Gothel <[email protected]> | 2013-11-05 16:53:18 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-11-05 16:53:18 +0100 |
commit | 1d426dd08797a3164e0a7cdf6007d3e750650265 (patch) | |
tree | 08c427b3f0b16efb2263fcc8e3cea8f47adb9f14 /src/jogl | |
parent | b3f6b2fc9ec8aaf6aa5b4297aef1f5228eb15702 (diff) |
JNI Code: Call DeleteLocalRef(..) manually.
Diffstat (limited to 'src/jogl')
-rw-r--r-- | src/jogl/native/libav/ffmpeg_impl_template.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/jogl/native/libav/ffmpeg_impl_template.c b/src/jogl/native/libav/ffmpeg_impl_template.c index 34a2baeb7..24fddd2c0 100644 --- a/src/jogl/native/libav/ffmpeg_impl_template.c +++ b/src/jogl/native/libav/ffmpeg_impl_template.c @@ -1275,6 +1275,7 @@ JNIEXPORT jint JNICALL FF_FUNC(readNextPacket0) pNIOBufferCurrent->nioRef = (*env)->NewGlobalRef(env, jSampleData); pNIOBufferCurrent->origPtr = data_ptr; pNIOBufferCurrent->size = data_size; + (*env)->DeleteLocalRef(env, jSampleData); if(pAV->verbose) { fprintf(stderr, "A NIO: Alloc ptr %p / ref %p, %d bytes\n", pNIOBufferCurrent->origPtr, pNIOBufferCurrent->nioRef, pNIOBufferCurrent->size); |