]> git.sesse.net Git - vlc/blob - include/stream_control.h
* ./plugins/mga/mga.c: removed the mgammx module and put the code in
[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.7 2002/01/07 02:12:29 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 /* 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_grayscale;           /* use color or grayscale */
43     int                     i_smp; /* number of symmetrical threads to launch
44                                     * to decode the video | 0 == disabled    */
45 } stream_ctrl_t;
46
47 /* Possible status : */
48 #define UNDEF_S             0
49 #define PLAYING_S           1
50 #define PAUSE_S             2
51 #define FORWARD_S           3
52 #define BACKWARD_S          4
53 #define REWIND_S            5                /* Not supported for the moment */
54 #define NOT_STARTED_S       10
55 #define START_S             11
56
57 #define DEFAULT_RATE        1000
58 #define MINIMAL_RATE        31              /* Up to 32/1 */
59 #define MAXIMAL_RATE        8000            /* Up to 1/8 */