1 /*****************************************************************************
2 * vlm_internal.h: Internal vlm structures
3 *****************************************************************************
4 * Copyright (C) 1998-2006 VLC authors and VideoLAN
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
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 Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef LIBVLC_VLM_INTERNAL_H
25 #define LIBVLC_VLM_INTERNAL_H 1
28 #include "input_interface.h"
36 /* "playlist" index */
41 vlc_object_t
*p_parent
;
43 input_thread_t
*p_input
;
44 input_resource_t
*p_input_resource
;
46 } vlm_media_instance_sys_t
;
59 /* actual input instances */
61 vlm_media_instance_sys_t
**instance
;
66 /* names "schedule" is reserved */
69 /* list of commands to execute on date */
73 /* the date of 1st execution */
76 /* if != 0, repeat period in seconds */
78 /* number of times you have to repeat
79 i_repeat < 0 : endless repeat */
86 struct vlc_common_members obj
;
90 vlc_mutex_t lock_manage
;
91 vlc_cond_t wait_manage
;
94 /* tell vlm thread there is work to do */
95 bool input_state_changed
;
99 /* Vod server (used by media) */
104 vlm_media_sys_t
**media
;
108 vlm_schedule_sys_t
**schedule
;
111 int vlm_ControlInternal( vlm_t
*p_vlm
, int i_query
, ... );
112 int ExecuteCommand( vlm_t
*, const char *, vlm_message_t
** );
113 void vlm_ScheduleDelete( vlm_t
*vlm
, vlm_schedule_sys_t
*sched
);