]> git.sesse.net Git - vlc/blob - src/control/mediacontrol_internal.h
A bit of headers cleanup
[vlc] / src / control / mediacontrol_internal.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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef _VLC_MEDIACONTROL_INTERNAL_H
25 #define _VLC_MEDIACONTROL_INTERNAL_H 1
26
27 # ifdef __cplusplus
28 extern "C" {
29 # endif
30
31 #include <vlc/vlc.h>
32 #include <vlc/mediacontrol_structures.h>
33 #include "libvlc_internal.h"
34 #include <vlc/libvlc.h>
35
36 struct mediacontrol_Instance {
37     struct libvlc_instance_t * p_instance;
38     playlist_t    *p_playlist;
39 };
40
41 vlc_int64_t mediacontrol_unit_convert( input_thread_t *p_input,
42                                        mediacontrol_PositionKey from,
43                                        mediacontrol_PositionKey to,
44                                        vlc_int64_t value );
45 vlc_int64_t mediacontrol_position2microsecond(
46     input_thread_t *p_input,
47     const mediacontrol_Position *pos );
48
49 #define RAISE( c, m )  exception->code = c; \
50                        exception->message = strdup(m);
51
52 #define RAISE_NULL( c, m ) { RAISE( c, m ); return NULL; }
53 #define RAISE_VOID( c, m ) { RAISE( c, m ); return; }
54
55 #define HANDLE_LIBVLC_EXCEPTION_VOID( e )  if( libvlc_exception_raised( e ) ) { \
56         RAISE( mediacontrol_InternalException, libvlc_exception_get_message( e )); \
57         libvlc_exception_clear( e ); \
58         return; }
59
60 #define HANDLE_LIBVLC_EXCEPTION_NULL( e )  if( libvlc_exception_raised( e ) ) {         \
61         RAISE( mediacontrol_InternalException, libvlc_exception_get_message( e )); \
62         libvlc_exception_clear( e ); \
63         return NULL; }
64
65 #define HANDLE_LIBVLC_EXCEPTION_ZERO( e )  if( libvlc_exception_raised( e ) ) { \
66         RAISE( mediacontrol_InternalException, libvlc_exception_get_message( e )); \
67         libvlc_exception_clear( e ); \
68         return 0; }
69
70
71 # ifdef __cplusplus
72 }
73 # endif
74
75 #endif