| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- /*****************************************************************************
- * aout.c
- *****************************************************************************
- * Copyright © 2011-2012 VLC authors and VideoLAN
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- *****************************************************************************/
- #include <stdio.h>
- #include <assert.h>
- #include <string.h>
- #include <stdint.h>
- #include <jni.h>
- #include <vlc/vlc.h>
- #include "aout.h"
- #define LOG_TAG "VLC/JNI/aout"
- #include "log.h"
- // An audio frame will contain FRAME_SIZE samples
- #define FRAME_SIZE (4096*2)
- typedef struct
- {
- jobject j_libVlc; /// Pointer to the LibVLC Java object
- jmethodID play; /// Java method to play audio buffers
- jbyteArray buffer; /// Raw audio data to be played
- } aout_sys_t;
- /** Unique Java VM instance, as defined in libvlcjni.c */
- extern JavaVM *myVm;
- int aout_open(void **opaque, char *format, unsigned *rate, unsigned *nb_channels)
- {
- LOGI ("Opening the JNI audio output");
- aout_sys_t *p_sys = calloc (1, sizeof (*p_sys));
- if (!p_sys)
- return -1;
- p_sys->j_libVlc = *opaque; // Keep a reference to our Java object
- *opaque = (void*) p_sys; // The callback will need aout_sys_t
- LOGI ("Parameters: %u channels, FOURCC '%4.4s', sample rate: %uHz",
- *nb_channels, format, *rate);
- JNIEnv *p_env;
- if ((*myVm)->AttachCurrentThread (myVm, &p_env, NULL) != 0)
- {
- LOGE("Could not attach the display thread to the JVM !");
- return -1;
- }
- // Call the init function.
- jclass cls = (*p_env)->GetObjectClass (p_env, p_sys->j_libVlc);
- jmethodID methodIdInitAout = (*p_env)->GetMethodID (p_env, cls,
- "initAout", "(III)V");
- if (!methodIdInitAout)
- {
- LOGE ("Method initAout() could not be found!");
- goto error;
- }
- LOGV ("Number of channels forced to 2, number of samples to %d", FRAME_SIZE);
- *nb_channels = 2;
- (*p_env)->CallVoidMethod (p_env, p_sys->j_libVlc, methodIdInitAout,
- *rate, *nb_channels, FRAME_SIZE);
- if ((*p_env)->ExceptionCheck (p_env))
- {
- LOGE ("Unable to create audio player!");
- #ifndef NDEBUG
- (*p_env)->ExceptionDescribe (p_env);
- #endif
- (*p_env)->ExceptionClear (p_env);
- goto error;
- }
- /* Create a new byte array to store the audio data. */
- jbyteArray buffer = (*p_env)->NewByteArray (p_env,
- *nb_channels *
- FRAME_SIZE *
- sizeof (uint16_t) /* =2 */);
- if (buffer == NULL)
- {
- LOGE ("Could not allocate the Java byte array to store the audio data!");
- goto error;
- }
- /* Use a global reference to not reallocate memory each time we run
- the play function. */
- p_sys->buffer = (*p_env)->NewGlobalRef (p_env, buffer);
- /* The local reference is no longer useful. */
- (*p_env)->DeleteLocalRef (p_env, buffer);
- if (p_sys->buffer == NULL)
- {
- LOGE ("Could not create the global reference!");
- goto error;
- }
- // Get the play methodId
- p_sys->play = (*p_env)->GetMethodID (p_env, cls, "playAudio", "([BI)V");
- assert (p_sys->play != NULL);
- (*myVm)->DetachCurrentThread (myVm);
- return 0;
- error:
- (*myVm)->DetachCurrentThread (myVm);
- *opaque = NULL;
- free (p_sys);
- return -1;
- }
- /**
- * Play an audio frame
- **/
- void aout_play(void *opaque, const void *samples, unsigned count, int64_t pts)
- {
- aout_sys_t *p_sys = opaque;
- JNIEnv *p_env;
- /* How ugly: we constantly attach/detach this thread to/from the JVM
- * because it will be killed before aout_close is called.
- * aout_close will actually be called in an different thread!
- */
- (*myVm)->AttachCurrentThread (myVm, &p_env, NULL);
- (*p_env)->SetByteArrayRegion (p_env, p_sys->buffer, 0,
- 2 /*nb_channels*/ * count * sizeof (uint16_t),
- (jbyte*) samples);
- if ((*p_env)->ExceptionCheck (p_env))
- {
- // This can happen if for some reason the size of the input buffer
- // is larger than the size of the output buffer
- LOGE ("An exception occurred while calling SetByteArrayRegion");
- (*p_env)->ExceptionDescribe (p_env);
- (*p_env)->ExceptionClear (p_env);
- return;
- }
- (*p_env)->CallVoidMethod (p_env, p_sys->j_libVlc, p_sys->play,
- p_sys->buffer,
- 2 /*nb_channels*/ * count * sizeof (uint16_t),
- FRAME_SIZE);
- // FIXME: check for errors
- (*myVm)->DetachCurrentThread (myVm);
- }
- void aout_pause(void *opaque, int64_t pts)
- {
- LOGI ("Pausing audio output");
- aout_sys_t *p_sys = opaque;
- assert(p_sys);
- JNIEnv *p_env;
- (*myVm)->AttachCurrentThread (myVm, &p_env, NULL);
- // Call the pause function.
- jclass cls = (*p_env)->GetObjectClass (p_env, p_sys->j_libVlc);
- jmethodID methodIdPauseAout = (*p_env)->GetMethodID (p_env, cls, "pauseAout", "()V");
- if (!methodIdPauseAout)
- LOGE ("Method pauseAout() could not be found!");
- (*p_env)->CallVoidMethod (p_env, p_sys->j_libVlc, methodIdPauseAout);
- if ((*p_env)->ExceptionCheck (p_env))
- {
- LOGE ("Unable to pause audio player!");
- #ifndef NDEBUG
- (*p_env)->ExceptionDescribe (p_env);
- #endif
- (*p_env)->ExceptionClear (p_env);
- }
- (*myVm)->DetachCurrentThread (myVm);
- }
- void aout_close(void *opaque)
- {
- LOGI ("Closing audio output");
- aout_sys_t *p_sys = opaque;
- assert(p_sys);
- assert(p_sys->buffer);
- JNIEnv *p_env;
- (*myVm)->AttachCurrentThread (myVm, &p_env, NULL);
- // Call the close function.
- jclass cls = (*p_env)->GetObjectClass (p_env, p_sys->j_libVlc);
- jmethodID methodIdCloseAout = (*p_env)->GetMethodID (p_env, cls, "closeAout", "()V");
- if (!methodIdCloseAout)
- LOGE ("Method closeAout() could not be found!");
- (*p_env)->CallVoidMethod (p_env, p_sys->j_libVlc, methodIdCloseAout);
- if ((*p_env)->ExceptionCheck (p_env))
- {
- LOGE ("Unable to close audio player!");
- #ifndef NDEBUG
- (*p_env)->ExceptionDescribe (p_env);
- #endif
- (*p_env)->ExceptionClear (p_env);
- }
- (*p_env)->DeleteGlobalRef (p_env, p_sys->buffer);
- (*myVm)->DetachCurrentThread (myVm);
- free (p_sys);
- }
|