]> git.sesse.net Git - vlc/blobdiff - include/stream_control.h
* Borrowed config.guess and config.sub from SDL [MacOS X port] ;
[vlc] / include / stream_control.h
index 92f76bf4f61b131dfcf468a3cfdd58ddcf69fbac..ab4fcdfbfa894b738bbeb57838bb3bbe48ec78cc 100644 (file)
@@ -1,3 +1,28 @@
+/*****************************************************************************
+ * stream_control.h: structures of the input exported verywhere
+ * This header provides a structure so that everybody knows the state
+ * of the reading.
+ *****************************************************************************
+ * Copyright (C) 1999, 2000 VideoLAN
+ * $Id: stream_control.h,v 1.5 2001/02/08 13:52:34 massiot Exp $
+ *
+ * Authors: Christophe Massiot <massiot@via.ecp.fr>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
+ *****************************************************************************/
+
 /* Structures exported to interface, input and decoders */
 
 /*****************************************************************************
@@ -12,17 +37,21 @@ typedef struct stream_ctrl_s
     int                     i_status;
     /* if i_status == FORWARD_S or BACKWARD_S */
     int                     i_rate;
-    s64                     i_ref_sysdate;
-    s64                     i_ref_clock;
 
     boolean_t               b_mute;
     boolean_t               b_bw;                           /* black & white */
 } stream_ctrl_t;
 
 /* Possible status : */
-#define PLAYING_S           0
-#define PAUSE_S             1
-#define FORWARD_S           2
-#define BACKWARD_S          3
+#define UNDEF_S             0
+#define PLAYING_S           1
+#define PAUSE_S             2
+#define FORWARD_S           3
+#define BACKWARD_S          4
+#define REWIND_S            5                /* Not supported for the moment */
+#define NOT_STARTED_S       10
+#define START_S             11
 
 #define DEFAULT_RATE        1000
+#define MINIMAL_RATE        31              /* Up to 32/1 */
+#define MAXIMAL_RATE        8000            /* Up to 1/8 */