~ubuntu-branches/ubuntu/trusty/gst-plugins-base1.0/trusty-proposed

« back to all changes in this revision

Viewing changes to gst-libs/gst/sdp/gstsdpmessage.c

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-09-24 16:24:47 UTC
  • mfrom: (1.1.18) (17.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20130924162447-0s1qfyjlaswtp1jg
* New upstream stable release:
  + debian/rules,
    debian/build-deps.in:
    - Build-depend on GStreamer >= 1.2.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1121
1121
 * gst_sdp_message_insert_bandwidth:
1122
1122
 * @msg: a #GstSDPMessage
1123
1123
 * @idx: an index
1124
 
 * @bwtype: the bandwidth modifier type
1125
 
 * @bandwidth: the bandwidth in kilobits per second
 
1124
 * @bw: the bandwidth
1126
1125
 *
1127
1126
 * Insert bandwidth parameters into the array of bandwidths in @msg
1128
1127
 * at index @idx.
1139
1138
 * gst_sdp_message_replace_bandwidth:
1140
1139
 * @msg: a #GstSDPMessage
1141
1140
 * @idx: the bandwidth index
1142
 
 * @bwtype: the bandwidth modifier type
1143
 
 * @bandwidth: the bandwidth in kilobits per second
 
1141
 * @bw: the bandwidth
1144
1142
 *
1145
 
 * Replace the bandwidth information in @msg at index @idx with @bwtype and @bandwidth.
 
1143
 * Replace the bandwidth information in @msg at index @idx with @bw.
1146
1144
 *
1147
1145
 * Returns: a #GstSDPResult.
1148
1146
 *
1602
1600
 * gst_sdp_message_insert_attribute:
1603
1601
 * @msg: a #GstSDPMessage
1604
1602
 * @idx: an index
1605
 
 * @attribute a #GstSDPAttribute
 
1603
 * @attr: a #GstSDPAttribute
1606
1604
 *
1607
1605
 * Insert attribute into the array of attributes in @msg
1608
1606
 * at index @idx.
1619
1617
 * gst_sdp_message_replace_attribute:
1620
1618
 * @msg: a #GstSDPMessage
1621
1619
 * @idx: the index
1622
 
 * @attribute: a #GstSDPAttribute
 
1620
 * @attr: a #GstSDPAttribute
1623
1621
 *
1624
 
 * Replace the attribute in @msg at index @idx with @attribute.
 
1622
 * Replace the attribute in @msg at index @idx with @attr.
1625
1623
 *
1626
1624
 * Returns: a #GstSDPResult.
1627
1625
 *