vlc | branch: master | Rafaël Carré <[email protected]> | Sun Jan 22 01:24:42 2012 -0500| [281afe79d3e9ec90b0ba9634ce1937638e029973] | committer: Rafaël Carré
opensles: cosmetics > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=281afe79d3e9ec90b0ba9634ce1937638e029973 --- modules/audio_output/opensles_android.c | 14 ++++++++------ 1 files changed, 8 insertions(+), 6 deletions(-) diff --git a/modules/audio_output/opensles_android.c b/modules/audio_output/opensles_android.c index 4f16d72..242cfc5 100644 --- a/modules/audio_output/opensles_android.c +++ b/modules/audio_output/opensles_android.c @@ -54,15 +54,17 @@ struct aout_sys_t SLObjectItf outputMixObject; SLAndroidSimpleBufferQueueItf playerBufferQueue; SLObjectItf playerObject; + SLPlayItf playerPlay; - aout_buffer_t * p_buffer_array[BUFF_QUEUE]; + aout_buffer_t *p_buffer_array[BUFF_QUEUE]; int i_toclean_buffer; int i_toappend_buffer; - SLInterfaceID * SL_IID_ENGINE; - SLInterfaceID * SL_IID_ANDROIDSIMPLEBUFFERQUEUE; - SLInterfaceID * SL_IID_VOLUME; - SLInterfaceID * SL_IID_PLAY; - void * p_so_handle; + + SLInterfaceID *SL_IID_ENGINE; + SLInterfaceID *SL_IID_ANDROIDSIMPLEBUFFERQUEUE; + SLInterfaceID *SL_IID_VOLUME; + SLInterfaceID *SL_IID_PLAY; + void *p_so_handle; }; typedef SLresult (*slCreateEngine_t)( _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
