Don't mention GstThread (#340611)
authorMaciej Katafiasz <mathrick@mathrick.org>
Fri, 5 May 2006 14:38:01 +0000 (14:38 +0000)
committerMaciej Katafiasz <mathrick@mathrick.org>
Fri, 5 May 2006 14:38:01 +0000 (14:38 +0000)
Original commit message from CVS:
Don't mention GstThread (#340611)
Update link to GObject tutorial (#340607)

ChangeLog
docs/manual/basics-bins.xml
docs/manual/basics-elements.xml

index a8edd3d..1a73933 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
+
+       * docs/manual/basics-bins.xml:
+       Don't mention GstThread (#340611)
+       * docs/manual/basics-elements.xml:
+       Update link to GObject tutorial (#340607)
+       
 2006-05-05  Wim Taymans  <wim@fluendo.com>
 
        * gst/gstbuffer.h:
@@ -19,6 +26,7 @@
        * docs/manual/basics-bus.xml:
        * docs/manual/basics-pads.xml:
        Fix up some inaccuracies and omissions (#340609)
+       
 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
 
        * gst/gstghostpad.c:
index 943de02..c164877 100644 (file)
@@ -36,7 +36,7 @@
     </figure>
 
     <para> 
-      There are two specialized types of bins available to the
+      There is one specialized types of bins available to the
       &GStreamer; programmer:
     </para>
     <itemizedlist>
           ()</function> to make it process data while in the playing state.
         </para>
       </listitem>
-      <listitem>
-        <para>
-          A thread: a bin that will be run in a separate execution thread.
-         You will have to use this bin if you have to carefully
-          synchronize audio and video, or for buffering. You will learn
-         more about threads in <xref linkend="chapter-threads"/>.
-        </para>
-      </listitem>
     </itemizedlist>
   </sect1>
 
@@ -65,9 +57,9 @@
     <para>
       Bins are created in the same way that other elements are created,
       i.e. using an element factory. There are also convenience functions
-      available (<function>gst_bin_new ()</function>,
-      <function>gst_thread_new ()</function> and <function>gst_pipeline_new
-      ()</function>). To add elements to a bin or remove elements from a
+      available (<function>gst_bin_new ()</function> and 
+      <function>gst_pipeline_new ()</function>).
+      To add elements to a bin or remove elements from a
       bin, you can use <function>gst_bin_add ()</function> and
       <function>gst_bin_remove ()</function>. Note that the bin that you
       add an element to will take ownership of that element. If you
index efa666c..eccd6f9 100644 (file)
@@ -284,8 +284,8 @@ main (int   argc,
       properties we recommend you read the <ulink
       url="http://developer.gnome.org/doc/API/2.0/gobject/index.html"
       type="http">GObject manual</ulink> and an introduction to <ulink
-      url="http://le-hacker.org/papers/gobject/index.html" type="http">The
-      Glib Object system</ulink>.
+      url="http://developer.gnome.org/doc/API/2.0/gobject/pr01.html" type="http">
+       The Glib Object system</ulink>.
     </para>
     <para>
       A <ulink type="http" url="&URLAPI;gstreamer/html/GstElementFactory.html">