]> git.sesse.net Git - vlc/blob - src/input/vlm_event.c
31f1ddd3d40cacac505659775be76c106d71b950
[vlc] / src / input / vlm_event.c
1 /*****************************************************************************
2  * vlm_event.c: Events
3  *****************************************************************************
4  * Copyright (C) 2009 Laurent Aimar
5  * $Id$
6  *
7  * Authors: Laurent Aimar < fenrir _AT_ videolan _DOT_ 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_vlm.h>
33 #include "vlm_internal.h"
34 #include "vlm_event.h"
35 #include <assert.h>
36
37 /* */
38 static void Trigger( vlm_t *, int i_type, int64_t id );
39
40 /*****************************************************************************
41  *
42  *****************************************************************************/
43 void vlm_SendEventMediaAdded( vlm_t *p_vlm, int64_t id )
44 {
45     Trigger( p_vlm, VLM_EVENT_MEDIA_ADDED, id );
46 }
47 void vlm_SendEventMediaRemoved( vlm_t *p_vlm, int64_t id )
48 {
49     Trigger( p_vlm, VLM_EVENT_MEDIA_REMOVED, id );
50 }
51 void vlm_SendEventMediaChanged( vlm_t *p_vlm, int64_t id )
52 {
53     Trigger( p_vlm, VLM_EVENT_MEDIA_CHANGED, id );
54 }
55
56 void vlm_SendEventMediaInstanceStarted( vlm_t *p_vlm, int64_t id )
57 {
58     Trigger( p_vlm, VLM_EVENT_MEDIA_INSTANCE_STARTED, id );
59 }
60 void vlm_SendEventMediaInstanceStopped( vlm_t *p_vlm, int64_t id )
61 {
62     Trigger( p_vlm, VLM_EVENT_MEDIA_INSTANCE_STOPPED, id );
63 }
64
65 /*****************************************************************************
66  *
67  *****************************************************************************/
68 static void Trigger( vlm_t *p_vlm, int i_type, int64_t id )
69 {
70     vlm_event_t event;
71
72     event.i_type = i_type;
73     event.id = id;
74     var_SetAddress( p_vlm, "intf-event", &event );
75 }
76