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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_services_discovery.h : Services Discover functions
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2004 the VideoLAN team
  5.  * $Id: d647b61543c515f125304d7ef3a57a20187d90e2 $
  6.  *
  7.  * Authors: Pierre d'Herbemont <pdherbemont # videolan.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. #ifndef VLC_SERVICES_DISCOVERY_H_
  24. #define VLC_SERVICES_DISCOVERY_H_
  25. /**
  26.  * file
  27.  * This file functions and structures for service discovery in vlc
  28.  */
  29. # ifdef __cplusplus
  30. extern "C" {
  31. # endif
  32. /*
  33.  * @{
  34.  */
  35. #include <vlc_input.h>
  36. #include <vlc_events.h>
  37. struct services_discovery_t
  38. {
  39.     VLC_COMMON_MEMBERS
  40.     module_t *          p_module;
  41.     vlc_event_manager_t event_manager;      /* Accessed through Setters for non class function */
  42.     services_discovery_sys_t *p_sys;
  43. };
  44. /***********************************************************************
  45.  * Service Discovery
  46.  ***********************************************************************/
  47. /* Get the services discovery modules names to use in Create(), in a null
  48.  * terminated string array. Array and string must be freed after use. */
  49. VLC_EXPORT( char **, vlc_sd_GetNames, ( char ***pppsz_longnames ) );
  50. /* Creation of a service_discovery object */
  51. VLC_EXPORT( services_discovery_t *, vlc_sd_Create, ( vlc_object_t * ) );
  52. VLC_EXPORT( bool, vlc_sd_Start, ( services_discovery_t *, const char * ) );
  53. VLC_EXPORT( void, vlc_sd_Stop, ( services_discovery_t * ) );
  54. static inline void vlc_sd_Destroy( services_discovery_t *p_sd )
  55. {
  56.     vlc_object_release( VLC_OBJECT(p_sd) );
  57. }
  58. static inline void vlc_sd_StopAndDestroy( services_discovery_t * p_this )
  59. {
  60.     vlc_sd_Stop( p_this );
  61.     vlc_sd_Destroy( p_this );
  62. }
  63. /* Read info from discovery object */
  64. VLC_EXPORT( char *,                 services_discovery_GetLocalizedName, ( services_discovery_t * p_this ) );
  65. /* Receive event notification (preferred way to get new items) */
  66. VLC_EXPORT( vlc_event_manager_t *,  services_discovery_EventManager, ( services_discovery_t * p_this ) );
  67. /* Used by services_discovery to post update about their items */
  68.     /* About the psz_category, it is a legacy way to add info to the item,
  69.      * for more options, directly set the (meta) data on the input item */
  70. VLC_EXPORT( void,                   services_discovery_AddItem, ( services_discovery_t * p_this, input_item_t * p_item, const char * psz_category ) );
  71. VLC_EXPORT( void,                   services_discovery_RemoveItem, ( services_discovery_t * p_this, input_item_t * p_item ) );
  72. /** @} */
  73. # ifdef __cplusplus
  74. }
  75. # endif
  76. #endif