libvlc_internal.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * libvlc_internal.h : Definition of opaque structures for libvlc exported API
  3.  * Also contains some internal utility functions
  4.  *****************************************************************************
  5.  * Copyright (C) 2005-2009 the VideoLAN team
  6.  * $Id: afe5a4dd8978ad80073e0595b344b9cca8bb1e57 $
  7.  *
  8.  * Authors: Clément Stenac <zorglub@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifndef _LIBVLC_INTERNAL_H
  25. #define _LIBVLC_INTERNAL_H 1
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc/libvlc_structures.h>
  30. #include <vlc/libvlc.h>
  31. #include <vlc/libvlc_media.h>
  32. #include <vlc/libvlc_events.h>
  33. #include <vlc_common.h>
  34. /***************************************************************************
  35.  * Internal creation and destruction functions
  36.  ***************************************************************************/
  37. VLC_EXPORT (libvlc_int_t *, libvlc_InternalCreate, ( void ) );
  38. VLC_EXPORT (int, libvlc_InternalInit, ( libvlc_int_t *, int, const char *ppsz_argv[] ) );
  39. VLC_EXPORT (void, libvlc_InternalCleanup, ( libvlc_int_t * ) );
  40. VLC_EXPORT (void, libvlc_InternalDestroy, ( libvlc_int_t * ) );
  41. VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char * ) );
  42. VLC_EXPORT (void, libvlc_InternalWait, ( libvlc_int_t * ) );
  43. /***************************************************************************
  44.  * Opaque structures for libvlc API
  45.  ***************************************************************************/
  46. typedef enum libvlc_lock_state_t
  47. {
  48.     libvlc_Locked,
  49.     libvlc_UnLocked
  50. } libvlc_lock_state_t;
  51. struct libvlc_instance_t
  52. {
  53.     libvlc_int_t *p_libvlc_int;
  54.     vlm_t        *p_vlm;
  55.     int           b_playlist_locked;
  56.     unsigned      ref_count;
  57.     int           verbosity;
  58.     vlc_mutex_t   instance_lock;
  59.     vlc_mutex_t   event_callback_lock;
  60.     struct libvlc_callback_entry_list_t *p_callback_list;
  61. };
  62. /***************************************************************************
  63.  * Other internal functions
  64.  ***************************************************************************/
  65. /* Events */
  66. libvlc_event_manager_t * libvlc_event_manager_new(
  67.         void * p_obj, libvlc_instance_t * p_libvlc_inst,
  68.         libvlc_exception_t *p_e );
  69. void libvlc_event_manager_release(
  70.         libvlc_event_manager_t * p_em );
  71. void libvlc_event_manager_register_event_type(
  72.         libvlc_event_manager_t * p_em,
  73.         libvlc_event_type_t event_type,
  74.         libvlc_exception_t * p_e );
  75. void libvlc_event_send(
  76.         libvlc_event_manager_t * p_em,
  77.         libvlc_event_t * p_event );
  78. void libvlc_event_attach_async( libvlc_event_manager_t * p_event_manager,
  79.                                libvlc_event_type_t event_type,
  80.                                libvlc_callback_t pf_callback,
  81.                                void *p_user_data,
  82.                                libvlc_exception_t *p_e );
  83. /* Exception shorcuts */
  84. #define RAISENULL( ... ) { libvlc_exception_raise( p_e, __VA_ARGS__ ); 
  85.                            return NULL; }
  86. #define RAISEVOID( ... ) { libvlc_exception_raise( p_e, __VA_ARGS__ ); 
  87.                            return; }
  88. #define RAISEZERO( ... ) { libvlc_exception_raise( p_e, __VA_ARGS__ ); 
  89.                            return 0; }
  90. #endif