diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2007-12-10 18:36:04 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-12-10 18:36:04 +0000 |
commit | 8b973428f3f1b2df938ea4a2f5786b3ff5f1e925 (patch) | |
tree | 4e953bb6e85aa3633c82f884c153332885e25098 /gst/rtpmanager/rtpsource.c | |
parent | 5c1c4a4477f4177c84435b225ce161798ffc21f9 (diff) | |
download | gst-plugins-bad-8b973428f3f1b2df938ea4a2f5786b3ff5f1e925.tar.gz gst-plugins-bad-8b973428f3f1b2df938ea4a2f5786b3ff5f1e925.tar.bz2 gst-plugins-bad-8b973428f3f1b2df938ea4a2f5786b3ff5f1e925.zip |
gst/rtpmanager/: Post a message when the SDES infor changes for a source.
Original commit message from CVS:
* gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_class_init),
(gst_rtp_bin_handle_message):
* gst/rtpmanager/gstrtpsession.c: (source_get_sdes_structure),
(on_ssrc_sdes):
Post a message when the SDES infor changes for a source.
* gst/rtpmanager/rtpsession.c:
* gst/rtpmanager/rtpsource.c:
Update some comments.
Diffstat (limited to 'gst/rtpmanager/rtpsource.c')
-rw-r--r-- | gst/rtpmanager/rtpsource.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/rtpmanager/rtpsource.c b/gst/rtpmanager/rtpsource.c index 00f298d4..4985bccc 100644 --- a/gst/rtpmanager/rtpsource.c +++ b/gst/rtpmanager/rtpsource.c @@ -600,7 +600,7 @@ rtp_source_set_sdes_string (RTPSource * src, GstRTCPSDESType type, * @data remains valid until the next call to rtp_source_set_sdes(). * * Returns: %TRUE if @type was valid and @data and @len contain valid - * data. + * data. @data can be NULL when the item was unset. */ gboolean rtp_source_get_sdes (RTPSource * src, GstRTCPSDESType type, guint8 ** data, @@ -627,7 +627,7 @@ rtp_source_get_sdes (RTPSource * src, GstRTCPSDESType type, guint8 ** data, * Get the SDES item of @type from @src. * * Returns: a null-terminated copy of the SDES item or NULL when @type was not - * valid. g_free() after usage. + * valid or the SDES item was unset. g_free() after usage. */ gchar * rtp_source_get_sdes_string (RTPSource * src, GstRTCPSDESType type) |