vlc_vod.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:2k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vlc_vod.h: interface for VoD server modules
  3.  *****************************************************************************
  4.  * Copyright (C) 2000, 2001 VideoLAN
  5.  * $Id: vlc_vod.h 8750 2004-09-20 21:50:18Z gbazin $
  6.  *
  7.  * Author: Gildas Bazin <gbazin@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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #ifndef _VLC_VOD_H
  24. #define _VLC_VOD_H 1
  25. struct vod_t
  26. {
  27.     VLC_COMMON_MEMBERS
  28.     /* Module properties */
  29.     module_t  *p_module;
  30.     vod_sys_t *p_sys;
  31.     vod_media_t * (*pf_media_new)   ( vod_t *, char *, input_item_t * );
  32.     void          (*pf_media_del)   ( vod_t *, vod_media_t * );
  33.     int           (*pf_media_add_es)( vod_t *, vod_media_t *, es_format_t * );
  34.     void          (*pf_media_del_es)( vod_t *, vod_media_t *, es_format_t * );
  35.     /* Owner properties */
  36.     int (*pf_media_control) ( void *, vod_media_t *, char *, int, va_list );
  37.     void *p_data;
  38. };
  39. static inline int vod_MediaControl( vod_t *p_vod, vod_media_t *p_media,
  40.                                     char *psz_id, int i_query, ... )
  41. {
  42.     va_list args;
  43.     int i_result;
  44.     if( !p_vod->pf_media_control ) return VLC_EGENERIC;
  45.     va_start( args, i_query );
  46.     i_result = p_vod->pf_media_control( p_vod->p_data, p_media, psz_id,
  47.                                         i_query, args );
  48.     va_end( args );
  49.     return i_result;
  50. }
  51. enum vod_query_e
  52. {
  53.     VOD_MEDIA_PLAY,         /* arg1= double *       res=    */
  54.     VOD_MEDIA_PAUSE,        /* arg1= double *       res=    */
  55.     VOD_MEDIA_STOP,         /* arg1= double         res=can fail    */
  56.     VOD_MEDIA_SEEK,         /* arg1= double *       res=    */
  57. };
  58. #endif