]> git.sesse.net Git - vlc/blob - lib/playlist.c
bluray: ARGB overlay support (BD-J)
[vlc] / lib / playlist.c
1 /*****************************************************************************
2  * playlist.c: libvlc new API playlist handling functions
3  *****************************************************************************
4  * Copyright (C) 2005 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
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.
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 Lesser General Public License for more details.
18  *
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  *****************************************************************************/
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include "libvlc_internal.h"
29 #include "../src/libvlc.h"
30
31 #include <vlc/libvlc_structures.h>
32 #include <vlc/libvlc.h>
33 #include <vlc/libvlc_media.h>
34 #include <vlc/libvlc_media_player.h>
35 #include <vlc/deprecated.h>
36
37 #include <vlc_playlist.h>
38
39 #include <assert.h>
40
41 void libvlc_playlist_play( libvlc_instance_t *p_instance, int i_id,
42                            int i_options, char **ppsz_options )
43 {
44     playlist_t *pl = pl_Get (p_instance->p_libvlc_int);
45     VLC_UNUSED(i_id); VLC_UNUSED(i_options); VLC_UNUSED(ppsz_options);
46
47     assert( pl );
48     if( !var_GetBool( pl, "playlist-autostart" )
49      || pl->items.i_size == 0 )
50         return;
51     playlist_Control( pl, PLAYLIST_PLAY, false );
52 }
53
54 int libvlc_add_intf( libvlc_instance_t *p_instance, const char *name )
55 {
56     pl_Get (p_instance->p_libvlc_int);
57
58     if( libvlc_InternalAddIntf( p_instance->p_libvlc_int, name ))
59     {
60         if( name != NULL )
61             libvlc_printerr("interface \"%s\" initialization failed", name );
62         else
63             libvlc_printerr("default interface initialization failed");
64         return -1;
65     }
66     return 0;
67 }