1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-27 04:21:53 +02:00

. 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.
This commit is contained in:
Sam Hocevar 2000-03-13 21:32:31 +00:00
parent 68bcfdfc7a
commit 704d5d6927
13 changed files with 32 additions and 13 deletions

10
debian/postinst.debhelper vendored Normal file
View File

@ -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

3
debian/postrm.debhelper vendored Normal file
View File

@ -0,0 +1,3 @@
# Automatically added by dh_installmenu
if test -x /usr/bin/update-menus ; then update-menus ; fi
# End automatically added section

5
debian/prerm.debhelper vendored Normal file
View File

@ -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

5
debian/vlc.1 vendored
View 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>,

View 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 */

View 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

View 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)

View 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.
*****************************************************************************/

View 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");

View 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 )

View 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 )

View 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 )

View 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 )