]> git.sesse.net Git - vlc/commitdiff
s/informations/information
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 11 Sep 2013 14:42:14 +0000 (16:42 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 11 Sep 2013 14:42:30 +0000 (16:42 +0200)
include/vlc/libvlc.h
include/vlc_interface.h
modules/access/bluray.c
modules/access/live555.cpp
modules/codec/avcodec/video.c

index 485f4ff7198fd86d7935613b254f074f47577dd5..5cf0ad2003752aa7ae4ac51cda6faabe93bc1c8b 100644 (file)
@@ -215,7 +215,7 @@ void libvlc_set_user_agent( libvlc_instance_t *p_instance,
                             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().
  *
  * \param p_instance LibVLC instance
@@ -353,7 +353,7 @@ enum libvlc_log_level
 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.
  *
  * 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,
                        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 identifier. These informations are mainly meant for <b>manual</b>
+ * object identifier. These information are mainly meant for <b>manual</b>
  * troubleshooting.
  *
  * 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,
  * Callback prototype for LibVLC log message handler.
  * \param data data pointer as given to libvlc_log_set()
  * \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 args variable argument list for the format
  * \note Log message handlers <b>must</b> be thread-safe.
index 9bc6241b7eb84459a28f3fee32bff129d74bad80..485c3034b1ce9f564215b281f0316318678b17bf 100644 (file)
@@ -105,7 +105,7 @@ VLC_API void libvlc_Quit( libvlc_int_t * );
  * Message logging callback signature.
  * \param data data pointer as provided to vlc_msg_SetCallback().
  * \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 args format string arguments
  */
index e85943197d6a6810f9c1d979294ba62334a789e1..a0c4eb68304f7942fca311fa53911d8be98e6a38 100644 (file)
@@ -128,7 +128,7 @@ struct  demux_sys_t
     unsigned int        i_current_clip;
     input_title_t       **pp_title;
 
-    /* Meta informations */
+    /* Meta information */
     const META_DL       *p_meta;
 
     /* Menus */
index 7a1ab161e062082ab20fd3f9c24b0421c71570e2..b61546b6902ca7dca4b437cb05b9931b1d0084de 100644 (file)
@@ -1804,7 +1804,7 @@ static void StreamRead( void *p_private, unsigned int i_size,
         QuickTimeGenericRTPSource::QTState &qtState = qtRTPSource->qtState;
         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 */
         if( tk->fmt.i_cat == VIDEO_ES ) {
             if( qtState.sdAtomSize < 16 + 32 )
index 9622a944f8e9a955ebd3b555fb1a345191aa5dd6..29c64911e11c65d144c74a55f48058417f012832 100644 (file)
@@ -1292,7 +1292,7 @@ static enum PixelFormat ffmpeg_GetFormat( AVCodecContext *p_context,
     if (!can_hwaccel)
         goto end;
 
-    /* Profile and level informations are needed now.
+    /* Profile and level information are needed now.
      * TODO: avoid code duplication with avcodec.c */
     if( p_context->profile != FF_PROFILE_UNKNOWN)
         p_dec->fmt_in.i_profile = p_context->profile;