]> git.sesse.net Git - vlc/commitdiff
s/informations/information/
authorRémi Duraffort <ivoire@videolan.org>
Wed, 28 Jul 2010 19:03:32 +0000 (21:03 +0200)
committerRémi Duraffort <ivoire@videolan.org>
Wed, 28 Jul 2010 19:33:51 +0000 (21:33 +0200)
20 files changed:
bindings/mediacontrol/mediacontrol_structures.h
include/vlc_fourcc.h
include/vlc_input_item.h
include/vlc_picture.h
include/vlc_vout_display.h
modules/access/cdda.c
modules/access/sftp.c
modules/access/zip/zipaccess.c
modules/codec/avcodec/audio.c
modules/demux/ts.c
modules/gui/qt4/components/playlist/playlist.cpp
modules/gui/qt4/dialogs/vlm.cpp
modules/meta_engine/taglib.cpp
modules/packetizer/copy.c
modules/stream_out/smem.c
src/control/video.c
src/input/es_out.c
src/interface/dialog.c
src/text/filesystem.c
src/video_output/vout_pictures.c

index 6a3748276664ddd6c649cda61bc1dd308b65bb97..810ce3cdc5bf62639053c32853bb34194b63d0f9 100644 (file)
@@ -125,7 +125,7 @@ typedef struct {
 
 /**
  * Stream information
- * This structure allows to quickly get various informations about the stream.
+ * This structure allows to quickly get various information about the stream.
  */
 typedef struct {
     mediacontrol_PlayerStatus streamstatus;
index b1f349e1199ef2f770e6d48e31f2cd972c277a66..fd7d24a861fa4ff6115b447bdbd711589d59061e 100644 (file)
@@ -403,7 +403,7 @@ VLC_EXPORT( bool, vlc_fourcc_IsYUV, ( vlc_fourcc_t ) );
 VLC_EXPORT( bool, vlc_fourcc_AreUVPlanesSwapped, (vlc_fourcc_t , vlc_fourcc_t ) );
 
 /**
- * Chroma related informations.
+ * Chroma related information.
  */
 typedef struct {
     unsigned plane_count;
index 839c4b9d848a9c8cdd1d0f703b86189bb08aae61..5d5106b12161035ed074fca84619b226ec4df55d 100644 (file)
@@ -241,7 +241,7 @@ VLC_EXPORT( void, input_item_ReplaceInfos, ( input_item_t *, info_category_t * )
 VLC_EXPORT( void, input_item_MergeInfos, ( input_item_t *, info_category_t * ) );
 
 /**
- * This function creates a new input_item_t with the provided informations.
+ * This function creates a new input_item_t with the provided information.
  *
  * XXX You may also use input_item_New or input_item_NewExt as they need
  * less arguments.
@@ -249,7 +249,7 @@ VLC_EXPORT( void, input_item_MergeInfos, ( input_item_t *, info_category_t * ) )
 VLC_EXPORT( input_item_t *, input_item_NewWithType, ( vlc_object_t *, const char *psz_uri, const char *psz_name, int i_options, const char *const *ppsz_options, unsigned i_option_flags, mtime_t i_duration, int i_type ) LIBVLC_USED );
 
 /**
- * This function creates a new input_item_t with the provided informations.
+ * This function creates a new input_item_t with the provided information.
  *
  * Provided for convenience.
  */
@@ -257,7 +257,7 @@ VLC_EXPORT( input_item_t *, input_item_NewExt, (vlc_object_t *, const char *psz_
 #define input_item_NewExt(a,b,c,d,e,f,g) input_item_NewExt( VLC_OBJECT(a),b,c,d,e,f,g)
 
 /**
- * This function creates a new input_item_t with the provided informations.
+ * This function creates a new input_item_t with the provided information.
  *
  * Provided for convenience.
  */
index c16ceddb1ff060a6832c85f6cfd0a0c0dd624d9d..9a524dcc45c308e97dd415f348553b3a5179412c 100644 (file)
@@ -220,7 +220,7 @@ static inline void picture_CopyProperties( picture_t *p_dst, const picture_t *p_
 }
 
 /**
- * This function will reset a picture informations (properties and quantizers).
+ * This function will reset a picture information (properties and quantizers).
  * It is sometimes useful for reusing pictures (like from a pool).
  */
 VLC_EXPORT( void, picture_Reset, ( picture_t * ) );
index e79ce7ef56f0121e359c40587ff0e105cc29f6a0..503f92db13b46b212b32b24095ff674fa76200fa 100644 (file)
@@ -113,7 +113,7 @@ typedef struct {
 } vout_display_cfg_t;
 
 /**
- * Informations from a vout_display_t to configure
+ * Information from a vout_display_t to configure
  * the core behaviour.
  *
  * By default they are all false.
@@ -271,7 +271,7 @@ struct vout_display_t {
      */
     video_format_t fmt;
 
-    /* Informations
+    /* Information
      *
      * You can only set them in the open function.
      */
index 35864476abc37231447dd8c87227c19a721c3594..48c664b29e1c39c5d813b24b9e7602d39b7077cd 100644 (file)
@@ -400,7 +400,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
 /* If the given string is NULL or empty, fill it by the return value of 'code' */
 #define ON_EMPTY( psz, code ) do { if( !NONEMPTY( psz) ) { (psz) = code; } } while(0)
 
-    /* Retreive CDDB informations */
+    /* Retreive CDDB information */
 #ifdef HAVE_LIBCDDB
     char psz_year_buffer[4+1];
     msg_Dbg( p_access, "fetching infos with CDDB" );
@@ -447,7 +447,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
         pp_cd_text = NULL;
     }
 
-    /* Retrieve CD-TEXT informations but prefer CDDB */
+    /* Retrieve CD-TEXT information but prefer CDDB */
     if( i_cd_text > 0 && pp_cd_text[0] )
     {
         const vlc_meta_t *p_disc = pp_cd_text[0];
@@ -522,7 +522,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
         const char *psz_track_description = NULL;
 
 #ifdef HAVE_LIBCDDB
-        /* Retreive CDDB informations */
+        /* Retreive CDDB information */
         if( p_disc )
         {
             cddb_track_t *t = cddb_disc_get_track( p_disc, i );
@@ -534,7 +534,7 @@ static int GetTracks( access_t *p_access, input_item_t *p_current )
         }
 #endif
 
-        /* Retreive CD-TEXT informations but prefer CDDB */
+        /* Retreive CD-TEXT information but prefer CDDB */
         if( i+1 < i_cd_text && pp_cd_text[i+1] )
         {
             const vlc_meta_t *t = pp_cd_text[i+1];
index ce253cf64beb76eb7ee7453be7a9cd9ba6f0bdec..9f419a63d8ed91f57db8274908a9484f758f4848 100644 (file)
@@ -198,11 +198,11 @@ static int Open( vlc_object_t* p_this )
         goto error;
     }
 
-    /* Get some informations */
+    /* Get some information */
     LIBSSH2_SFTP_ATTRIBUTES attributes;
     if( libssh2_sftp_stat( p_sys->sftp_session, url.psz_path, &attributes ) )
     {
-        msg_Err( p_access, "Impossible to get informations about the remote file %s", url.psz_path );
+        msg_Err( p_access, "Impossible to get information about the remote file %s", url.psz_path );
         goto error;
     }
     p_access->info.i_size = attributes.filesize;
index f862b0cdd398092c92523b1134b26f99318c1d17..9f4faf46ed64a0df4830cdb32e8903be3d122a8a 100644 (file)
@@ -165,7 +165,7 @@ int AccessOpen( vlc_object_t *p_this )
     unz_file_info z_info;
     unzGetCurrentFileInfo( file, &z_info, NULL, 0, NULL, 0, NULL, 0 );
 
-    /* Set access informations: size is needed for AccessSeek */
+    /* Set access information: size is needed for AccessSeek */
     p_access->info.i_size = z_info.uncompressed_size;
     p_access->info.i_pos  = 0;
     p_access->info.b_eof  = false;
index 920ed22a73f3581b7f31d85b666db2d853701ab9..ac31b7c475e8acad76fac059f6d892df522daac6 100644 (file)
@@ -215,7 +215,7 @@ int InitAudioDec( decoder_t *p_dec, AVCodecContext *p_context,
 
     /* */
     p_dec->fmt_out.i_cat = AUDIO_ES;
-    /* Try to set as much informations as possible but do not trust it */
+    /* Try to set as much information as possible but do not trust it */
     SetupOutputFormat( p_dec, false );
 
     date_Set( &p_sys->end_date, 0 );
index 8ef7b944321cfec87b39595636c2e241c97cfa55..86c94781193e4bbba6deb49439724cf76de5100a 100644 (file)
@@ -3324,7 +3324,7 @@ static void PMTSetupEsTeletext( demux_t *p_demux, ts_pid_t *pid,
     ts_teletext_page_t p_page[2 * 64 + 20];
     unsigned i_page = 0;
 
-    /* Gather pages informations */
+    /* Gather pages information */
 #if defined _DVBPSI_DR_56_H_ && \
     defined DVBPSI_VERSION && DVBPSI_VERSION_INT > ((0<<16)+(1<<8)+5)
     for( unsigned i_tag_idx = 0; i_tag_idx < 2; i_tag_idx++ )
index 5368bf0eb75777c50e97107fd561ed469a3e3c29..bc2c6435464f112b6c19468b269e5a6aac9a4362 100644 (file)
@@ -114,7 +114,7 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QWidget *_par )
     leftSplitter->setMaximumWidth( 250 );
     setCollapsible( 1, false );
 
-    /* In case we want to keep the splitter informations */
+    /* In case we want to keep the splitter information */
     // components shall never write there setting to a fixed location, may infer
     // with other uses of the same component...
     getSettings()->beginGroup("Playlist");
index 9ee946751184aa61612b31416054a7b01e2c82b0..2bbe79ea12a1d88c684a92968f79cd791f845fd9 100644 (file)
@@ -289,7 +289,7 @@ void VLMDialog::mediasPopulator()
         int vlmItemCount;
         vlm_media_t ***ppp_dsc = (vlm_media_t ***)malloc( sizeof( vlm_media_t ) );
 
-        /* Get medias informations and numbers */
+        /* Get medias information and numbers */
         vlm_Control( p_vlm, VLM_GET_MEDIAS, ppp_dsc, &i_nMedias );
 
         /* Loop on all of them */
@@ -305,7 +305,7 @@ void VLMDialog::mediasPopulator()
 
             QString outputText = qfu( (*ppp_dsc)[i]->psz_output );
 
-            /* Schedule media is a quite especial, maybe there is another way to grab informations */
+            /* Schedule media is a quite especial, maybe there is another way to grab information */
             if( (*ppp_dsc)[i]->b_vod )
             {
                 typeShortName = "VOD";
index a75756823d58b64032d5ff5fa5e08f2ade7deffa..11bcfdf87c964a04bbb03d6954c4cdbea2b4040c 100644 (file)
@@ -94,7 +94,7 @@ using namespace TagLib;
 
 
 /**
- * Read meta informations from APE tags
+ * Read meta information from APE tags
  * @param tag: the APE tag
  * @param p_demux; the demux object
  * @param p_demux_meta: the demuxer meta
@@ -156,7 +156,7 @@ static void ReadMetaFromId3v2( ID3v2::Tag* tag, demux_t* p_demux, demux_meta_t*
                            p_txxx->fieldList().toString().toCString( true ) );
     }
 
-    // Get some more informations
+    // Get some more information
 #define SET( tagName, metaName )                                               \
     list = tag->frameListMap()[tagName];                                       \
     if( !list.isEmpty() )                                                      \
@@ -271,7 +271,7 @@ static void ReadMetaFromId3v2( ID3v2::Tag* tag, demux_t* p_demux, demux_meta_t*
 
 
 /**
- * Read the meta informations from XiphComments
+ * Read the meta information from XiphComments
  * @param tag: the Xiph Comment
  * @param p_demux; the demux object
  * @param p_demux_meta: the demuxer meta
@@ -484,7 +484,7 @@ static int ReadMeta( vlc_object_t* p_this)
 
 
 /**
- * Write meta informations to APE tags
+ * Write meta information to APE tags
  * @param tag: the APE tag
  * @param p_item: the input item
  */
@@ -542,7 +542,7 @@ static void WriteMetaToId3v2( ID3v2::Tag* tag, input_item_t* p_item )
 
 
 /**
- * Write the meta informations to XiphComments
+ * Write the meta information to XiphComments
  * @param tag: the Xiph Comment
  * @param p_input: the input item
  */
index 0986842ac7a080fd12f34703a6897883784dc139..dbaa96b321c033f1850019817af4db1fe7d1d7bf 100644 (file)
@@ -209,7 +209,7 @@ static block_t *PacketizeSub( decoder_t *p_dec, block_t **pp_block )
     return p_block;
 }
 
-/* Parse WMV3 packet and extract frame type informations */
+/* Parse WMV3 packet and extract frame type information */
 static void ParseWMV3( decoder_t *p_dec, block_t *p_block )
 {
     bs_t s;
index c4ef2e1009b912d068e37349ba0334eca04c6265..e8bca937e927f5ee15482473bfdf4d4d37db5b8f 100644 (file)
@@ -32,7 +32,7 @@
  * For example, you can use smem as it :
  * --sout="#transcode{vcodec=RV24,acodec=s16l}:smem{smem-options}"
  *
- * Into each lock function (audio and video), you will have all the informations
+ * Into each lock function (audio and video), you will have all the information
  * you need to allocate a buffer, so that this module will copy data in it.
  *
  * the video-data and audio-data pointers will be passed to lock/unlock function
index 60a1cee9b4902a5fe81d85575c26c79c4a32c747..2f122a54a18cc53ce55ed319b7316c58cc779830 100644 (file)
@@ -286,7 +286,7 @@ int libvlc_video_get_spu( libvlc_media_player_t *p_mi )
     if( i_ret < 0 )
     {
         vlc_object_release( p_input_thread );
-        libvlc_printerr( "Subtitle informations not found" );
+        libvlc_printerr( "Subtitle information not found" );
         return -1;
     }
 
index 0fc7176070b7af7480acb8d4b7367841e39446e4..239cd1985f67d686cb7405c59beab32bceff2e04 100644 (file)
@@ -2862,7 +2862,7 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *
     if( !p_cat )
         return;
 
-    /* Add informations */
+    /* Add information */
     const char *psz_type;
     switch( fmt->i_cat )
     {
index c1f21e2c995a16738415aed5c1d8c5e13eab7f4e..fd3568c33f3148c30e7e1b2a765ab4465f6a5cd6 100644 (file)
@@ -131,7 +131,7 @@ void dialog_VFatal (vlc_object_t *obj, bool modal, const char *title,
 #undef dialog_Login
 /**
  * Requests a username and password through the user interface.
- * @param obj the VLC object requesting credential informations
+ * @param obj the VLC object requesting credential information
  * @param username a pointer to the specified username [OUT]
  * @param password a pointer to the specified password [OUT]
  * @param title title for the dialog
index e3147ebddf11baddc0f09d2b5c64edf1bb392851..d2f5324394810dcd5ffac2fb5e5494ae3191138f 100644 (file)
@@ -459,7 +459,7 @@ static int vlc_statEx( const char *filename, struct stat *buf,
 }
 
 /**
- * Finds file/inode informations, as stat().
+ * Finds file/inode information, as stat().
  * Consider using fstat() instead, if possible.
  *
  * @param filename UTF-8 file path
@@ -470,7 +470,7 @@ int vlc_stat( const char *filename, struct stat *buf)
 }
 
 /**
- * Finds file/inode informations, as lstat().
+ * Finds file/inode information, as lstat().
  * Consider using fstat() instead, if possible.
  *
  * @param filename UTF-8 file path
index 1da4bfa31957b75789ec0cf82be283f74bd13631..318646ef471cce08daaca51788ef93d5d2c77646 100644 (file)
@@ -266,7 +266,7 @@ picture_t *picture_NewFromResource( const video_format_t *p_fmt, const picture_r
 {
     video_format_t fmt = *p_fmt;
 
-    /* It is needed to be sure all informations are filled */
+    /* It is needed to be sure all information are filled */
     video_format_Setup( &fmt, p_fmt->i_chroma,
                               p_fmt->i_width, p_fmt->i_height,
                               p_fmt->i_sar_num, p_fmt->i_sar_den );