xmllint validations; <revdescription/> and ID fix

<revremark/> can only have text, but <revdescription/> can contain lots of
other stuff; and a space is invalid in an id= attribute.
This commit is contained in:
Martin A. Brown 2016-03-02 21:28:27 -08:00
parent 45f1b72757
commit d163edda14
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
<revnumber>1.2</revnumber>
<date>2007-04-14</date>
<authorinitials>RA</authorinitials>
<revremark>Addition of DMA related section contributed by Ian Peikon <email><ulink url="mailto:idp2@duke.edu">idp2@duke.edu</ulink></email>and Tim Hanson <email><ulink url="mailto:tim@hardcarve.com">tim@hardcarve.com</ulink></email></revremark>
<revdescription><para>Addition of DMA related section contributed by Ian Peikon <email><ulink url="mailto:idp2@duke.edu">idp2@duke.edu</ulink></email>and Tim Hanson <email><ulink url="mailto:tim@hardcarve.com">tim@hardcarve.com</ulink></email></para></revdescription>
</revision>
<revision>
<revnumber>1.0</revnumber>
@ -882,7 +882,7 @@ where the values of the parameters for channel, speed, bytes_per_packet, speed,
<listitem><para>The value of the width and height depends on the size of frame the user wants, for example, if one wants 960x720 then pass 960 as width and 720 as height.</para></listitem>
</orderedlist>
</sect2>
<sect2 id="dma example">
<sect2 id="dma-example">
<title>Example: How to grab image from the IEEE1394 camera using DMA</title>
<para>This section has been contributed by Ian Peikon <email><ulink url="mailto:idp2@duke.edu">idp2@duke.edu</ulink></email>and Tim Hanson <email><ulink url="mailto:tim@hardcarve.com">tim@hardcarve.com</ulink></email>
We will now present an example of how to grab a frame by the camera using DMA calls. The example is simple to understand as the logic remains the same as the previous example. We will later compare the function calls used in the previous example (without dma) and this example (with dma) for better understanding.