]> git.sesse.net Git - vlc/commitdiff
* modules/control/joystick.c
authorClément Stenac <zorglub@videolan.org>
Thu, 31 Jul 2003 08:18:30 +0000 (08:18 +0000)
committerClément Stenac <zorglub@videolan.org>
Thu, 31 Jul 2003 08:18:30 +0000 (08:18 +0000)
* Allow the user to remap the actions.
* Improved the strings (please check)
* Prevent 0 seconds seeks

* share/http/*.html
* partial HTML validation fixes
* Improved the look

* src/stream_output/announce.c
* minor fixes (thanks sam)

modules/control/joystick.c
share/http/admin/browse.html
share/http/admin/index.html
share/http/index.html
src/stream_output/announce.c

index 65d6464f5d1696b942918d032d90ac61a9be9a74..137ea00113659378815e21f4070e2d6cdc05bfbe 100644 (file)
@@ -2,7 +2,7 @@
  * joystick.c: control vlc with a joystick
  *****************************************************************************
  * Copyright (C) 2002 VideoLAN
- * $Id: joystick.c,v 1.1 2003/07/20 08:30:41 zorglub Exp $
+ * $Id: joystick.c,v 1.2 2003/07/31 08:18:30 zorglub Exp $
  *
  * Authors: Clément Stenac <zorglub@via.ecp.fr>
  *
 
 /* Default values for parameters */
 #define DEFAULT_MAX_SEEK        10 /* seconds */
-#define DEFAULT_REPEAT          100000
-#define DEFAULT_WAIT            500000
+#define DEFAULT_REPEAT          100
+#define DEFAULT_WAIT            500
 #define DEFAULT_DEVICE          "/dev/input/js0"
 #define DEFAULT_THRESHOLD       12000  /* 0 -> 32767 */
 
-/* Actions
+#define DEFAULT_MAPPING \
+    "{axis-0-up=forward,axis-0-down=back," \
+    "axis-1-up=next,axis-1-down=prev," \
+    "butt-1-down=play,butt-2-down=fullscreen}"
+
+/* Default Actions (used if there are missing actions in the default
  * Available actions are: Next,Prev, Forward,Back,Play,Fullscreen,dummy */
 #define AXE_0_UP_ACTION         Forward
 #define AXE_0_DOWN_ACTION       Back
@@ -107,21 +112,22 @@ struct intf_sys_t
  * Local prototypes.
  *****************************************************************************/
 
-int  Open   ( vlc_object_t * );
-void Close  ( vlc_object_t * );
-static int  Init        ( intf_thread_t *p_intf );
-int handle_event        ( intf_thread_t *p_intf, struct js_event event);
+static int  Open   ( vlc_object_t * );
+static void Close  ( vlc_object_t * );
+static int  Init   ( intf_thread_t *p_intf );
+
+static int handle_event   ( intf_thread_t *p_intf, struct js_event event );
 
 
 /* Actions */
-int Next        (intf_thread_t *p_intf);
-int Prev        (intf_thread_t *p_intf);
-int Back        (intf_thread_t *p_intf);
-int Forward     (intf_thread_t *p_intf);
-int Play        (intf_thread_t *p_intf);
-int Fullscreen  (intf_thread_t *p_intf);
+static int Next        (intf_thread_t *p_intf);
+static int Prev        (intf_thread_t *p_intf);
+static int Back        (intf_thread_t *p_intf);
+static int Forward     (intf_thread_t *p_intf);
+static int Play        (intf_thread_t *p_intf);
+static int Fullscreen  (intf_thread_t *p_intf);
 
-int dummy       (intf_thread_t *p_intf);
+static int dummy       (intf_thread_t *p_intf);
 
 /* Exported functions */
 static void Run       ( intf_thread_t *p_intf );
@@ -131,31 +137,34 @@ static void Run       ( intf_thread_t *p_intf );
  *****************************************************************************/
 #define THRESHOLD_TEXT N_( "Motion threshold" )
 #define THRESHOLD_LONGTEXT N_( \
-    "the amount of joystick movement required for a movement to be" \
-    "recorded" )
+    "The amount of joystick movement required for a movement to be " \
+    "recorded (0->32767)" )
 
 #define DEVICE_TEXT N_( "Joystick device" )
 #define DEVICE_LONGTEXT N_( \
-    "the device for the joystick (usually /dev/jsX or /dev/input/jsX" \
-    "with X the number of the joystick" )
+    "The joystick device (usually /dev/js0 or /dev/input/js0)")
 
 #define REPEAT_TEXT N_( "Repeat time" )
 #define REPEAT_LONGTEXT N_( \
-    "the time waited before the action is repeated if it is still trigered" \
-    "in miscroseconds" )
+    "The time waited before the action is repeated if it is still trigered, " \
+    "in milliseconds" )
 
-#define WAIT_TEXT N_( "Wait before repeat time")
+#define WAIT_TEXT N_( "Wait time")
 #define WAIT_LONGTEXT N_(\
-   " the time waited before the repeat starts, in microseconds")
+   "The time waited before the repeat starts, in milliseconds ")
 
 #define SEEK_TEXT N_( "Max seek interval")
 #define SEEK_LONGTEXT N_(\
-   " the number of seconds that will be seeked if the axis "\
-   "is pushed at its maximum" )
+   "The maximum number of seconds that will be seeked at a time." )
+
+#define MAP_TEXT N_( "Action mapping")
+#define MAP_LONGTEXT N_(\
+   "Allows you to remap the actions. For details," \
+   " please have a look at http://wiki.videolan.org/index.php/Joystick" ) 
 
 vlc_module_begin();
     add_category_hint( N_( "Joystick" ), NULL, VLC_FALSE );
-    add_integer( "motion-threshold", 15000, NULL, 
+    add_integer( "motion-threshold", DEFAULT_THRESHOLD , NULL, 
                      THRESHOLD_TEXT, THRESHOLD_LONGTEXT, VLC_TRUE );
     add_string( "joystick-device", DEFAULT_DEVICE , NULL, 
                      DEVICE_TEXT, DEVICE_LONGTEXT, VLC_TRUE );
@@ -165,15 +174,17 @@ vlc_module_begin();
                      WAIT_TEXT, WAIT_LONGTEXT, VLC_TRUE );
     add_integer ("joystick-max-seek",DEFAULT_MAX_SEEK,NULL,
                      SEEK_TEXT, SEEK_LONGTEXT, VLC_TRUE );
+    add_string("joystick-mapping",DEFAULT_MAPPING,NULL,
+                    MAP_TEXT,MAP_LONGTEXT, VLC_TRUE );
     set_description( _("joystick control interface") );
     set_capability( "interface", 0 );
     set_callbacks( Open, Close );
 vlc_module_end();
 
 /*****************************************************************************
- * OpenIntf: initialize interface
+ * Open: initialize interface
  *****************************************************************************/
-int Open ( vlc_object_t *p_this )
+static int Open ( vlc_object_t *p_this )
 {
     intf_thread_t *p_intf = (intf_thread_t *)p_this;
 
@@ -191,9 +202,9 @@ int Open ( vlc_object_t *p_this )
 }
         
 /*****************************************************************************
- * CloseIntf: destroy the interface
+ * Close: destroy the interface
  *****************************************************************************/
-void Close ( vlc_object_t *p_this )
+static void Close ( vlc_object_t *p_this )
 {
     intf_thread_t *p_intf = (intf_thread_t *)p_this;
 
@@ -289,6 +300,8 @@ static void Run( intf_thread_t *p_intf )
 static int Init( intf_thread_t * p_intf )
 {
     char *psz_device;
+    char *psz_parse;
+    char *psz_eof;  /* end of field */
     
     if( !p_intf->b_die )
     {
@@ -308,10 +321,10 @@ static int Init( intf_thread_t * p_intf )
             return -1;
         }
                    
-        p_intf->p_sys->i_repeat =
+        p_intf->p_sys->i_repeat = 1000*
                         config_GetInt( p_intf, "joystick-repeat");
 
-        p_intf->p_sys->i_wait =
+        p_intf->p_sys->i_wait = 1000*
                         config_GetInt( p_intf, "joystick-wait");
         
         p_intf->p_sys->i_threshold = 
@@ -324,21 +337,80 @@ static int Init( intf_thread_t * p_intf )
         p_intf->p_sys->i_maxseek = 
                         config_GetInt( p_intf, "joystick-max-seek" );
 
-        p_intf->p_sys->axes[0].pf_actup   = AXE_0_UP_ACTION;
-        p_intf->p_sys->axes[0].pf_actdown = AXE_0_DOWN_ACTION;
-        p_intf->p_sys->axes[0].b_trigered = VLC_FALSE;
-        p_intf->p_sys->axes[0].l_time     = 0;
-        
-        p_intf->p_sys->axes[1].pf_actup   = AXE_1_UP_ACTION;
-        p_intf->p_sys->axes[1].pf_actdown = AXE_1_DOWN_ACTION;
-        p_intf->p_sys->axes[1].b_trigered = VLC_FALSE;
-        p_intf->p_sys->axes[1].l_time     = 0;
+
+        psz_parse = config_GetPsz( p_intf, "joystick-mapping" ) ;
+
+        if ( ! psz_parse) 
+        {
+            msg_Warn (p_intf,"Invalid mapping. Aborting" );
+            return -1;
+        }
+        if( !strlen( psz_parse ) )
+        {
+            msg_Warn( p_intf, "Invalid mapping. Aborting" );
+            return -1;
+        }
         
+        p_intf->p_sys->axes[0].pf_actup  = AXE_0_UP_ACTION;
+        p_intf->p_sys->axes[0].pf_actdown  = AXE_0_DOWN_ACTION;
+        p_intf->p_sys->axes[1].pf_actup  = AXE_1_UP_ACTION;
+        p_intf->p_sys->axes[1].pf_actdown  = AXE_1_DOWN_ACTION;
+
         p_intf->p_sys->buttons[0].pf_actdown = BUTTON_1_PRESS_ACTION;
         p_intf->p_sys->buttons[0].pf_actup   = BUTTON_1_RELEASE_ACTION;
         p_intf->p_sys->buttons[1].pf_actdown = BUTTON_2_PRESS_ACTION;
         p_intf->p_sys->buttons[1].pf_actup   = BUTTON_2_RELEASE_ACTION;
         
+/* Macro to parse the command line */
+#define PARSE(name,function)                                                  \
+    if(!strncmp( psz_parse , name , strlen( name ) ) )                        \
+    {                                                                         \
+        psz_parse += strlen( name );                                          \
+        psz_eof = strchr( psz_parse , ',' );                                  \
+        if( !psz_eof)                                                         \
+            psz_eof = strchr( psz_parse, '}' );                               \
+        if( !psz_eof)                                                         \
+            psz_eof = psz_parse + strlen(psz_parse);                          \
+        if( psz_eof )                                                         \
+        {                                                                     \
+            *psz_eof = '\0' ;                                                 \
+        }                                                                     \
+        msg_Dbg(p_intf,"%s -> %s", name,psz_parse) ;                          \
+        if(!strcasecmp( psz_parse , "play" ) ) function = Play;               \
+        if(!strcasecmp( psz_parse , "next" ) ) function = Next;               \
+        if(!strcasecmp( psz_parse , "prev" ) ) function = Prev;               \
+        if(!strcasecmp( psz_parse , "fullscreen" ) ) function = Fullscreen;   \
+        if(!strcasecmp( psz_parse , "forward" ) ) function = Forward;         \
+        if(!strcasecmp( psz_parse , "back" ) ) function = Back;               \
+        psz_parse = psz_eof;                                                  \
+        psz_parse ++;                                                         \
+        continue;                                                             \
+    }                                                                         \
+        while(1)
+        {
+            PARSE("axis-0-up="   ,p_intf->p_sys->axes[0].pf_actup      );
+            PARSE("axis-0-down=" ,p_intf->p_sys->axes[0].pf_actdown    );
+            PARSE("axis-1-up="   ,p_intf->p_sys->axes[1].pf_actup      );
+            PARSE("axis-1-down=" ,p_intf->p_sys->axes[1].pf_actdown    );
+
+            PARSE("butt-1-up="   ,p_intf->p_sys->buttons[0].pf_actup   );
+            PARSE("butt-1-down=" ,p_intf->p_sys->buttons[0].pf_actdown );
+            PARSE("butt-2-up="   ,p_intf->p_sys->buttons[1].pf_actup   );
+            PARSE("butt-2-down=" ,p_intf->p_sys->buttons[1].pf_actdown );
+            
+            if( *psz_parse )
+                psz_parse++;
+            else
+                break;
+         }
+
+        p_intf->p_sys->axes[0].b_trigered = VLC_FALSE;
+        p_intf->p_sys->axes[0].l_time     = 0;
+
+        p_intf->p_sys->axes[1].b_trigered = VLC_FALSE;
+        p_intf->p_sys->axes[1].l_time     = 0;
+        
         vlc_mutex_unlock( &p_intf->change_lock );
 
         return 0;
@@ -352,7 +424,7 @@ static int Init( intf_thread_t * p_intf )
 /*****************************************************************************
  * handle_event : parse a joystick event and takes the appropriate action    *
  *****************************************************************************/
-int handle_event ( intf_thread_t *p_intf, struct js_event event)
+static int handle_event ( intf_thread_t *p_intf, struct js_event event)
 {
     unsigned int i_axe;
       
@@ -363,7 +435,7 @@ int handle_event ( intf_thread_t *p_intf, struct js_event event)
         * triggering something */
         if( event.number == 2 && 
             /* Try to avoid Parkinson joysticks */
-            abs(event.value - p_intf->p_sys->axes[2].i_value) > 10 )
+            abs(event.value - p_intf->p_sys->axes[2].i_value) > 200 )
         {
             p_intf->p_sys->axes[2].i_value = event.value;
             msg_Dbg( p_intf , "Updating volume" );
@@ -396,9 +468,9 @@ int handle_event ( intf_thread_t *p_intf, struct js_event event)
         }    
 
         /* Special for seeking */
-        p_intf->p_sys->f_seconds = 
+        p_intf->p_sys->f_seconds = 1+
             (abs(event.value)-p_intf->p_sys->i_threshold)*
-            p_intf->p_sys->i_maxseek/
+            (p_intf->p_sys->i_maxseek - 1 )/
             (32767-p_intf->p_sys->i_threshold);
 
         
@@ -441,10 +513,11 @@ int handle_event ( intf_thread_t *p_intf, struct js_event event)
 }
 
 /****************************************************************************
- * The possible actions
+ * The actions
  ****************************************************************************/
 
-int Next( intf_thread_t *p_intf)
+/* Go to next item in the playlist */
+static int Next( intf_thread_t *p_intf)
 {
     playlist_t *p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
                                    FIND_ANYWHERE );
@@ -457,7 +530,8 @@ int Next( intf_thread_t *p_intf)
     return 0;
 }
 
-int Prev( intf_thread_t *p_intf)
+/* Go to previous item in the playlist */
+static int Prev( intf_thread_t *p_intf)
 {
     playlist_t *p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
                                    FIND_ANYWHERE );
@@ -470,29 +544,45 @@ int Prev( intf_thread_t *p_intf)
     return 0;
 }
 
-int Forward(intf_thread_t *p_intf)
+/* Seek forward */
+static int Forward(intf_thread_t *p_intf)
 {
-    msg_Dbg(p_intf,"Seeking %f seconds",p_intf->p_sys->f_seconds);
-    input_Seek( p_intf->p_sys->p_input, p_intf->p_sys->f_seconds, 
+    if(p_intf->p_sys->p_input)
+    {
+        msg_Dbg(p_intf,"Seeking %f seconds",p_intf->p_sys->f_seconds);
+        input_Seek( p_intf->p_sys->p_input, p_intf->p_sys->f_seconds, 
                     INPUT_SEEK_SECONDS | INPUT_SEEK_CUR);
     return 0;
+    }
+    return -1;
 }
 
-int Back(intf_thread_t *p_intf)
+/* Seek backwards */
+static int Back(intf_thread_t *p_intf)
 {
-    msg_Dbg(p_intf,"Seeking %f seconds",p_intf->p_sys->f_seconds);
-    input_Seek( p_intf->p_sys->p_input, -(p_intf->p_sys->f_seconds), 
+    if(p_intf->p_sys->p_input)
+    {
+        msg_Dbg(p_intf,"Seeking -%f seconds",p_intf->p_sys->f_seconds);
+        input_Seek( p_intf->p_sys->p_input, -(p_intf->p_sys->f_seconds), 
                     INPUT_SEEK_SECONDS | INPUT_SEEK_CUR );
-    return 0;
+        return 0;
+    }
+    return -1;
 }
 
-int Play(intf_thread_t *p_intf)
+/* Toggle Play/Pause */
+static int Play(intf_thread_t *p_intf)
 {
-    input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PAUSE ); 
-    return 0;
+    if(p_intf->p_sys->p_input)
+    {
+        input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PAUSE ); 
+        return 0;
+    }
+    return -1;
 }
 
-int Fullscreen(intf_thread_t *p_intf)
+/* Toggle fullscreen mode */
+static int Fullscreen(intf_thread_t *p_intf)
 {
     vout_thread_t * p_vout=vlc_object_find(p_intf,
                           VLC_OBJECT_VOUT, FIND_ANYWHERE );
@@ -505,7 +595,7 @@ int Fullscreen(intf_thread_t *p_intf)
 }
 
 /* dummy event. Use it if you don't wan't anything to happen */
-int dummy(intf_thread_t *p_intf)
+static int dummy(intf_thread_t *p_intf)
 {
    return 0;
 }
index 27d918dd3164817b35c3d32528e0eaa2c47a6459..bf5d46806a1eda94d3935884cf4bd164e2b1541d 100644 (file)
@@ -19,7 +19,7 @@
     </tr>
     <p>This page is disabled (Change _directory_ into directory to enable it but you should think about security)</p>
     <vlc id="rpn" param1="'dir' url_extract" />
-    <vlc id="foreach" param1="file" param2="_directory_" />
+    <vlc id="foreach" param1="file" param2="directory" />
         <tr>
             <td>
                 <vlc id="if" param1="file.type value 'directory' strcmp 0 =" />
index 5b418c8a73cfcf74993f974c6dcf911bf9324b1c..c0ac0b9dc5d1424babe795a3e04ebbc9e9f906c7 100644 (file)
@@ -1,6 +1,32 @@
-<html>
-<head>
-    <title>VLC Media Player - Admin</title>
+<!DOCTYPE html PUBLIC "-//W3C//DTD  XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml10/DTD/xhtml10transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+ <head>
+    <title>VLC Media Player</title>
+    <style>
+        body {font-family:Verdana, Arial, Sans Serif; }
+        h2 { text-align:center; }
+       td {border:1pt black solid;margin:0em; }
+        table.border {border:1pt black solid;}
+        div.section {background-color:#FFFFCC;
+             border:1pt black solid;
+             margin-bottom:2em;
+            padding:0.5em; }
+       div.section-ctr {background-color:#FFFFCC;
+             border:1pt black solid;
+             margin-bottom:2em;
+             padding:0.5em;
+            font-size:1.2em;
+            text-align:center; }
+
+        div.sectitle {  background-color:#FFFF99;
+                        color:#019;
+                        border:1pt black solid;
+                        width:20%;
+                        font-weight:bold;}
+        tr.ligne1 { background-color:#FFFFEE; }
+        tr.ligne2 { background-color:#FFFFAA; }
+    </style>
     <vlc id="if" param1="url_param"/>
         <meta http-equiv="refresh" content="0;URL=/admin/" />
     <vlc id="end" />
     <vlc id="set" param1="sout" param2="string" />
 </head>
 <body>
-    <h2>
-        <center>
-        <a href="/">VLC Media Player - Admin <vlc id="value" param1="version" /></a> <form method="get" action=""> <input type="submit" name="control" value="shutdown" /> </form>
-        </center>
-    </h2>
-    <hr/>
+    <h2><a href="/">VLC Media Player - Admin <vlc id="value" param1="version" /></a></h2>
 
-    <h3>Host list</h3>
-    <table border="1" cellspacing="0" >
+<div class="section-ctr">Shutdown VLC<br /> <form method="get" action=""> <input type="submit" name="control" value="shutdown" /> </form></div>
+
+  <div class="sectitle">Host list</div>
+  <div class="section">
+    <table class="border" >
     <tr>
         <th>Id</th><th>Host</th><th>IP</th><th>Port</th>
     </tr>
         </tr>
     <vlc id="end" />
     </table>
-
-    <h3>File list</h3>
+   </div>
+   <div class="sectitle">File list</div>
+   <div class="section">
     <table border="1" cellspacing="0" >
     <tr>
         <th>Id</th><th>URL</th><th>Mime</th><th>Protected</th><th>usage</th>
     </tr>
     <vlc id="foreach" param1="url" param2="urls" />
-        <vlc id="if" param1="url.stream 0 =" />
+        <vlc id="if" param1="url.stream 0 =" /> 
             <tr>
             <td><vlc id="value" param1="url.id" /></td>
             <td><vlc id="value" param1="url.url" /></td>
         <vlc id="end" />
     <vlc id="end" />
     </table>
+   </div>
+
 
-    <h3>Stream list</h3>
+   <div class="sectitle">Stream list</div>
+   <div class="section">
     <table border="1" cellspacing="0" >
     <tr>
         <th>Id</th><th>URL</th><th>Mime</th><th>Protected</th><th>usage</th>
         <vlc id="end" />
     <vlc id="end" />
     </table>
+   </div>
 
-    <h3>Connections list</h3>
+   <div class="sectitle">Connections list</div>
+   <div class="section">
     <table border="1" cellspacing="0" >
     <tr>
         <th>Id</th><th>ip</th><th>URL</th><th>Status</th><th>Actions</th>
         </tr>
     <vlc id="end" />
     </table>
-
+   </div>
     <hr />
     <p> <vlc id="value" param1="copyright" /> </p>
 </body>
index 9404a05410b2a2c015b460b5e10b2fd00fa3fe5b..b204422d017d7069a419af0eaf24326378d11f5e 100644 (file)
@@ -1,51 +1,84 @@
-<html>
-<head>
+<?xml version="1.0" encoding="iso-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD  XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml10/DTD/xhtml10transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+ <head>
     <title>VLC Media Player</title>
+    <style type="css">
+       body {font-family:Verdana, Arial, Sans Serif; }
+       h2 { text-align:center; }
+       table {width:100%;}
+       table.add {width:70%;}
+       div.section {background-color:#FFFFCC;
+            border:1pt black solid;
+            margin-bottom:2em; 
+            padding:0.5em;}
+       div.sectitle {  background-color:#FFFF99; 
+                       color:#019;
+                       border:1pt black solid;
+                       width:20%;
+                       font-weight:bold;}
+       tr.ligne1 { background-color:#FFFFEE; }
+       tr.ligne2 { background-color:#FFFFAA; }
+    </style>
     <vlc id="if" param1="url_param"/>
         <meta http-equiv="refresh" content="0;URL=/" />
     <vlc id="end" />
 
     <vlc id="control" param1="stop,pause,previous,next,add,sout,play" />
     <vlc id="set" param1="sout" param2="string" />
-</head>
-<body>
-    <h2><center><a href="http://www.videolan.org">VLC Media Player <vlc id="value" param1="version" /></a> (http interface)</center></h2>
-    <hr/>
-    <td>
-        <form method="get" action="">
-            <input type="submit" name="control" value="stop" />
-            <input type="submit" name="control" value="pause" />
-            <input type="submit" name="control" value="previous" />
-            <input type="submit" name="control" value="next" />
-            <a href="info.html">infos</a>
-        </form>
-    </td>
-    <br />
-    <td>
-        <form method="get" action="" enctype="text/plain" >
-            <input type="text" name="mrl" size="40" />
-            <input type="submit" name="control" value="add" />
-        </form>
-    </td>
-    <td>
-        <form method="get" action="" enctype="text/plain" >
-            <input type="text"   name="sout"    size="30" value="<vlc id="get" param1="sout" param2="string" />" />
-            <input type="submit" name="control" value="sout" />
-        </form>
-    </td>
-    <hr/>
-    <p>
+ </head>
+ <body>
+    <h2>
+     <a href="http://www.videolan.org">VLC Media Player <vlc id="value" param1="version" /></a> (http interface)</h2>
+    <div class="sectitle">Control VLC</div>
+    <div class="section">   
+     <form method="get" action="">
+      <table class="add">
+       <tr>
+        <td><input type="submit" name="control" value="stop" /></td>
+        <td><input type="submit" name="control" value="pause" /></td>
+        <td><input type="submit" name="control" value="previous" /></td>
+        <td><input type="submit" name="control" value="next" /></td>
+        <td><a href="admin/">Administration</a></td>
+       </tr>
+      </table>
+     </form>
+    </div>
+    <div class="sectitle">Add</div>
+    <div class="section">
+     <form method="get" action="" enctype="text/plain" >
+      <table class="add">
+       <tr>
+        <td>Add a MRL (Media Resource Locator) to the playlist</td>
+        <td><input type="text" name="mrl" size="40" /></td>
+        <td><input type="submit" name="control" value="add" /></td>
+       </tr>
+       <tr>
+        <td>Stream Output:</td>
+        <td><input type="text" name="sout" size="40" value="<vlc id="get" param1="sout" param2="string" />" /></td>
+        <td><input type="submit" name="control" value="sout" /></td>
+       </tr>
+      </table>
+     </form>
+    </div>
+  
+    <div class="sectitle">VLC Playlist</div>
+    <div class="section"> 
+    <table>
         <vlc id="foreach" param1="pl" param2="playlist" />
-            <vlc id="if" param1="pl.current" />
+          <tr class="<vlc id="if" param1="2 pl.index % 0 =" />ligne1<vlc id="else" />ligne2<vlc id="end" />">
+          <td>
+           <vlc id="if" param1="pl.current" />
                 <b>
             <vlc id="end" />
-            <a href=?control=play&item=<vlc id="value" param1="pl.index" />><vlc id="value" param1="pl.index" /> - <vlc id="value" param1="pl.name" /></a> <br />
-            <vlc id="if" param1="pl.current" />
+            <a href="?control=play&item=<vlc id="value" param1="pl.index" />"><vlc id="value" param1="pl.index" /> - <vlc id="value" param1="pl.name" /></a>            <vlc id="if" param1="pl.current" />
                 </b>
             <vlc id="end" />
-
+          </td></tr>
         <vlc id="end" />
-    </p>
+    </table>
+    </div>
     <hr/>
     <p> <vlc id="value" param1="copyright" /> </p>
 </body>
index 61ae3c512f8ac940469cbfbd5810982f3af1bf2b..c0beaa97d6110d4d58f6f34d9e2072cfaa8ddf14 100644 (file)
@@ -46,8 +46,6 @@
 #   include <sys/socket.h>
 #endif
 
-#undef DEBUG_BUFFER
-
 #include "announce.h"
 #include "network.h"
 
@@ -375,14 +373,7 @@ void sout_SAPSend( sout_instance_t *p_sout, sap_session_t * p_sap )
 
     if( i_size < 1024 ) /* We mustn't send packets larger than 1024B */
     {
-        if( p_sap->i_ip_version == 6 )
-        {
-            i_ret = send( p_sap->i_socket, psz_send, i_size, 0 );
-        }
-        else
-        {
-            i_ret = send( p_sap->i_socket, psz_send, i_size, 0 );
-        }
+        i_ret = send( p_sap->i_socket, psz_send, i_size, 0 );
     }
 
     if( i_ret <= 0 )