docs: fix a couple of typos in the manual
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 1 Jul 2010 18:58:09 +0000 (19:58 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 1 Jul 2010 18:58:09 +0000 (19:58 +0100)
Spotted by Alexander Saprykin.

Fixes #622379.

docs/manual/advanced-autoplugging.xml
docs/manual/advanced-dparams.xml
docs/manual/advanced-interfaces.xml
docs/manual/advanced-position.xml
docs/manual/appendix-checklist.xml
docs/manual/basics-helloworld.xml

index c796c2c..5703a79 100644 (file)
@@ -85,7 +85,7 @@
       concept of typefinding for this. Typefinding is a normal part of a
       pipeline, it will read data for as long as the type of a stream is
       unknown. During this period, it will provide data to all plugins
-      that implement a typefinder. when one of the typefinders recognizes
+      that implement a typefinder. When one of the typefinders recognizes
       the stream, the typefind element will emit a signal and act as a
       passthrough module from that point on. If no type was found, it will
       emit an error and further media processing will stop.
index b89ccaa..4e5485a 100644 (file)
@@ -73,7 +73,7 @@
       has timestamped control-values assigned one can change the GObject
       property through <function>g_object_set()</function>.
       This is highly useful when binding the GObject properties to GUI widgets.
-      When the user adjusts the value with the widget, one can set the GOBject
+      When the user adjusts the value with the widget, one can set the GObject
       property and this remains active until the next timestamped value overrides.
       This also works with smoothed parameters.  
     </para>
index a17ea5e..1e26a9d 100644 (file)
     </note>
     <para>
       This interface is currently implemented by many elements, including
-      the ALSA, OSS, XVImageSink, Video4linux and Video4linux2 elements.
+      the ALSA, OSS, XVideo, Video4linux and Video4linux2 elements.
     </para>
   </sect1>
 
index 01c57a8..5957231 100644 (file)
@@ -18,7 +18,7 @@
     <title>Querying: getting the position or length of a stream</title>
 
     <para>
-      Querying is defined as requesting a specific stream-property related
+      Querying is defined as requesting a specific stream property related
       to progress tracking. This includes getting the length of a stream (if
       available) or getting the current position. Those stream properties
       can be retrieved in various formats such as time, audio samples, video
index 469f7bb..af9a239 100644 (file)
        </listitem>
        <listitem>
          <para>
-          <option>--gst-debug-no-color</option> will disable color debugging
+          <option>--gst-debug-no-color</option> will disable color debugging.
           You can also set the GST_DEBUG_NO_COLOR environment variable to 1
           if you want to disable colored debug output permanently. Note that
           if you are disabling color purely to avoid messing up your pager
-          output, trying using <command>less -R</command>.
+          output, try using <command>less -R</command>.
          </para>
        </listitem>
        <listitem>
index 7b0e291..79b366c 100644 (file)
@@ -225,11 +225,20 @@ main (int   argc,
       $(pkg-config --cflags --libs gstreamer-&GST_MAJORMINOR;)
       helloworld.c -o helloworld</command>. &GStreamer; makes use of
       <command>pkg-config</command> to get compiler and linker flags
-      needed to compile this application. If you're running a
-      non-standard installation, make sure the
-      <classname>PKG_CONFIG_PATH</classname> environment variable is
-      set to the correct location (<filename>$libdir/pkgconfig</filename>).
-      application against the uninstalled location.
+      needed to compile this application.
+    </para>
+    <para>
+      If you're running a non-standard installation (ie. you've installed
+      GStreamer from source yourself instead of using pre-built packages),
+      make sure the <classname>PKG_CONFIG_PATH</classname> environment variable
+      is set to the correct location (<filename>$libdir/pkgconfig</filename>).
+    </para>
+    <para>
+      In the unlikely case that you are using an uninstalled GStreamer
+      setup (ie. gst-uninstalled), you will need to use libtool to build the
+      hello world program, like this: <command>libtool --mode=link gcc -Wall
+      $(pkg-config --cflags --libs gstreamer-&GST_MAJORMINOR;)
+      helloworld.c -o helloworld</command>.
     </para>
     <para>
       You can run this example application with <command>./helloworld