]> git.sesse.net Git - vlc/blob - include/vlc/mediacontrol_structures.h
mediacontrol: doxygen updates
[vlc] / include / vlc / mediacontrol_structures.h
1 /*****************************************************************************
2  * control_structures.h: global header for mediacontrol
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
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  * \defgroup mediacontrol_structures MediaControl Structures
25  * Data structures used in the MediaControl API.
26  *
27  * @{
28  */
29
30 #ifndef _VLC_CONTROL_STRUCTURES_H
31 #define _VLC_CONTROL_STRUCTURES_H 1
32
33 # ifdef __cplusplus
34 extern "C" {
35 # endif
36
37 /**
38  * A position may have different origins: 
39  *  - absolute counts from the movie start
40  *  - relative counts from the current position
41  *  - modulo counts from the current position and wraps at the end of the movie
42  */
43 typedef enum  {
44     mediacontrol_AbsolutePosition,
45     mediacontrol_RelativePosition,
46     mediacontrol_ModuloPosition
47 } mediacontrol_PositionOrigin;
48
49 /**
50  * Units available in mediacontrol Positions
51  *  - ByteCount number of bytes
52  *  - SampleCount number of frames
53  *  - MediaTime time in milliseconds
54  */
55 typedef enum {
56     mediacontrol_ByteCount,
57     mediacontrol_SampleCount,
58     mediacontrol_MediaTime
59 } mediacontrol_PositionKey;
60
61 /**
62  * MediaControl Position
63  */
64 typedef struct {
65     mediacontrol_PositionOrigin origin;
66     mediacontrol_PositionKey key;
67     long value;
68 } mediacontrol_Position;
69
70 # ifdef __cplusplus
71 }
72 # endif
73
74 #endif
75
76 /** @} */