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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * libvlc.h:  libvlc external API
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2009 the VideoLAN team
  5.  * $Id: dabf51a3bb1f2075e0a799a53a588fc58b6405fb $
  6.  *
  7.  * Authors: Clément Stenac <zorglub@videolan.org>
  8.  *          Jean-Paul Saman <jpsaman@videolan.org>
  9.  *          Pierre d'Herbemont <pdherbemont@videolan.org>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *****************************************************************************/
  25. /**
  26.  * file
  27.  * This file defines libvlc_media_discoverer external API
  28.  */
  29. #ifndef VLC_LIBVLC_MEDIA_DISCOVERER_H
  30. #define VLC_LIBVLC_MEDIA_DISCOVERER_H 1
  31. /*****************************************************************************
  32.  * Services/Media Discovery
  33.  *****************************************************************************/
  34. /** defgroup libvlc_media_discoverer libvlc_media_discoverer
  35.  * ingroup libvlc
  36.  * LibVLC Media Discoverer
  37.  * @{
  38.  */
  39. typedef struct libvlc_media_discoverer_t libvlc_media_discoverer_t;
  40. /**
  41.  * Discover media service by name.
  42.  *
  43.  * param p_inst libvlc instance
  44.  * param psz_name service name
  45.  * param p_e an initialized exception object
  46.  * return media discover object
  47.  */
  48. VLC_PUBLIC_API libvlc_media_discoverer_t *
  49. libvlc_media_discoverer_new_from_name( libvlc_instance_t * p_inst,
  50.                                        const char * psz_name,
  51.                                        libvlc_exception_t * p_e );
  52. /**
  53.  * Release media discover object. If the reference count reaches 0, then
  54.  * the object will be released.
  55.  *
  56.  * param p_mdis media service discover object
  57.  */
  58. VLC_PUBLIC_API void   libvlc_media_discoverer_release( libvlc_media_discoverer_t * p_mdis );
  59. /**
  60.  * Get media service discover object its localized name.
  61.  *
  62.  * param media discover object
  63.  * return localized name
  64.  */
  65. VLC_PUBLIC_API char * libvlc_media_discoverer_localized_name( libvlc_media_discoverer_t * p_mdis );
  66. /**
  67.  * Get media service discover media list.
  68.  *
  69.  * param p_mdis media service discover object
  70.  * return list of media items
  71.  */
  72. VLC_PUBLIC_API libvlc_media_list_t * libvlc_media_discoverer_media_list( libvlc_media_discoverer_t * p_mdis );
  73. /**
  74.  * Get event manager from media service discover object.
  75.  *
  76.  * param p_mdis media service discover object
  77.  * return event manager object.
  78.  */
  79. VLC_PUBLIC_API libvlc_event_manager_t *
  80.         libvlc_media_discoverer_event_manager( libvlc_media_discoverer_t * p_mdis );
  81. /**
  82.  * Query if media service discover object is running.
  83.  *
  84.  * param p_mdis media service discover object
  85.  * return true if running, false if not
  86.  */
  87. VLC_PUBLIC_API int
  88.         libvlc_media_discoverer_is_running( libvlc_media_discoverer_t * p_mdis );
  89. /**@} */
  90. #endif /* <vlc/libvlc.h> */