1 /*****************************************************************************
2 * vlm.c: libvlc new API VLM handling functions
3 *****************************************************************************
4 * Copyright (C) 2005 VLC authors and VideoLAN
7 * Authors: Clément Stenac <zorglub@videolan.org>
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 *****************************************************************************/
28 #include <vlc/libvlc.h>
29 #include <vlc/libvlc_vlm.h>
31 #include <vlc_input.h>
35 #include "libvlc_internal.h"
37 /* VLM events callback. Transmit to libvlc */
38 static int VlmEvent( vlc_object_t
*p_this
, const char * name
,
39 vlc_value_t old_val
, vlc_value_t newval
, void *param
)
44 vlm_event_t
*event
= (vlm_event_t
*)newval
.p_address
;
45 libvlc_event_manager_t
*p_event_manager
= (libvlc_event_manager_t
*) param
;
46 libvlc_event_t libvlc_event
;
48 libvlc_event
.u
.vlm_media_event
.psz_instance_name
= NULL
;
49 libvlc_event
.u
.vlm_media_event
.psz_media_name
= event
->psz_name
;
51 switch( event
->i_type
)
53 case VLM_EVENT_MEDIA_ADDED
:
54 libvlc_event
.type
= libvlc_VlmMediaAdded
;
56 case VLM_EVENT_MEDIA_REMOVED
:
57 libvlc_event
.type
= libvlc_VlmMediaRemoved
;
59 case VLM_EVENT_MEDIA_CHANGED
:
60 libvlc_event
.type
= libvlc_VlmMediaChanged
;
62 case VLM_EVENT_MEDIA_INSTANCE_STARTED
:
63 libvlc_event
.type
= libvlc_VlmMediaInstanceStarted
;
65 case VLM_EVENT_MEDIA_INSTANCE_STOPPED
:
66 libvlc_event
.type
= libvlc_VlmMediaInstanceStopped
;
68 case VLM_EVENT_MEDIA_INSTANCE_STATE
:
69 libvlc_event
.u
.vlm_media_event
.psz_instance_name
=
70 event
->psz_instance_name
;
71 switch( event
->input_state
)
74 libvlc_event
.type
= libvlc_VlmMediaInstanceStatusInit
;
78 libvlc_VlmMediaInstanceStatusOpening
;
82 libvlc_VlmMediaInstanceStatusPlaying
;
85 libvlc_event
.type
= libvlc_VlmMediaInstanceStatusPause
;
88 libvlc_event
.type
= libvlc_VlmMediaInstanceStatusEnd
;
91 libvlc_event
.type
= libvlc_VlmMediaInstanceStatusError
;
100 libvlc_event_send( p_event_manager
, &libvlc_event
);
104 static void libvlc_vlm_release_internal( libvlc_instance_t
*p_instance
)
106 vlm_t
*p_vlm
= p_instance
->libvlc_vlm
.p_vlm
;
107 if( !p_instance
->libvlc_vlm
.p_vlm
)
109 /* We need to remove medias in order to receive events */
110 vlm_Control( p_vlm
, VLM_CLEAR_MEDIAS
);
111 vlm_Control( p_vlm
, VLM_CLEAR_SCHEDULES
);
113 var_DelCallback( (vlc_object_t
*)p_vlm
, "intf-event", VlmEvent
,
114 p_instance
->libvlc_vlm
.p_event_manager
);
115 p_instance
->libvlc_vlm
.pf_release
= NULL
;
116 libvlc_event_manager_release( p_instance
->libvlc_vlm
.p_event_manager
);
117 p_instance
->libvlc_vlm
.p_event_manager
= NULL
;
119 p_instance
->libvlc_vlm
.p_vlm
= NULL
;
122 static int libvlc_vlm_init( libvlc_instance_t
*p_instance
)
124 if( !p_instance
->libvlc_vlm
.p_event_manager
)
126 p_instance
->libvlc_vlm
.p_event_manager
=
127 libvlc_event_manager_new( p_instance
->libvlc_vlm
.p_vlm
, p_instance
);
128 if( unlikely(p_instance
->libvlc_vlm
.p_event_manager
== NULL
) )
130 libvlc_event_manager_register_event_type(
131 p_instance
->libvlc_vlm
.p_event_manager
,
132 libvlc_VlmMediaAdded
);
133 libvlc_event_manager_register_event_type(
134 p_instance
->libvlc_vlm
.p_event_manager
,
135 libvlc_VlmMediaRemoved
);
136 libvlc_event_manager_register_event_type(
137 p_instance
->libvlc_vlm
.p_event_manager
,
138 libvlc_VlmMediaChanged
);
139 libvlc_event_manager_register_event_type(
140 p_instance
->libvlc_vlm
.p_event_manager
,
141 libvlc_VlmMediaInstanceStarted
);
142 libvlc_event_manager_register_event_type(
143 p_instance
->libvlc_vlm
.p_event_manager
,
144 libvlc_VlmMediaInstanceStopped
);
145 libvlc_event_manager_register_event_type(
146 p_instance
->libvlc_vlm
.p_event_manager
,
147 libvlc_VlmMediaInstanceStatusInit
);
148 libvlc_event_manager_register_event_type(
149 p_instance
->libvlc_vlm
.p_event_manager
,
150 libvlc_VlmMediaInstanceStatusOpening
);
151 libvlc_event_manager_register_event_type(
152 p_instance
->libvlc_vlm
.p_event_manager
,
153 libvlc_VlmMediaInstanceStatusPlaying
);
154 libvlc_event_manager_register_event_type(
155 p_instance
->libvlc_vlm
.p_event_manager
,
156 libvlc_VlmMediaInstanceStatusPause
);
157 libvlc_event_manager_register_event_type(
158 p_instance
->libvlc_vlm
.p_event_manager
,
159 libvlc_VlmMediaInstanceStatusEnd
);
160 libvlc_event_manager_register_event_type(
161 p_instance
->libvlc_vlm
.p_event_manager
,
162 libvlc_VlmMediaInstanceStatusError
);
165 if( !p_instance
->libvlc_vlm
.p_vlm
)
167 p_instance
->libvlc_vlm
.p_vlm
= vlm_New( p_instance
->p_libvlc_int
);
168 if( !p_instance
->libvlc_vlm
.p_vlm
)
170 libvlc_printerr( "VLM not supported or out of memory" );
173 var_AddCallback( (vlc_object_t
*)p_instance
->libvlc_vlm
.p_vlm
,
174 "intf-event", VlmEvent
,
175 p_instance
->libvlc_vlm
.p_event_manager
);
176 p_instance
->libvlc_vlm
.pf_release
= libvlc_vlm_release_internal
;
182 void libvlc_vlm_release( libvlc_instance_t
*p_instance
)
184 libvlc_vlm_release_internal( p_instance
);
187 #define VLM_RET(p,ret) do { \
188 if( libvlc_vlm_init( p_instance ) ) \
190 (p) = p_instance->libvlc_vlm.p_vlm; \
193 static vlm_media_instance_t
*
194 libvlc_vlm_get_media_instance( libvlc_instance_t
*p_instance
,
195 const char *psz_name
, int i_minstance_idx
)
198 vlm_media_instance_t
**pp_minstance
;
199 vlm_media_instance_t
*p_minstance
;
203 VLM_RET(p_vlm
, NULL
);
205 if( vlm_Control( p_vlm
, VLM_GET_MEDIA_ID
, psz_name
, &id
) ||
206 vlm_Control( p_vlm
, VLM_GET_MEDIA_INSTANCES
, id
, &pp_minstance
,
209 libvlc_printerr( "%s: media instances not found", psz_name
);
213 if( i_minstance_idx
>= 0 && i_minstance_idx
< i_minstance
)
215 p_minstance
= pp_minstance
[i_minstance_idx
];
216 TAB_REMOVE( i_minstance
, pp_minstance
, p_minstance
);
218 while( i_minstance
> 0 )
219 vlm_media_instance_Delete( pp_minstance
[--i_minstance
] );
220 TAB_CLEAN( i_minstance
, pp_minstance
);
224 /* local function to be used in libvlc_vlm_show_media only */
225 static char* recurse_answer( vlm_message_t
*p_answer
, const char* psz_delim
,
227 char* psz_childdelim
= NULL
;
228 char* psz_nametag
= NULL
;
229 char* psz_response
= strdup( "" );
233 vlm_message_t
*aw_child
, **paw_child
;
235 i_success
= asprintf( &psz_childdelim
, "%s\t", psz_delim
);
236 if( i_success
== -1 )
239 paw_child
= p_answer
->child
;
240 aw_child
= *( paw_child
);
241 /* Iterate over children */
242 for( i
= 0; i
< p_answer
->i_child
; i
++ )
244 /* Spare comma if it is the last element */
246 if( i
== (p_answer
->i_child
- 1) )
249 /* Append name of child node, if not in a list */
252 i_success
= asprintf( &psz_tmp
, "%s\"%s\": ",
253 psz_response
, aw_child
->psz_name
);
254 if( i_success
== -1 ) break;
255 free( psz_response
);
256 psz_response
= psz_tmp
;
259 /* If child node has children, */
260 if( aw_child
->i_child
)
262 /* If the parent node is a list (hence the child node is
263 * inside a list), create a property of its name as if it
264 * had a name value node
268 i_success
= asprintf( &psz_nametag
, "\"name\": \"%s\",%s",
269 aw_child
->psz_name
, psz_childdelim
);
270 if( i_success
== -1 ) break;
274 psz_nametag
= strdup( "" );
276 /* If the child is a list itself, format it accordingly and
277 * recurse through the child's children, telling them that
278 * they are inside a list.
280 if( strcmp( aw_child
->psz_name
, "media" ) == 0 ||
281 strcmp( aw_child
->psz_name
, "inputs" ) == 0 ||
282 strcmp( aw_child
->psz_name
, "options" ) == 0 )
284 char *psz_recurse
= recurse_answer( aw_child
, psz_childdelim
, 1 ),
285 i_success
= asprintf( &psz_tmp
, "%s[%s%s%s]%c%s",
286 psz_response
, psz_childdelim
, psz_recurse
,
287 psz_delim
, c_comma
, psz_delim
);
289 if( i_success
== -1 ) break;
290 free( psz_response
);
291 psz_response
= psz_tmp
;
293 /* Not a list, so format the child as a JSON object and
294 * recurse through the child's children
298 char *psz_recurse
= recurse_answer( aw_child
, psz_childdelim
, 0 ),
299 i_success
= asprintf( &psz_tmp
, "%s{%s%s%s%s}%c%s",
300 psz_response
, psz_childdelim
, psz_nametag
,
301 psz_recurse
, psz_delim
, c_comma
, psz_delim
);
303 if( i_success
== -1 ) break;
304 free( psz_response
);
305 psz_response
= psz_tmp
;
308 /* Otherwise - when no children are present - the node is a
309 * value node. So print the value string
313 /* If value is equivalent to NULL, print it as null */
314 if( aw_child
->psz_value
== NULL
315 || strcmp( aw_child
->psz_value
, "(null)" ) == 0 )
317 i_success
= asprintf( &psz_tmp
, "%snull%c%s",
318 psz_response
, c_comma
, psz_delim
);
319 if( i_success
== -1 ) break;
320 free( psz_response
);
321 psz_response
= psz_tmp
;
323 /* Otherwise print the value in quotation marks */
326 i_success
= asprintf( &psz_tmp
, "%s\"%s\"%c%s",
327 psz_response
, aw_child
->psz_value
,
328 c_comma
, psz_delim
);
329 if( i_success
== -1 ) break;
330 free( psz_response
);
331 psz_response
= psz_tmp
;
334 /* getting next child */
336 aw_child
= *( paw_child
);
339 free( psz_childdelim
);
340 if( i_success
== -1 )
342 free( psz_response
);
343 psz_response
= strdup( "" );
348 const char* libvlc_vlm_show_media( libvlc_instance_t
*p_instance
,
349 const char *psz_name
)
351 char *psz_message
= NULL
;
352 vlm_message_t
*answer
= NULL
;
353 char *psz_response
= NULL
;
354 const char *psz_fmt
= NULL
;
355 const char *psz_delimiter
= NULL
;
359 VLM_RET(p_vlm
, NULL
);
363 if( asprintf( &psz_message
, "show %s", psz_name
) == -1 )
366 vlm_ExecuteCommand( p_vlm
, psz_message
, &answer
);
367 if( answer
->psz_value
)
369 libvlc_printerr( "Unable to call show %s: %s",
370 psz_name
, answer
->psz_value
);
372 else if ( answer
->child
)
373 { /* in case everything was requested */
374 if ( strcmp( psz_name
, "" ) == 0 )
376 psz_fmt
= "{\n\t%s\n}\n";
377 psz_delimiter
= "\n\t";
383 psz_delimiter
= "\n";
386 char *psz_tmp
= recurse_answer( answer
, psz_delimiter
, i_list
);
387 if( asprintf( &psz_response
, psz_fmt
, psz_tmp
) == -1 )
389 libvlc_printerr( "Out of memory" );
395 return( psz_response
);
399 int libvlc_vlm_add_broadcast( libvlc_instance_t
*p_instance
,
400 const char *psz_name
,
401 const char *psz_input
,
402 const char *psz_output
, int i_options
,
403 const char * const *ppsz_options
,
404 int b_enabled
, int b_loop
)
412 vlm_media_Init( &m
);
413 m
.psz_name
= strdup( psz_name
);
414 m
.b_enabled
= b_enabled
;
416 m
.broadcast
.b_loop
= b_loop
;
418 TAB_APPEND( m
.i_input
, m
.ppsz_input
, strdup(psz_input
) );
420 m
.psz_output
= strdup( psz_output
);
421 for( n
= 0; n
< i_options
; n
++ )
422 TAB_APPEND( m
.i_option
, m
.ppsz_option
, strdup(ppsz_options
[n
]) );
424 n
= vlm_Control( p_vlm
, VLM_ADD_MEDIA
, &m
, NULL
);
425 vlm_media_Clean( &m
);
428 libvlc_printerr( "Media %s creation failed", psz_name
);
434 int libvlc_vlm_add_vod( libvlc_instance_t
*p_instance
, const char *psz_name
,
435 const char *psz_input
, int i_options
,
436 const char * const *ppsz_options
, int b_enabled
,
437 const char *psz_mux
)
445 vlm_media_Init( &m
);
446 m
.psz_name
= strdup( psz_name
);
447 m
.b_enabled
= b_enabled
;
449 m
.vod
.psz_mux
= psz_mux
? strdup( psz_mux
) : NULL
;
451 TAB_APPEND( m
.i_input
, m
.ppsz_input
, strdup(psz_input
) );
452 for( n
= 0; n
< i_options
; n
++ )
453 TAB_APPEND( m
.i_option
, m
.ppsz_option
, strdup(ppsz_options
[n
]) );
455 n
= vlm_Control( p_vlm
, VLM_ADD_MEDIA
, &m
, NULL
);
456 vlm_media_Clean( &m
);
459 libvlc_printerr( "Media %s creation failed", psz_name
);
465 int libvlc_vlm_del_media( libvlc_instance_t
*p_instance
, const char *psz_name
)
472 if( vlm_Control( p_vlm
, VLM_GET_MEDIA_ID
, psz_name
, &id
) ||
473 vlm_Control( p_vlm
, VLM_DEL_MEDIA
, id
) )
475 libvlc_printerr( "Unable to delete %s", psz_name
);
481 static vlm_media_t
*get_media( libvlc_instance_t
*p_instance
,
482 vlm_t
**restrict pp_vlm
, const char *name
)
484 vlm_media_t
*p_media
;
488 VLM_RET(p_vlm
, NULL
);
489 if( vlm_Control( p_vlm
, VLM_GET_MEDIA_ID
, name
, &id
) ||
490 vlm_Control( p_vlm
, VLM_GET_MEDIA
, id
, &p_media
) )
496 #define VLM_CHANGE(psz_error, code ) do { \
498 vlm_media_t *p_media = get_media( p_instance, &p_vlm, psz_name ); \
499 if( p_media != NULL ) { \
501 if( vlm_Control( p_vlm, VLM_CHANGE_MEDIA, p_media ) ) \
503 vlm_media_Delete( p_media ); \
504 if( p_vlm != NULL ) \
507 libvlc_printerr( psz_error, psz_name ); \
511 int libvlc_vlm_set_enabled( libvlc_instance_t
*p_instance
,
512 const char *psz_name
, int b_enabled
)
514 #define VLM_CHANGE_CODE { p_media->b_enabled = b_enabled; }
515 VLM_CHANGE( "Unable to delete %s", VLM_CHANGE_CODE
);
516 #undef VLM_CHANGE_CODE
519 int libvlc_vlm_set_loop( libvlc_instance_t
*p_instance
, const char *psz_name
,
522 #define VLM_CHANGE_CODE { p_media->broadcast.b_loop = b_loop; }
523 VLM_CHANGE( "Unable to change %s loop property", VLM_CHANGE_CODE
);
524 #undef VLM_CHANGE_CODE
527 int libvlc_vlm_set_mux( libvlc_instance_t
*p_instance
, const char *psz_name
,
528 const char *psz_mux
)
530 #define VLM_CHANGE_CODE { if( p_media->b_vod ) { \
531 free( p_media->vod.psz_mux ); \
532 p_media->vod.psz_mux = psz_mux \
533 ? strdup( psz_mux ) : NULL; \
535 VLM_CHANGE( "Unable to change %s mux property", VLM_CHANGE_CODE
);
536 #undef VLM_CHANGE_CODE
539 int libvlc_vlm_set_output( libvlc_instance_t
*p_instance
,
540 const char *psz_name
, const char *psz_output
)
542 #define VLM_CHANGE_CODE { free( p_media->psz_output ); \
543 p_media->psz_output = strdup( psz_output ); }
544 VLM_CHANGE( "Unable to change %s output property", VLM_CHANGE_CODE
);
545 #undef VLM_CHANGE_CODE
548 int libvlc_vlm_set_input( libvlc_instance_t
*p_instance
,
549 const char *psz_name
, const char *psz_input
)
551 #define VLM_CHANGE_CODE { while( p_media->i_input > 0 ) \
552 free( p_media->ppsz_input[--p_media->i_input] );\
553 TAB_APPEND( p_media->i_input, p_media->ppsz_input, \
554 strdup(psz_input) ); }
555 VLM_CHANGE( "Unable to change %s input property", VLM_CHANGE_CODE
);
556 #undef VLM_CHANGE_CODE
559 int libvlc_vlm_add_input( libvlc_instance_t
*p_instance
,
560 const char *psz_name
, const char *psz_input
)
562 #define VLM_CHANGE_CODE { TAB_APPEND( p_media->i_input, p_media->ppsz_input, \
563 strdup(psz_input) ); }
564 VLM_CHANGE( "Unable to change %s input property", VLM_CHANGE_CODE
);
565 #undef VLM_CHANGE_CODE
568 int libvlc_vlm_change_media( libvlc_instance_t
*p_instance
,
569 const char *psz_name
, const char *psz_input
,
570 const char *psz_output
, int i_options
,
571 const char * const *ppsz_options
, int b_enabled
,
574 #define VLM_CHANGE_CODE { int n; \
575 p_media->b_enabled = b_enabled; \
576 p_media->broadcast.b_loop = b_loop; \
577 while( p_media->i_input > 0 ) \
578 free( p_media->ppsz_input[--p_media->i_input] ); \
580 TAB_APPEND( p_media->i_input, p_media->ppsz_input, strdup(psz_input) ); \
581 free( p_media->psz_output ); \
582 p_media->psz_output = psz_output ? strdup( psz_output ) : NULL; \
583 while( p_media->i_option > 0 ) \
584 free( p_media->ppsz_option[--p_media->i_option] ); \
585 for( n = 0; n < i_options; n++ ) \
586 TAB_APPEND( p_media->i_option, p_media->ppsz_option, \
587 strdup(ppsz_options[n]) ); \
589 VLM_CHANGE( "Unable to change %s properties", VLM_CHANGE_CODE
);
590 #undef VLM_CHANGE_CODE
593 int libvlc_vlm_play_media( libvlc_instance_t
*p_instance
,
594 const char *psz_name
)
601 if( vlm_Control( p_vlm
, VLM_GET_MEDIA_ID
, psz_name
, &id
) ||
602 vlm_Control( p_vlm
, VLM_START_MEDIA_BROADCAST_INSTANCE
, id
, NULL
, 0 ) )
604 libvlc_printerr( "Unable to play %s", psz_name
);
610 int libvlc_vlm_stop_media( libvlc_instance_t
*p_instance
,
611 const char *psz_name
)
618 if( vlm_Control( p_vlm
, VLM_GET_MEDIA_ID
, psz_name
, &id
) ||
619 vlm_Control( p_vlm
, VLM_STOP_MEDIA_INSTANCE
, id
, NULL
) )
621 libvlc_printerr( "Unable to stop %s", psz_name
);
627 int libvlc_vlm_pause_media( libvlc_instance_t
*p_instance
,
628 const char *psz_name
)
635 if( vlm_Control( p_vlm
, VLM_GET_MEDIA_ID
, psz_name
, &id
) ||
636 vlm_Control( p_vlm
, VLM_PAUSE_MEDIA_INSTANCE
, id
, NULL
) )
638 libvlc_printerr( "Unable to pause %s", psz_name
);
644 int libvlc_vlm_seek_media( libvlc_instance_t
*p_instance
,
645 const char *psz_name
, float f_percentage
)
652 if( vlm_Control( p_vlm
, VLM_GET_MEDIA_ID
, psz_name
, &id
) ||
653 vlm_Control( p_vlm
, VLM_SET_MEDIA_INSTANCE_POSITION
, id
, NULL
,
656 libvlc_printerr( "Unable to seek %s to %f%%", psz_name
, f_percentage
);
662 float libvlc_vlm_get_media_instance_position( libvlc_instance_t
*p_instance
,
663 const char *psz_name
,
666 vlm_media_instance_t
*p_mi
;
669 p_mi
= libvlc_vlm_get_media_instance( p_instance
, psz_name
, i_instance
);
672 result
= p_mi
->d_position
;
673 vlm_media_instance_Delete( p_mi
);
678 int libvlc_vlm_get_media_instance_time( libvlc_instance_t
*p_instance
,
679 const char *psz_name
, int i_instance
)
681 vlm_media_instance_t
*p_mi
;
684 p_mi
= libvlc_vlm_get_media_instance( p_instance
, psz_name
, i_instance
);
687 result
= p_mi
->i_time
;
688 vlm_media_instance_Delete( p_mi
);
693 int libvlc_vlm_get_media_instance_length( libvlc_instance_t
*p_instance
,
694 const char *psz_name
,
697 vlm_media_instance_t
*p_mi
;
700 p_mi
= libvlc_vlm_get_media_instance( p_instance
, psz_name
, i_instance
);
703 result
= p_mi
->i_length
;
704 vlm_media_instance_Delete( p_mi
);
709 int libvlc_vlm_get_media_instance_rate( libvlc_instance_t
*p_instance
,
710 const char *psz_name
, int i_instance
)
712 vlm_media_instance_t
*p_mi
;
715 p_mi
= libvlc_vlm_get_media_instance( p_instance
, psz_name
, i_instance
);
718 result
= p_mi
->i_rate
;
719 vlm_media_instance_Delete( p_mi
);
725 int libvlc_vlm_get_media_instance_title( libvlc_instance_t
*p_instance
,
726 const char *psz_name
, int i_instance
)
728 vlm_media_instance_t
*p_mi
;
730 p_mi
= libvlc_vlm_get_media_instance( p_instance
, psz_name
, i_instance
);
732 vlm_media_instance_Delete( p_mi
);
733 return p_mi
? 0 : -1;
736 int libvlc_vlm_get_media_instance_chapter( libvlc_instance_t
*p_instance
,
737 const char *psz_name
,
740 vlm_media_instance_t
*p_mi
;
742 p_mi
= libvlc_vlm_get_media_instance( p_instance
, psz_name
,
745 vlm_media_instance_Delete( p_mi
);
746 return p_mi
? 0 : -1;
749 int libvlc_vlm_get_media_instance_seekable( libvlc_instance_t
*p_instance
,
750 const char *psz_name
,
753 vlm_media_instance_t
*p_mi
;
755 p_mi
= libvlc_vlm_get_media_instance( p_instance
, psz_name
, i_instance
);
757 vlm_media_instance_Delete( p_mi
);
758 return p_mi
? 0 : -1;
762 libvlc_event_manager_t
*
763 libvlc_vlm_get_event_manager( libvlc_instance_t
*p_instance
)
766 VLM_RET( p_vlm
, NULL
);
767 return p_instance
->libvlc_vlm
.p_event_manager
;