diff --git a/ChangeLog b/ChangeLog index a8edd3d5fc..1a739338f9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-05-05 Maciej Katafiasz + + * 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 * 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 * gst/gstghostpad.c: diff --git a/docs/manual/basics-bins.xml b/docs/manual/basics-bins.xml index 943de0241d..c164877790 100644 --- a/docs/manual/basics-bins.xml +++ b/docs/manual/basics-bins.xml @@ -36,7 +36,7 @@ - There are two specialized types of bins available to the + There is one specialized types of bins available to the &GStreamer; programmer: @@ -49,14 +49,6 @@ () to make it process data while in the playing state. - - - 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 . - - @@ -65,9 +57,9 @@ Bins are created in the same way that other elements are created, i.e. using an element factory. There are also convenience functions - available (gst_bin_new (), - gst_thread_new () and gst_pipeline_new - ()). To add elements to a bin or remove elements from a + available (gst_bin_new () and + gst_pipeline_new ()). + To add elements to a bin or remove elements from a bin, you can use gst_bin_add () and gst_bin_remove (). Note that the bin that you add an element to will take ownership of that element. If you diff --git a/docs/manual/basics-elements.xml b/docs/manual/basics-elements.xml index efa666cff2..eccd6f9d93 100644 --- a/docs/manual/basics-elements.xml +++ b/docs/manual/basics-elements.xml @@ -284,8 +284,8 @@ main (int argc, properties we recommend you read the GObject manual and an introduction to The - Glib Object system. + url="http://developer.gnome.org/doc/API/2.0/gobject/pr01.html" type="http"> + The Glib Object system. A