]> git.sesse.net Git - vlc/blob - include/vlc_control.h
bebcdeb6cc9408d5de774e58d7988bc5eb15ccb4
[vlc] / include / vlc_control.h
1 /*****************************************************************************
2  * control.h: private header for mediacontrol
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id: vlc.h 10101 2005-03-02 16:47:31Z robux4 $
6  *
7  * Authors: Olivier Aubert <olivier.aubert@liris.univ-lyon1.fr>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef _VLC_PRIVATE_CONTROL_H
25 #define _VLC_PRIVATE_CONTROL_H 1
26
27 # ifdef __cplusplus
28 extern "C" {
29 # endif
30
31 #include <vlc/vlc.h>
32 #include "vlc/control_structures.h"
33
34
35 typedef struct {
36   vlc_object_t  *p_vlc;
37   playlist_t    *p_playlist;
38   intf_thread_t *p_intf;
39   int           vlc_object_id;
40 } mediacontrol_Instance;
41
42 vlc_int64_t mediacontrol_unit_convert( input_thread_t *p_input,
43                                        mediacontrol_PositionKey from,
44                                        mediacontrol_PositionKey to,
45                                        vlc_int64_t value );
46 vlc_int64_t mediacontrol_position2microsecond(
47                                      input_thread_t *p_input,
48                                      const mediacontrol_Position *pos );
49
50
51 # ifdef __cplusplus
52 }
53 # endif
54
55 #endif