docs: fix some typos and add some missing links in the app dev manual
[platform/upstream/gstreamer.git] / docs / manual / basics-pads.xml
index 9cded27..bdd7c18 100644 (file)
@@ -216,7 +216,7 @@ link_to_multiplexer (GstPad     *tolink_pad,
     <sect2 id="section-caps-structure">
       <title>Dissecting capabilities</title>
       <para>
-        A pads capabilities are described in a <classname>GstCaps</classname>
+        A pad's capabilities are described in a <classname>GstCaps</classname>
         object. Internally, a <ulink type="http"
         url="../../gstreamer/html/gstreamer-GstCaps.html"><classname>GstCaps</classname></ulink>
         will contain one or more <ulink type="http"
@@ -236,8 +236,8 @@ link_to_multiplexer (GstPad     *tolink_pad,
         accept vorbis-encoded audio data, with the mime-type
         <quote>audio/x-vorbis</quote>. The source pad will be used
         to send raw (decoded) audio samples to the next element, with
-        a raw audio mime-type (in this case, 
-       <quote>audio/x-raw-int</quote>) The source pad will also
+        a raw audio mime-type (in this case,
+       <quote>audio/x-raw-float</quote>).  The source pad will also
         contain properties for the audio samplerate and the amount of
         channels, plus some more that you don't need to worry about
         for now.
@@ -539,12 +539,13 @@ link_elements_with_filter (GstElement *element1, GstElement *element2)
       </programlisting>
       This will force the data flow between those two elements to
       a certain video format, width, height and framerate (or the linking
-      will fail if that cannot be achieved in the context of the elments
+      will fail if that cannot be achieved in the context of the elements
       involved). Keep in mind that when you use <function>
       gst_element_link_filtered ()</function> it will automatically create
       a <classname>capsfilter</classname> element for you and insert it into
       your bin or pipeline between the two elements you want to connect (this
-      is important if you ever want to disconnect those elements).
+      is important if you ever want to disconnect those elements because then
+      you will have to disconnect both elements from the capsfilter instead).
       </para>
       <para>
         In some cases, you will want to create a more elaborate set of
@@ -584,8 +585,10 @@ link_elements_with_filter (GstElement *element1, GstElement *element2)
       </programlisting>
       <para>
         See the API references for the full API of
-        <classname>GstStructure</classname> and
-        <classname>GstCaps</classname>.
+       <ulink type="http"
+         url="&URLAPI;GstStructure.html"><classname>GstStructure</classname></ulink>
+       and <ulink type="http"
+         url="&URLAPI;GstCaps.html"><classname>GstCaps</classname></ulink>.
       </para>
     </sect2>
   </sect1>