]> git.sesse.net Git - vlc/commitdiff
. gestion de la souris sous X (essentiellement le bouton du milieu
authorSam Hocevar <sam@videolan.org>
Mon, 13 Mar 2000 21:32:31 +0000 (21:32 +0000)
committerSam Hocevar <sam@videolan.org>
Mon, 13 Mar 2000 21:32:31 +0000 (21:32 +0000)
  qui cache le pointeur, tr�s pratique quand on regarde un DVD)
 . rajout de 3 fichiers d'installation pour le package Debian
 . correction de "usefull" et "successfull" � une dizaine d'endroits dans
  le code parce que �a commen�ait � m'horripiler
 . erreur de syntaxe dans la page de man.
 . un peu plus de choses dans l'interface gnome, mais rien ne marche
  pour le moment.

13 files changed:
debian/postinst.debhelper [new file with mode: 0644]
debian/postrm.debhelper [new file with mode: 0644]
debian/prerm.debhelper [new file with mode: 0644]
debian/vlc.1
include/input.h
include/intf_msg.h
src/audio_decoder/audio_decoder_thread.c
src/generic_decoder/generic_decoder.c
src/input/input.c
src/spu_decoder/spu_decoder.c
src/video_decoder/video_decoder.c
src/video_output/video_output.c
src/video_parser/video_parser.c

diff --git a/debian/postinst.debhelper b/debian/postinst.debhelper
new file mode 100644 (file)
index 0000000..85114ee
--- /dev/null
@@ -0,0 +1,10 @@
+# Automatically added by dh_installdocs
+if [ "$1" = "configure" ]; then
+       if [ -d /usr/doc -a ! -e /usr/doc/vlc -a -d /usr/share/doc/vlc ]; then
+               ln -sf ../share/doc/vlc /usr/doc/vlc
+       fi
+fi
+# End automatically added section
+# Automatically added by dh_installmenu
+if test -x /usr/bin/update-menus ; then update-menus ; fi
+# End automatically added section
diff --git a/debian/postrm.debhelper b/debian/postrm.debhelper
new file mode 100644 (file)
index 0000000..0a2512a
--- /dev/null
@@ -0,0 +1,3 @@
+# Automatically added by dh_installmenu
+if test -x /usr/bin/update-menus ; then update-menus ; fi
+# End automatically added section
diff --git a/debian/prerm.debhelper b/debian/prerm.debhelper
new file mode 100644 (file)
index 0000000..83885bd
--- /dev/null
@@ -0,0 +1,5 @@
+# Automatically added by dh_installdocs
+if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L /usr/doc/vlc ]; then
+       rm -f /usr/doc/vlc
+fi
+# End automatically added section
index ac48799fc16578144c2058489b4089f046dbf8de..98022372bd51e05584f402dd57b242e568546c08 100644 (file)
@@ -26,7 +26,8 @@ This manual page documents briefly the
 .B vlc
 , a free MPEG2 player.
 .SH OPTIONS
-These programs follow the usual GNU command line syntax, with long
+.B vlc
+follows the usual GNU command line syntax, with long
 options starting with two dashes (`-').
 A summary of options is included below.
 .TP
@@ -101,7 +102,7 @@ also accepts a lot of parameters to customize its behaviour.
  vlc_vlan_port=<port>     vlan server port
 
 .SH SEE ALSO
-.BR vls (1),
+.BR vls (1), vlms (1)
 .br
 .SH AUTHOR
 This manual page was written by the VideoLAN Team <videolan@via.ecp.fr>,
index 7a2dadccf38925012bb8613b7e9e89417ec1ad0c..e18552a8865b6bdd9a3a20baf56d7a3d7bb0f8ea 100644 (file)
@@ -147,7 +147,7 @@ typedef struct es_descriptor_t
 #ifdef STATS
     /* Stats */
     count_t                 c_bytes;                     /* total bytes read */
-    count_t                 c_payload_bytes;/* total of payload usefull bytes */
+    count_t                 c_payload_bytes;/* total of payload useful bytes */
     count_t                 c_packets;                 /* total packets read */
     count_t                 c_invalid_packets;       /* invalid packets read */
     /* XXX?? ... other stats */
index 9f5ede2d625c7d5336ff9d2da8331c50db67ac50..bbd21fd7e8d466363482ed1ac68fb561cc03c229 100644 (file)
@@ -57,7 +57,7 @@ void    _intf_DbgMsgImm     ( char *psz_file, char *psz_function, int i_line,
  * intf_FlushMsg macro and function
  *****************************************************************************
  * intf_FlushMsg is a function which flushs message queue and print all messages
- * remaining. It is only usefull if INTF_MSG_QUEUE is defined. In this case, it
+ * remaining. It is only useful if INTF_MSG_QUEUE is defined. In this case, it
  * is really a function. In the other case, it is a macro doing nothing.
  *****************************************************************************/
 #ifdef INTF_MSG_QUEUE
index f9475cabaa206f46321c3eac4f976846f680431e..36eb9a3c02873538b03b40435b22cd1451e69e85 100644 (file)
@@ -316,7 +316,7 @@ static void ErrorThread (adec_thread_t *p_adec)
 /*****************************************************************************
  * EndThread : audio decoder thread destruction
  *****************************************************************************
- * This function is called when the thread ends after a sucessfull
+ * This function is called when the thread ends after a sucessful
  * initialization.
  *****************************************************************************/
 static void EndThread (adec_thread_t *p_adec)
index 32e7a2d14a2a1b8d084857707bb9fb0873b86632..3732b1b98bbf70dcfbab8a52a40acad772aa9176 100644 (file)
@@ -345,7 +345,7 @@ static void ErrorThread( gdec_thread_t *p_gdec )
 /*****************************************************************************
  * EndThread: thread destruction
  *****************************************************************************
- * This function is called when the thread ends after a sucessfull
+ * This function is called when the thread ends after a sucessful
  * initialization.
  *****************************************************************************/
 static void EndThread( gdec_thread_t *p_gdec )
@@ -386,7 +386,7 @@ static void IdentifyPES( gdec_thread_t *p_gdec, pes_packet_t *p_pes, int i_strea
     case INPUT_METHOD_TS_UCAST:
     case INPUT_METHOD_TS_BCAST:
     case INPUT_METHOD_TS_VLAN_BCAST:
-        /* XXX?? since PID is extracted by demux, it could be usefull to store it
+        /* XXX?? since PID is extracted by demux, it could be useful to store it
          * in a readable place, i.e. the TS packet descriptor, rather than to
          * re-extract it now */
         i_id = U16_AT(&p_pes->p_first_ts->buffer[1]) & 0x1fff;
@@ -440,7 +440,7 @@ static void IdentifyPES( gdec_thread_t *p_gdec, pes_packet_t *p_pes, int i_strea
  * PrintPES: print informations about a PES packet
  *****************************************************************************
  * This function will print information about a received PES packet. It is
- * probably usefull only for debugging purposes, or before demultiplexing a
+ * probably useful only for debugging purposes, or before demultiplexing a
  * stream. It has two different formats, depending of the presence of the DEBUG
  * symbol.
  *****************************************************************************/
index 7a6c09cc630f3b64ff3be610fda6910a26769453..41accfb4f39d9089dc06f32d9671207dec51d0d9 100644 (file)
@@ -942,7 +942,7 @@ static __inline__ void input_DemuxPES( input_thread_t *p_input,
                 {
                   /* The payload of the PES packet is shorter than the 14 bytes
                      we would read. This means that high packet lost occured
-                     so the PES won't be usefull for any decoder. Moreover,
+                     so the PES won't be useful for any decoder. Moreover,
                      this should never happen so we can trash the packet and
                      exit roughly without regrets */
                   intf_DbgMsg("PES packet too short: trashed\n");
index e348aaf65f87e6e27a2efb046c57ff054f6e6e9d..19e8fdfc8849e0268cb7760ee9b09ab9d9357fa4 100644 (file)
@@ -250,7 +250,7 @@ static void ErrorThread( spudec_thread_t *p_spudec )
 /*****************************************************************************
  * EndThread: thread destruction
  *****************************************************************************
- * This function is called when the thread ends after a sucessfull
+ * This function is called when the thread ends after a sucessful
  * initialization.
  *****************************************************************************/
 static void EndThread( spudec_thread_t *p_spudec )
index a8406951573e2bebafac029e71724e0a287f8d06..1a4e4a7ba0c18bc8fbd57bac497284571c868cb5 100644 (file)
@@ -210,7 +210,7 @@ static void ErrorThread( vdec_thread_t *p_vdec )
 /*****************************************************************************
  * EndThread: thread destruction
  *****************************************************************************
- * This function is called when the thread ends after a sucessfull
+ * This function is called when the thread ends after a sucessful
  * initialization.
  *****************************************************************************/
 static void EndThread( vdec_thread_t *p_vdec )
index e890f9d4b61bc3d8db710417827238cfef550a8a..dc27549ca21bedadd89273ad51bea4a4cfb82fe7 100644 (file)
@@ -1214,7 +1214,7 @@ static void ErrorThread( vout_thread_t *p_vout )
 /*****************************************************************************
  * EndThread: thread destruction
  *****************************************************************************
- * This function is called when the thread ends after a sucessfull
+ * This function is called when the thread ends after a sucessful
  * initialization. It frees all ressources allocated by InitThread.
  *****************************************************************************/
 static void EndThread( vout_thread_t *p_vout )
index 8fafc20513533a451232bb9d32600977d8b1151b..c7236d951df27a7fec6e5509910b21b4e4659a04 100644 (file)
@@ -427,7 +427,7 @@ static void ErrorThread( vpar_thread_t *p_vpar )
 /*****************************************************************************
  * EndThread: thread destruction
  *****************************************************************************
- * This function is called when the thread ends after a sucessfull
+ * This function is called when the thread ends after a sucessful
  * initialization.
  *****************************************************************************/
 static void EndThread( vpar_thread_t *p_vpar )