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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vlc_vlm.h: VLM interface plugin
  3.  *****************************************************************************
  4.  * Copyright (C) 2000, 2001 VideoLAN
  5.  * $Id: vlc_vlm.h 9020 2004-10-20 12:01:09Z gbazin $
  6.  *
  7.  * Authors: Simon Latapie <garf@videolan.org>
  8.  *          Laurent Aimar <fenrir@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #ifndef _VLC_VLM_H
  25. #define _VLC_VLM_H 1
  26. /* VLM specific - structures and functions */
  27. enum
  28. {
  29.     VOD_TYPE = 0,
  30.     BROADCAST_TYPE,
  31.     SCHEDULE_TYPE,
  32. };
  33. typedef struct
  34. {
  35.     /* instance name */
  36.     char *psz_name;
  37.     /* "playlist" index */
  38.     int i_index;
  39.     input_item_t   item;
  40.     input_thread_t *p_input;
  41. } vlm_media_instance_t;
  42. typedef struct
  43. {
  44.     vlc_bool_t b_enabled;
  45.     int      i_type;
  46.     /* name "media" is reserved */
  47.     char    *psz_name;
  48.     input_item_t item;
  49.     /* "playlist" */
  50.     int     i_input;
  51.     char    **input;
  52.     int     i_option;
  53.     char    **option;
  54.     char    *psz_output;
  55.     /* only for broadcast */
  56.     vlc_bool_t b_loop;
  57.     /* only for vod */
  58.     vod_media_t *vod_media;
  59.     char *psz_vod_output;
  60.     char *psz_mux;
  61.     /* actual input instances */
  62.     int                  i_instance;
  63.     vlm_media_instance_t **instance;
  64. } vlm_media_t;
  65. typedef struct
  66. {
  67.     /* names "schedule" is reserved */
  68.     char    *psz_name;
  69.     vlc_bool_t b_enabled;
  70.     /* list of commands to execute on date */
  71.     int i_command;
  72.     char **command;
  73.     /* the date of 1st execution */
  74.     mtime_t i_date;
  75.     /* if != 0 repeat schedule every (period) */
  76.     mtime_t i_period;
  77.     /* number of times you have to repeat
  78.        i_repeat < 0 : endless repeat     */
  79.     int i_repeat;
  80. } vlm_schedule_t;
  81. /* ok, here is the structure of a vlm_message:
  82.    The parent node is ( name_of_the_command , NULL ), or
  83.    ( name_of_the_command , message_error ) on error.
  84.    If a node has children, it should not have a value (=NULL).*/
  85. struct vlm_message_t
  86. {
  87.     char *psz_name;
  88.     char *psz_value;
  89.     int           i_child;
  90.     vlm_message_t **child;
  91. };
  92. struct vlm_t
  93. {
  94.     VLC_COMMON_MEMBERS
  95.     vlc_mutex_t lock;
  96.     int            i_media;
  97.     vlm_media_t    **media;
  98.     int            i_vod;
  99.     vod_t          *vod;
  100.     int            i_schedule;
  101.     vlm_schedule_t **schedule;
  102. };
  103. #define vlm_New( a ) __vlm_New( VLC_OBJECT(a) )
  104. VLC_EXPORT( vlm_t *, __vlm_New, ( vlc_object_t * ) );
  105. VLC_EXPORT( void, vlm_Delete, ( vlm_t * ) );
  106. VLC_EXPORT( int, vlm_ExecuteCommand, ( vlm_t *, char *, vlm_message_t ** ) );
  107. VLC_EXPORT( void, vlm_MessageDelete, ( vlm_message_t* ) );
  108. #endif