]> git.sesse.net Git - vlc/blob - include/stream_control.h
* ALL: changed "struct foo_s" into "struct foo_t" to make greppers happy.
[vlc] / include / stream_control.h
1 /*****************************************************************************
2  * stream_control.h: structures of the input exported everywhere
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.9 2002/07/20 18:01:41 sam 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 #ifndef _STREAM_CONTROL_H
27 #define _STREAM_CONTROL_H 1
28
29 /* Structures exported to interface, input and decoders */
30
31 /*****************************************************************************
32  * stream_ctrl_t
33  *****************************************************************************
34  * Describe the state of a program stream.
35  *****************************************************************************/
36 struct stream_ctrl_t
37 {
38     vlc_mutex_t             control_lock;
39
40     int                     i_status;
41     /* if i_status == FORWARD_S or BACKWARD_S */
42     int                     i_rate;
43
44     vlc_bool_t              b_mute;
45     vlc_bool_t              b_grayscale;           /* use color or grayscale */
46     int                     i_smp; /* number of symmetrical threads to launch
47                                     * to decode the video | 0 == disabled    */
48 };
49
50 /* Possible status : */
51 #define UNDEF_S             0
52 #define PLAYING_S           1
53 #define PAUSE_S             2
54 #define FORWARD_S           3
55 #define BACKWARD_S          4
56 #define REWIND_S            5                /* Not supported for the moment */
57 #define NOT_STARTED_S       10
58 #define START_S             11
59
60 #define DEFAULT_RATE        1000
61 #define MINIMAL_RATE        31              /* Up to 32/1 */
62 #define MAXIMAL_RATE        8000            /* Up to 1/8 */
63
64 #endif /* "stream_control.h" */