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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_devices.h : Devices handling
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2006 the VideoLAN team
  5.  * $Id: ba0d5f809007c6a07f8d8c1f91f63ff17cce04cf $
  6.  *
  7.  * Authors: Clément Stenac <zorglub@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_DEVICES_H
  24. #define VLC_DEVICES_H 1
  25. /**
  26.  * file
  27.  * This file implements functions, structures for probing devices (DVD, CD, VCD)
  28.  */
  29. enum
  30. {
  31.     DEVICE_CAN_DVD,
  32.     DEVICE_CAN_CD,
  33. };
  34. enum
  35. {
  36.     MEDIA_TYPE_CDDA,
  37.     MEDIA_TYPE_VCD,
  38.     MEDIA_TYPE_DVD,
  39. };
  40. struct device_t
  41. {
  42.     int             i_capabilities;
  43.     int             i_media_type;
  44.     bool      b_seen;
  45.     char *psz_uri;
  46.     char *psz_name;
  47. };
  48. struct device_probe_t
  49. {
  50.     VLC_COMMON_MEMBERS;
  51.     int         i_devices;
  52.     device_t  **pp_devices;
  53.     probe_sys_t *p_sys;
  54.     void      ( *pf_run )    ( device_probe_t * );  /** Run function */
  55. };
  56. static inline void device_GetDVD(void)
  57. {
  58. }
  59. #endif