1 /*****************************************************************************
2 * vlc_vlm.h: VLM interface plugin
3 *****************************************************************************
4 * Copyright (C) 2000, 2001 the VideoLAN team
7 * Authors: Simon Latapie <garf@videolan.org>
8 * Laurent Aimar <fenrir@videolan.org>
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.
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.
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 *****************************************************************************/
28 /* VLM specific - structures and functions */
41 /* "playlist" index */
45 input_thread_t *p_input;
47 } vlm_media_instance_t;
54 /* name "media" is reserved */
67 /* only for broadcast */
71 vod_media_t *vod_media;
75 /* actual input instances */
77 vlm_media_instance_t **instance;
84 /* names "schedule" is reserved */
87 /* list of commands to execute on date */
91 /* the date of 1st execution */
94 /* if != 0 repeat schedule every (period) */
96 /* number of times you have to repeat
97 i_repeat < 0 : endless repeat */
102 /* ok, here is the structure of a vlm_message:
103 The parent node is ( name_of_the_command , NULL ), or
104 ( name_of_the_command , message_error ) on error.
105 If a node has children, it should not have a value (=NULL).*/
112 vlm_message_t **child;
129 vlm_schedule_t **schedule;
133 #define vlm_New( a ) __vlm_New( VLC_OBJECT(a) )
134 VLC_EXPORT( vlm_t *, __vlm_New, ( vlc_object_t * ) );
135 VLC_EXPORT( void, vlm_Delete, ( vlm_t * ) );
136 VLC_EXPORT( int, vlm_ExecuteCommand, ( vlm_t *, char *, vlm_message_t ** ) );
137 VLC_EXPORT( void, vlm_MessageDelete, ( vlm_message_t * ) );
138 VLC_EXPORT( vlm_media_t *, vlm_MediaNew, ( vlm_t *, char *, int ) );
139 VLC_EXPORT( void, vlm_MediaDelete, ( vlm_t *, vlm_media_t *, char * ) );
140 VLC_EXPORT( int, vlm_MediaSetup, ( vlm_t *, vlm_media_t *, char *, char * ) );
141 VLC_EXPORT( int, vlm_MediaControl, ( vlm_t *, vlm_media_t *, char *, char *, char * ) );
142 VLC_EXPORT( vlm_schedule_t *, vlm_ScheduleNew, ( vlm_t *, char * ) );
143 VLC_EXPORT( void, vlm_ScheduleDelete, ( vlm_t *, vlm_schedule_t *, char * ) );
144 VLC_EXPORT( int, vlm_ScheduleSetup, ( vlm_schedule_t *, char *, char * ) );
145 VLC_EXPORT( int, vlm_MediaVodControl, ( void *, vod_media_t *, char *, int, va_list ) );
146 VLC_EXPORT( int, vlm_Save, ( vlm_t *, char * ) );
147 VLC_EXPORT( int, vlm_Load, ( vlm_t *, char * ) );