Commit 2d4b2ba4 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

s/informations/information

parent c77682bf
...@@ -215,7 +215,7 @@ void libvlc_set_user_agent( libvlc_instance_t *p_instance, ...@@ -215,7 +215,7 @@ void libvlc_set_user_agent( libvlc_instance_t *p_instance,
const char *name, const char *http ); const char *name, const char *http );
/** /**
* Sets some meta-informations about the application. * Sets some meta-information about the application.
* See also libvlc_set_user_agent(). * See also libvlc_set_user_agent().
* *
* \param p_instance LibVLC instance * \param p_instance LibVLC instance
...@@ -353,7 +353,7 @@ enum libvlc_log_level ...@@ -353,7 +353,7 @@ enum libvlc_log_level
typedef struct vlc_log_t libvlc_log_t; typedef struct vlc_log_t libvlc_log_t;
/** /**
* Gets debugging informations about a log message: the name of the VLC module * Gets debugging information about a log message: the name of the VLC module
* emitting the message and the message location within the source code. * emitting the message and the message location within the source code.
* *
* The returned module name and file name will be NULL if unknown. * The returned module name and file name will be NULL if unknown.
...@@ -372,9 +372,9 @@ LIBVLC_API void libvlc_log_get_context(const libvlc_log_t *ctx, ...@@ -372,9 +372,9 @@ LIBVLC_API void libvlc_log_get_context(const libvlc_log_t *ctx,
const char **module, const char **file, unsigned *line); const char **module, const char **file, unsigned *line);
/** /**
* Gets VLC object informations about a log message: the type name of the VLC * Gets VLC object information about a log message: the type name of the VLC
* object emitting the message, the object header if any and a temporaly-unique * object emitting the message, the object header if any and a temporaly-unique
* object identifier. These informations are mainly meant for <b>manual</b> * object identifier. These information are mainly meant for <b>manual</b>
* troubleshooting. * troubleshooting.
* *
* The returned type name may be "generic" if unknown, but it cannot be NULL. * The returned type name may be "generic" if unknown, but it cannot be NULL.
...@@ -399,7 +399,7 @@ LIBVLC_API void libvlc_log_get_object(const libvlc_log_t *ctx, ...@@ -399,7 +399,7 @@ LIBVLC_API void libvlc_log_get_object(const libvlc_log_t *ctx,
* Callback prototype for LibVLC log message handler. * Callback prototype for LibVLC log message handler.
* \param data data pointer as given to libvlc_log_set() * \param data data pointer as given to libvlc_log_set()
* \param level message level (@ref enum libvlc_log_level) * \param level message level (@ref enum libvlc_log_level)
* \param ctx message context (meta-informations about the message) * \param ctx message context (meta-information about the message)
* \param fmt printf() format string (as defined by ISO C11) * \param fmt printf() format string (as defined by ISO C11)
* \param args variable argument list for the format * \param args variable argument list for the format
* \note Log message handlers <b>must</b> be thread-safe. * \note Log message handlers <b>must</b> be thread-safe.
......
...@@ -105,7 +105,7 @@ VLC_API void libvlc_Quit( libvlc_int_t * ); ...@@ -105,7 +105,7 @@ VLC_API void libvlc_Quit( libvlc_int_t * );
* Message logging callback signature. * Message logging callback signature.
* \param data data pointer as provided to vlc_msg_SetCallback(). * \param data data pointer as provided to vlc_msg_SetCallback().
* \param type message type (VLC_MSG_* values from enum vlc_log_type) * \param type message type (VLC_MSG_* values from enum vlc_log_type)
* \param item meta informations * \param item meta information
* \param fmt format string * \param fmt format string
* \param args format string arguments * \param args format string arguments
*/ */
......
...@@ -128,7 +128,7 @@ struct demux_sys_t ...@@ -128,7 +128,7 @@ struct demux_sys_t
unsigned int i_current_clip; unsigned int i_current_clip;
input_title_t **pp_title; input_title_t **pp_title;
/* Meta informations */ /* Meta information */
const META_DL *p_meta; const META_DL *p_meta;
/* Menus */ /* Menus */
......
...@@ -1804,7 +1804,7 @@ static void StreamRead( void *p_private, unsigned int i_size, ...@@ -1804,7 +1804,7 @@ static void StreamRead( void *p_private, unsigned int i_size,
QuickTimeGenericRTPSource::QTState &qtState = qtRTPSource->qtState; QuickTimeGenericRTPSource::QTState &qtState = qtRTPSource->qtState;
uint8_t *sdAtom = (uint8_t*)&qtState.sdAtom[4]; uint8_t *sdAtom = (uint8_t*)&qtState.sdAtom[4];
/* Get codec informations from the quicktime atoms : /* Get codec information from the quicktime atoms :
* http://developer.apple.com/quicktime/icefloe/dispatch026.html */ * http://developer.apple.com/quicktime/icefloe/dispatch026.html */
if( tk->fmt.i_cat == VIDEO_ES ) { if( tk->fmt.i_cat == VIDEO_ES ) {
if( qtState.sdAtomSize < 16 + 32 ) if( qtState.sdAtomSize < 16 + 32 )
......
...@@ -1292,7 +1292,7 @@ static enum PixelFormat ffmpeg_GetFormat( AVCodecContext *p_context, ...@@ -1292,7 +1292,7 @@ static enum PixelFormat ffmpeg_GetFormat( AVCodecContext *p_context,
if (!can_hwaccel) if (!can_hwaccel)
goto end; goto end;
/* Profile and level informations are needed now. /* Profile and level information are needed now.
* TODO: avoid code duplication with avcodec.c */ * TODO: avoid code duplication with avcodec.c */
if( p_context->profile != FF_PROFILE_UNKNOWN) if( p_context->profile != FF_PROFILE_UNKNOWN)
p_dec->fmt_in.i_profile = p_context->profile; p_dec->fmt_in.i_profile = p_context->profile;
......
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