1 /*****************************************************************************
2 * vlm_internal.h: Internal vlm structures
3 *****************************************************************************
4 * Copyright (C) 1998-2006 the VideoLAN team
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
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.
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.
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 *****************************************************************************/
24 #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__)
25 # error This header file can only be included from LibVLC.
28 #ifndef _VLM_INTERNAL_H
29 #define _VLM_INTERNAL_H 1
32 #include "input_interface.h"
40 /* "playlist" index */
46 input_thread_t
*p_input
;
47 input_resource_t
*p_input_resource
;
49 } vlm_media_instance_sys_t
;
62 /* actual input instances */
64 vlm_media_instance_sys_t
**instance
;
69 /* names "schedule" is reserved */
72 /* list of commands to execute on date */
76 /* the date of 1st execution */
79 /* if != 0 repeat schedule every (period) */
81 /* number of times you have to repeat
82 i_repeat < 0 : endless repeat */
93 vlc_mutex_t lock_manage
;
94 vlc_cond_t wait_manage
;
95 /* tell vlm thread there is work to do */
96 bool input_state_changed
;
100 /* Vod server (used by media) */
105 vlm_media_sys_t
**media
;
109 vlm_schedule_sys_t
**schedule
;
112 int64_t vlm_Date(void);
113 int vlm_ControlInternal( vlm_t
*p_vlm
, int i_query
, ... );
114 int ExecuteCommand( vlm_t
*, const char *, vlm_message_t
** );
115 void vlm_ScheduleDelete( vlm_t
*vlm
, vlm_schedule_sys_t
*sched
);