Commit fdc455ad authored by Rémi Duraffort's avatar Rémi Duraffort

Fix some typos.

parent 2d268697
...@@ -89,21 +89,21 @@ VLC_PUBLIC_API const char *libvlc_errmsg (void); ...@@ -89,21 +89,21 @@ VLC_PUBLIC_API const char *libvlc_errmsg (void);
/** /**
* Clears the LibVLC error status for the current thread. This is optional. * Clears the LibVLC error status for the current thread. This is optional.
* By default, the error status is automatically overriden when a new error * By default, the error status is automatically overridden when a new error
* occurs, and destroyed when the thread exits. * occurs, and destroyed when the thread exits.
*/ */
VLC_PUBLIC_API void libvlc_clearerr (void); VLC_PUBLIC_API void libvlc_clearerr (void);
/** /**
* Sets the LibVLC error status and message for the current thread. * Sets the LibVLC error status and message for the current thread.
* Any previous error is overriden. * Any previous error is overridden.
* \return a nul terminated string in any case * \return a nul terminated string in any case
*/ */
const char *libvlc_vprinterr (const char *fmt, va_list ap); const char *libvlc_vprinterr (const char *fmt, va_list ap);
/** /**
* Sets the LibVLC error status and message for the current thread. * Sets the LibVLC error status and message for the current thread.
* Any previous error is overriden. * Any previous error is overridden.
* \return a nul terminated string in any case * \return a nul terminated string in any case
*/ */
const char *libvlc_printerr (const char *fmt, ...); const char *libvlc_printerr (const char *fmt, ...);
......
...@@ -338,7 +338,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -338,7 +338,7 @@ static int Open( vlc_object_t *p_this )
} }
/* Choose the IEC device for S/PDIF output: /* Choose the IEC device for S/PDIF output:
if the device is overriden by the user then it will be the one if the device is overridden by the user then it will be the one
otherwise we compute the default device based on the output format. */ otherwise we compute the default device based on the output format. */
char *psz_iec_device = NULL; char *psz_iec_device = NULL;
if( AOUT_FMT_NON_LINEAR( &p_aout->output.output ) ) if( AOUT_FMT_NON_LINEAR( &p_aout->output.output ) )
......
...@@ -281,7 +281,7 @@ static int Open( vlc_object_t * p_this ) ...@@ -281,7 +281,7 @@ static int Open( vlc_object_t * p_this )
p_demux->pf_control = Control; p_demux->pf_control = Control;
p_demux->pf_demux = Demux_Seekable; p_demux->pf_demux = Demux_Seekable;
/* For unseekable stream, automaticaly use Demux_UnSeekable */ /* For unseekable stream, automatically use Demux_UnSeekable */
if( !p_sys->b_seekable if( !p_sys->b_seekable
|| var_InheritBool( p_demux, "avi-interleaved" ) ) || var_InheritBool( p_demux, "avi-interleaved" ) )
{ {
......
...@@ -435,7 +435,7 @@ ...@@ -435,7 +435,7 @@
/* Only create the o_fullscreen_window if we are not in the middle of the zooming animation */ /* Only create the o_fullscreen_window if we are not in the middle of the zooming animation */
if (!o_fullscreen_window) if (!o_fullscreen_window)
{ {
/* We can't change the styleMask of an already created NSWindow, so we create an other window, and do eye catching stuff */ /* We can't change the styleMask of an already created NSWindow, so we create another window, and do eye catching stuff */
rect = [[o_view superview] convertRect: [o_view frame] toView: nil]; /* Convert to Window base coord */ rect = [[o_view superview] convertRect: [o_view frame] toView: nil]; /* Convert to Window base coord */
rect.origin.x += [self frame].origin.x; rect.origin.x += [self frame].origin.x;
......
...@@ -153,7 +153,7 @@ private: ...@@ -153,7 +153,7 @@ private:
/* Flags */ /* Flags */
bool b_notificationEnabled; /// Systray Notifications bool b_notificationEnabled; /// Systray Notifications
bool b_autoresize; ///< persistent resizeable window bool b_autoresize; ///< persistent resizable window
bool b_videoEmbedded; ///< Want an external Video Window bool b_videoEmbedded; ///< Want an external Video Window
bool b_videoFullScreen; ///< --fullscreen bool b_videoFullScreen; ///< --fullscreen
bool b_videoOnTop; ///< --video-on-top bool b_videoOnTop; ///< --video-on-top
......
...@@ -42,7 +42,7 @@ class QVLCTools ...@@ -42,7 +42,7 @@ class QVLCTools
/* /*
use this function to save a widgets screen position use this function to save a widgets screen position
only for windows / dialogs which are floating, if a only for windows / dialogs which are floating, if a
window is docked into an other - don't all this function window is docked into another - don't all this function
or it may write garbage to position info! or it may write garbage to position info!
*/ */
static void saveWidgetPosition( QSettings *settings, QWidget *widget) static void saveWidgetPosition( QSettings *settings, QWidget *widget)
......
...@@ -82,7 +82,7 @@ static void setFontAttibutes( char *psz_fontname, int i_font_size, uint32_t i_fo ...@@ -82,7 +82,7 @@ static void setFontAttibutes( char *psz_fontname, int i_font_size, uint32_t i_fo
#define FONTSIZER_TEXT N_("Relative font size") #define FONTSIZER_TEXT N_("Relative font size")
#define FONTSIZER_LONGTEXT N_("This is the relative default size of the " \ #define FONTSIZER_LONGTEXT N_("This is the relative default size of the " \
"fonts that will be rendered on the video. If absolute font size is set, "\ "fonts that will be rendered on the video. If absolute font size is set, "\
"relative size will be overriden." ) "relative size will be overridden." )
#define COLOR_TEXT N_("Text default color") #define COLOR_TEXT N_("Text default color")
#define COLOR_LONGTEXT N_("The color of the text that will be rendered on "\ #define COLOR_LONGTEXT N_("The color of the text that will be rendered on "\
"the video. This must be an hexadecimal (like HTML colors). The first two "\ "the video. This must be an hexadecimal (like HTML colors). The first two "\
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
/* Dirac packetizer, formed of three parts: /* Dirac packetizer, formed of three parts:
* 1) Bitstream synchroniser (dirac_DoSync) * 1) Bitstream synchroniser (dirac_DoSync)
* - Given an arbitary sequence of bytes, extract whole Dirac Data Units * - Given an arbitrary sequence of bytes, extract whole Dirac Data Units
* - Maps timestamps in supplied block_t's to the extracted Data Unit * - Maps timestamps in supplied block_t's to the extracted Data Unit
* A time stamp applies to the next Data Unit to commence at, or after * A time stamp applies to the next Data Unit to commence at, or after
* the first byte of the block_t with the timestamp. * the first byte of the block_t with the timestamp.
......
...@@ -86,7 +86,7 @@ const char *libvlc_errmsg (void) ...@@ -86,7 +86,7 @@ const char *libvlc_errmsg (void)
/** /**
* Clears the LibVLC error status for the current thread. This is optional. * Clears the LibVLC error status for the current thread. This is optional.
* By default, the error status is automatically overriden when a new error * By default, the error status is automatically overridden when a new error
* occurs, and destroyed when the thread exits. * occurs, and destroyed when the thread exits.
*/ */
void libvlc_clearerr (void) void libvlc_clearerr (void)
...@@ -97,7 +97,7 @@ void libvlc_clearerr (void) ...@@ -97,7 +97,7 @@ void libvlc_clearerr (void)
/** /**
* Sets the LibVLC error status and message for the current thread. * Sets the LibVLC error status and message for the current thread.
* Any previous error is overriden. * Any previous error is overridden.
* @return a nul terminated string (always) * @return a nul terminated string (always)
*/ */
const char *libvlc_vprinterr (const char *fmt, va_list ap) const char *libvlc_vprinterr (const char *fmt, va_list ap)
...@@ -115,7 +115,7 @@ const char *libvlc_vprinterr (const char *fmt, va_list ap) ...@@ -115,7 +115,7 @@ const char *libvlc_vprinterr (const char *fmt, va_list ap)
/** /**
* Sets the LibVLC error status and message for the current thread. * Sets the LibVLC error status and message for the current thread.
* Any previous error is overriden. * Any previous error is overridden.
* @return a nul terminated string (always) * @return a nul terminated string (always)
*/ */
const char *libvlc_printerr (const char *fmt, ...) const char *libvlc_printerr (const char *fmt, ...)
......
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