Commit 704d5d69 authored by Sam Hocevar's avatar Sam Hocevar

. gestion de la souris sous X (essentiellement le bouton du milieu

  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.
parent 68bcfdfc
# 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
# Automatically added by dh_installmenu
if test -x /usr/bin/update-menus ; then update-menus ; fi
# End automatically added section
# 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
...@@ -26,7 +26,8 @@ This manual page documents briefly the ...@@ -26,7 +26,8 @@ This manual page documents briefly the
.B vlc .B vlc
, a free MPEG2 player. , a free MPEG2 player.
.SH OPTIONS .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 (`-'). options starting with two dashes (`-').
A summary of options is included below. A summary of options is included below.
.TP .TP
...@@ -101,7 +102,7 @@ also accepts a lot of parameters to customize its behaviour. ...@@ -101,7 +102,7 @@ also accepts a lot of parameters to customize its behaviour.
vlc_vlan_port=<port> vlan server port vlc_vlan_port=<port> vlan server port
.SH SEE ALSO .SH SEE ALSO
.BR vls (1), .BR vls (1), vlms (1)
.br .br
.SH AUTHOR .SH AUTHOR
This manual page was written by the VideoLAN Team <videolan@via.ecp.fr>, This manual page was written by the VideoLAN Team <videolan@via.ecp.fr>,
......
...@@ -147,7 +147,7 @@ typedef struct es_descriptor_t ...@@ -147,7 +147,7 @@ typedef struct es_descriptor_t
#ifdef STATS #ifdef STATS
/* Stats */ /* Stats */
count_t c_bytes; /* total bytes read */ 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_packets; /* total packets read */
count_t c_invalid_packets; /* invalid packets read */ count_t c_invalid_packets; /* invalid packets read */
/* XXX?? ... other stats */ /* XXX?? ... other stats */
......
...@@ -57,7 +57,7 @@ void _intf_DbgMsgImm ( char *psz_file, char *psz_function, int i_line, ...@@ -57,7 +57,7 @@ void _intf_DbgMsgImm ( char *psz_file, char *psz_function, int i_line,
* intf_FlushMsg macro and function * intf_FlushMsg macro and function
***************************************************************************** *****************************************************************************
* intf_FlushMsg is a function which flushs message queue and print all messages * 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. * is really a function. In the other case, it is a macro doing nothing.
*****************************************************************************/ *****************************************************************************/
#ifdef INTF_MSG_QUEUE #ifdef INTF_MSG_QUEUE
......
...@@ -316,7 +316,7 @@ static void ErrorThread (adec_thread_t *p_adec) ...@@ -316,7 +316,7 @@ static void ErrorThread (adec_thread_t *p_adec)
/***************************************************************************** /*****************************************************************************
* EndThread : audio decoder thread destruction * 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. * initialization.
*****************************************************************************/ *****************************************************************************/
static void EndThread (adec_thread_t *p_adec) static void EndThread (adec_thread_t *p_adec)
......
...@@ -345,7 +345,7 @@ static void ErrorThread( gdec_thread_t *p_gdec ) ...@@ -345,7 +345,7 @@ static void ErrorThread( gdec_thread_t *p_gdec )
/***************************************************************************** /*****************************************************************************
* EndThread: thread destruction * 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. * initialization.
*****************************************************************************/ *****************************************************************************/
static void EndThread( gdec_thread_t *p_gdec ) 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 ...@@ -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_UCAST:
case INPUT_METHOD_TS_BCAST: case INPUT_METHOD_TS_BCAST:
case INPUT_METHOD_TS_VLAN_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 * in a readable place, i.e. the TS packet descriptor, rather than to
* re-extract it now */ * re-extract it now */
i_id = U16_AT(&p_pes->p_first_ts->buffer[1]) & 0x1fff; 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 ...@@ -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 * PrintPES: print informations about a PES packet
***************************************************************************** *****************************************************************************
* This function will print information about a received PES packet. It is * 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 * stream. It has two different formats, depending of the presence of the DEBUG
* symbol. * symbol.
*****************************************************************************/ *****************************************************************************/
......
...@@ -942,7 +942,7 @@ static __inline__ void input_DemuxPES( input_thread_t *p_input, ...@@ -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 /* The payload of the PES packet is shorter than the 14 bytes
we would read. This means that high packet lost occured 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 this should never happen so we can trash the packet and
exit roughly without regrets */ exit roughly without regrets */
intf_DbgMsg("PES packet too short: trashed\n"); intf_DbgMsg("PES packet too short: trashed\n");
......
...@@ -250,7 +250,7 @@ static void ErrorThread( spudec_thread_t *p_spudec ) ...@@ -250,7 +250,7 @@ static void ErrorThread( spudec_thread_t *p_spudec )
/***************************************************************************** /*****************************************************************************
* EndThread: thread destruction * 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. * initialization.
*****************************************************************************/ *****************************************************************************/
static void EndThread( spudec_thread_t *p_spudec ) static void EndThread( spudec_thread_t *p_spudec )
......
...@@ -210,7 +210,7 @@ static void ErrorThread( vdec_thread_t *p_vdec ) ...@@ -210,7 +210,7 @@ static void ErrorThread( vdec_thread_t *p_vdec )
/***************************************************************************** /*****************************************************************************
* EndThread: thread destruction * 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. * initialization.
*****************************************************************************/ *****************************************************************************/
static void EndThread( vdec_thread_t *p_vdec ) static void EndThread( vdec_thread_t *p_vdec )
......
...@@ -1214,7 +1214,7 @@ static void ErrorThread( vout_thread_t *p_vout ) ...@@ -1214,7 +1214,7 @@ static void ErrorThread( vout_thread_t *p_vout )
/***************************************************************************** /*****************************************************************************
* EndThread: thread destruction * 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. * initialization. It frees all ressources allocated by InitThread.
*****************************************************************************/ *****************************************************************************/
static void EndThread( vout_thread_t *p_vout ) static void EndThread( vout_thread_t *p_vout )
......
...@@ -427,7 +427,7 @@ static void ErrorThread( vpar_thread_t *p_vpar ) ...@@ -427,7 +427,7 @@ static void ErrorThread( vpar_thread_t *p_vpar )
/***************************************************************************** /*****************************************************************************
* EndThread: thread destruction * 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. * initialization.
*****************************************************************************/ *****************************************************************************/
static void EndThread( vpar_thread_t *p_vpar ) static void EndThread( vpar_thread_t *p_vpar )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment