~ubuntu-branches/ubuntu/trusty/gstreamer1.0/trusty-proposed

« back to all changes in this revision

Viewing changes to docs/pwg/advanced-negotiation.xml

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2012-09-14 09:04:41 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120914090441-1ul912ezvm3xfael
Tags: 0.11.94-1
* New upstream release:
  + debian/libgstreamer.symbols:
    - Update symbols file.
  + debian/control.in:
    - Build-depend on gtk-doc >= 1.12.
  + debian/patches/0001-netclientclock-simplify-by-using-g_socket_condition_.patch:
    - Dropped, merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
    </para>
98
98
    <programlisting>
99
99
[..]
100
 
  caps = gst_caps_new_simple ("audio/x-raw-float",
101
 
      "width", G_TYPE_INT, 32,
102
 
      "endianness", G_TYPE_INT, G_BYTE_ORDER,
 
100
  caps = gst_caps_new_simple ("audio/x-raw",
 
101
      "format", G_TYPE_STRING, GST_AUDIO_NE(F32),
103
102
      "buffer-frames", G_TYPE_INT, &lt;bytes-per-frame&gt;,
104
103
      "rate", G_TYPE_INT, &lt;samplerate&gt;,
105
104
      "channels", G_TYPE_INT, &lt;num-channels&gt;, NULL);