After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 558459 - Application Development Manual
Application Development Manual
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: documentation
0.10.20
Other Linux
: Normal normal
: 0.10.22
Assigned To: Wim Taymans
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2008-10-29 21:59 UTC by Andrew Feren
Modified: 2008-11-04 11:55 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Andrew Feren 2008-10-29 21:59:02 UTC
I'm reading through the documentation today so I'm going to leave this page open and add anything that I find.

* 2. Preliminary reading
"instentiation" should be "instantiation"

* Chapter 1. What is GStreamer?
"negociation" should be "negotiation"

* 6.2. Creating a bin
  bin = gst_pipeline_new ("my_bin");
I think this should read
  bin = gst_bin_new ("my_bin");
I guess either works though

* 7.1. How to use a bus
"the defauly GLib" should be "the default GLib"

* 7.1. How to use a bus
In the example code
  g_main_loop_unref (loop)
is missing a semicolon (should be as follows)
  g_main_loop_unref (loop);

* 8.3.2. Creating capabilities for filtering
notes that "(this is important if you ever want to disconnect those elements)", but not why it is important. Maybe I'll find out further in the docs, but now I am uncertain...

* 11.2. Events: seeking (and more)
  "Seeks should usually be done when the pipeline is in PAUSED or PLAYING
   state (when it is in PLAYING state the pipeline will pause itself, issue
   the seek, and then set itself back to PLAYING again itself). returns."
I think the "returns." above is left from an earlier edit.


Wow.  Great manual.
Comment 1 Wim Taymans 2008-11-04 11:55:05 UTC
        * docs/manual/advanced-position.xml:
        * docs/manual/basics-bins.xml:
        * docs/manual/basics-bus.xml:
        * docs/manual/basics-pads.xml:
        * docs/manual/intro-gstreamer.xml:
        * docs/manual/intro-preface.xml:
        Some Application Development Manual fixes thanks to
        Andrew Feren. Fixes #558459.