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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_objects.h: vlc_object_t definition and manipulation methods
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2008 the VideoLAN team
  5.  * $Id: e2fda545a74b1e2f687b8e5728e28c239950f7a4 $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /**
  24.  * file
  25.  * This file defines the vlc_object_t structure and object types.
  26.  */
  27. /**
  28.  * defgroup vlc_object Objects
  29.  * @{
  30.  */
  31. /* Object types */
  32. #define VLC_OBJECT_INPUT       (-7)
  33. #define VLC_OBJECT_DECODER     (-8)
  34. #define VLC_OBJECT_VOUT        (-9)
  35. #define VLC_OBJECT_AOUT        (-10)
  36. /* Please add new object types below -34 */
  37. /* Please do not add new object types anyway */
  38. #define VLC_OBJECT_GENERIC     (-666)
  39. /* Object search mode */
  40. #define FIND_PARENT         0x0001
  41. #define FIND_CHILD          0x0002
  42. #define FIND_ANYWHERE       0x0003
  43. #define FIND_STRICT         0x0010
  44. /* Object flags */
  45. #define OBJECT_FLAGS_NODBG       0x0001
  46. #define OBJECT_FLAGS_QUIET       0x0002
  47. #define OBJECT_FLAGS_NOINTERACT  0x0004
  48. /* Types */
  49. typedef void (*vlc_destructor_t)(struct vlc_object_t *);
  50. /*****************************************************************************
  51.  * The vlc_object_t type. Yes, it's that simple :-)
  52.  *****************************************************************************/
  53. /** The main vlc_object_t structure */
  54. struct vlc_object_t
  55. {
  56.     VLC_COMMON_MEMBERS
  57. };
  58. /*****************************************************************************
  59.  * Prototypes
  60.  *****************************************************************************/
  61. VLC_EXPORT( void *, __vlc_object_create, ( vlc_object_t *, int ) );
  62. VLC_EXPORT( void, __vlc_object_set_destructor, ( vlc_object_t *, vlc_destructor_t ) );
  63. VLC_EXPORT( void, __vlc_object_attach, ( vlc_object_t *, vlc_object_t * ) );
  64. VLC_EXPORT( void, __vlc_object_detach, ( vlc_object_t * ) );
  65. #if defined (__GNUC__) && !defined __cplusplus
  66. __attribute__((deprecated))
  67. #endif
  68. VLC_EXPORT( void *, __vlc_object_find, ( vlc_object_t *, int, int ) );
  69. VLC_EXPORT( vlc_object_t *, vlc_object_find_name, ( vlc_object_t *, const char *, int ) );
  70. VLC_EXPORT( void *, __vlc_object_hold, ( vlc_object_t * ) );
  71. VLC_EXPORT( void, __vlc_object_release, ( vlc_object_t * ) );
  72. VLC_EXPORT( vlc_list_t *, __vlc_list_children, ( vlc_object_t * ) );
  73. VLC_EXPORT( void, vlc_list_release, ( vlc_list_t * ) );
  74. /*}@*/
  75. #define vlc_object_create(a,b) 
  76.     __vlc_object_create( VLC_OBJECT(a), b )
  77. #define vlc_object_set_destructor(a,b) 
  78.     __vlc_object_set_destructor( VLC_OBJECT(a), b )
  79. #define vlc_object_detach(a) 
  80.     __vlc_object_detach( VLC_OBJECT(a) )
  81. #define vlc_object_attach(a,b) 
  82.     __vlc_object_attach( VLC_OBJECT(a), VLC_OBJECT(b) )
  83. #define vlc_object_find(a,b,c) 
  84.     __vlc_object_find( VLC_OBJECT(a),b,c)
  85. #define vlc_object_find_name(a,b,c) 
  86.     vlc_object_find_name( VLC_OBJECT(a),b,c)
  87. #define vlc_object_hold(a) 
  88.     __vlc_object_hold( VLC_OBJECT(a) )
  89. #define vlc_object_release(a) 
  90.     __vlc_object_release( VLC_OBJECT(a) )
  91. #define vlc_list_children(a) 
  92.     __vlc_list_children( VLC_OBJECT(a) )
  93. /* Objects and threading */
  94. VLC_EXPORT( void, __vlc_object_kill, ( vlc_object_t * ) );
  95. #define vlc_object_kill(a) 
  96.     __vlc_object_kill( VLC_OBJECT(a) )
  97. static inline bool vlc_object_alive (const vlc_object_t *obj)
  98. {
  99.     barrier ();
  100.     return !obj->b_die;
  101. }
  102. #define vlc_object_alive(a) vlc_object_alive( VLC_OBJECT(a) )