]> git.sesse.net Git - vlc/blob - include/stream_control.h
The BeOS port seems to work again.
[vlc] / include / stream_control.h
1 /*****************************************************************************
2  * stream_control.h: structures of the input exported verywhere
3  * This header provides a structure so that everybody knows the state
4  * of the reading.
5  *****************************************************************************
6  * Copyright (C) 1999, 2000 VideoLAN
7  * $Id: stream_control.h,v 1.5 2001/02/08 13:52:34 massiot Exp $
8  *
9  * Authors: Christophe Massiot <massiot@via.ecp.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /* Structures exported to interface, input and decoders */
27
28 /*****************************************************************************
29  * stream_ctrl_t
30  *****************************************************************************
31  * Describe the state of a program stream.
32  *****************************************************************************/
33 typedef struct stream_ctrl_s
34 {
35     vlc_mutex_t             control_lock;
36
37     int                     i_status;
38     /* if i_status == FORWARD_S or BACKWARD_S */
39     int                     i_rate;
40
41     boolean_t               b_mute;
42     boolean_t               b_bw;                           /* black & white */
43 } stream_ctrl_t;
44
45 /* Possible status : */
46 #define UNDEF_S             0
47 #define PLAYING_S           1
48 #define PAUSE_S             2
49 #define FORWARD_S           3
50 #define BACKWARD_S          4
51 #define REWIND_S            5                /* Not supported for the moment */
52 #define NOT_STARTED_S       10
53 #define START_S             11
54
55 #define DEFAULT_RATE        1000
56 #define MINIMAL_RATE        31              /* Up to 32/1 */
57 #define MAXIMAL_RATE        8000            /* Up to 1/8 */