gst/playback/: Fix a whole bunch of typos in comments and log statements.
authorMichael Smith <msmith@xiph.org>
Fri, 20 Jun 2008 17:18:55 +0000 (17:18 +0000)
committerMichael Smith <msmith@xiph.org>
Fri, 20 Jun 2008 17:18:55 +0000 (17:18 +0000)
Original commit message from CVS:
* gst/playback/gstplaybin2.c:
* gst/playback/gstplaysink.c:
Fix a whole bunch of typos in comments and log statements.

ChangeLog
gst/playback/gstplaybin2.c
gst/playback/gstplaysink.c

index b08110f31e2bc017e2e3dd0896d8c8a50e90458a..eea94f84890d004350ff1349a3a0ab26c792908c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-06-20  Michael Smith <msmith@songbirdnest.com>
+
+       * gst/playback/gstplaybin2.c:
+       * gst/playback/gstplaysink.c:
+         Fix a whole bunch of typos in comments and log statements. 
+
 2008-06-20  Michael Smith <msmith@songbirdnest.com>
 
        * sys/xvimage/xvimagesink.c:
index 0abd1d8408b88dbbbeaaec37aaead838637568da..cf4d1d43280acc366bb44000debc28b4c11a4b1c 100644 (file)
@@ -350,7 +350,7 @@ struct _GstPlayBin
   GstSourceGroup *curr_group;   /* pointer to the currently playing group */
   GstSourceGroup *next_group;   /* pointer to the next group */
 
-  gboolean about_to_finish;     /* the about-to-finish signal is emited */
+  gboolean about_to_finish;     /* the about-to-finish signal is emitted */
 
   /* properties */
   guint connection_speed;       /* connection speed in bits/sec (0 = unknown) */
@@ -723,7 +723,7 @@ gst_play_bin_class_init (GstPlayBinClass * klass)
    * GstPlayBin2::video-changed
    * @playbin: a #GstPlayBin2
    *
-   * This signal is emited whenever the number or order of the video
+   * This signal is emitted whenever the number or order of the video
    * streams has changed. The application will most likely want to select
    * a new video stream.
    */
@@ -736,7 +736,7 @@ gst_play_bin_class_init (GstPlayBinClass * klass)
    * GstPlayBin2::audio-changed
    * @playbin: a #GstPlayBin2
    *
-   * This signal is emited whenever the number or order of the audio
+   * This signal is emitted whenever the number or order of the audio
    * streams has changed. The application will most likely want to select
    * a new audio stream.
    */
@@ -749,7 +749,7 @@ gst_play_bin_class_init (GstPlayBinClass * klass)
    * GstPlayBin2::text-changed
    * @playbin: a #GstPlayBin2
    *
-   * This signal is emited whenever the number or order of the text
+   * This signal is emitted whenever the number or order of the text
    * streams has changed. The application will most likely want to select
    * a new text stream.
    */
@@ -1532,7 +1532,7 @@ link_failed:
   }
 }
 
-/* called when a pad is removed form the uridecodebin. We unlink the pad from
+/* called when a pad is removed from the uridecodebin. We unlink the pad from
  * the selector. This will make the selector select a new pad. */
 static void
 pad_removed_cb (GstElement * decodebin, GstPad * pad, GstSourceGroup * group)
@@ -1706,8 +1706,8 @@ drained_cb (GstElement * decodebin, GstSourceGroup * group)
 
   GST_DEBUG_OBJECT (playbin, "about to finish in group %p", group);
 
-  /* mark use as sending out the about-to-finish signal. When the app sets a URI
-   * when this signal is emited, we're marking it as next-uri */
+  /* mark us as sending out the about-to-finish signal. When the app sets a URI
+   * when this signal is emitted, we're marking it as next-uri */
   playbin->about_to_finish = TRUE;
 
   /* after this call, we should have a next group to activate or we EOS */
index 18d052ee84efd6a9073395d0aadaaceeb0ab124c..451a558d9548cab32f651854ac676a6d0cc3e238 100644 (file)
@@ -911,7 +911,7 @@ gen_audio_chain (GstPlaySink * playsink, gboolean raw, gboolean queue)
   /* check if the sink has the volume property, if it does we don't need to
    * add a volume element. */
   if (g_object_class_find_property (G_OBJECT_GET_CLASS (chain->sink), "volume")) {
-    GST_DEBUG_OBJECT (playsink, "the sink as a volume property");
+    GST_DEBUG_OBJECT (playsink, "the sink has a volume property");
     have_volume = TRUE;
     /* take ref to sink to control the volume */
     chain->volume = gst_object_ref (chain->sink);
@@ -920,12 +920,12 @@ gen_audio_chain (GstPlaySink * playsink, gboolean raw, gboolean queue)
      * use the mute property if there is a volume property. We can simulate the
      * mute with the volume otherwise. */
     if (g_object_class_find_property (G_OBJECT_GET_CLASS (chain->sink), "mute")) {
-      GST_DEBUG_OBJECT (playsink, "the sink as a mute property");
+      GST_DEBUG_OBJECT (playsink, "the sink has a mute property");
       chain->mute = gst_object_ref (chain->sink);
     }
   } else {
     /* no volume, we need to add a volume element when we can */
-    GST_DEBUG_OBJECT (playsink, "the sink as no volume property");
+    GST_DEBUG_OBJECT (playsink, "the sink has no volume property");
     have_volume = FALSE;
   }
 
@@ -1172,7 +1172,7 @@ gst_play_sink_reconfigure (GstPlaySink * playsink)
 
   /* figure out which components we need */
   if (flags & GST_PLAY_FLAG_TEXT && playsink->text_pad) {
-    /* we subtitles and we are requested to show it, we also need to show
+    /* we have subtitles and we are requested to show it, we also need to show
      * video in this case. */
     need_video = TRUE;
     need_text = TRUE;
@@ -1239,7 +1239,7 @@ gst_play_sink_reconfigure (GstPlaySink * playsink)
     gst_pad_link (playsink->textchain->srcpad, playsink->videochain->sinkpad);
     activate_chain (GST_PLAY_CHAIN (playsink->textchain), TRUE);
   } else {
-    /* we have no audio or we are requested to not play audio */
+    /* we have no subtitles/text or we are requested to not show them */
     if (playsink->textchain) {
       add_chain (GST_PLAY_CHAIN (playsink->textchain), FALSE);
       activate_chain (GST_PLAY_CHAIN (playsink->textchain), FALSE);