summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorOlivier Crete <olivier.crete@collabora.co.uk>2009-04-27 11:09:08 +0200
committerWim Taymans <wim.taymans@collabora.co.uk>2009-04-27 11:11:11 +0200
commitcc51f90c1a74bc8bb61ff1121720d1ea36f074e5 (patch)
tree5c5b86a4721b9cd1531fd903618d2ab028c0e400 /gst
parentbf3ea86c2ffa74c064a26a134d7477560f54b6c3 (diff)
downloadgst-plugins-bad-cc51f90c1a74bc8bb61ff1121720d1ea36f074e5.tar.gz
gst-plugins-bad-cc51f90c1a74bc8bb61ff1121720d1ea36f074e5.tar.bz2
gst-plugins-bad-cc51f90c1a74bc8bb61ff1121720d1ea36f074e5.zip
rtpsouce: make WARNING into LOG
Since neither rtpmanager nor any of the payloaders properly implement pad allocation, there is no way for the rtpmanager to inform downstream elements of the new SSRC if there is an SSRC collision. So the warning is emitted all the time and it is confusing. Fixes #580144
Diffstat (limited to 'gst')
-rw-r--r--gst/rtpmanager/rtpsource.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gst/rtpmanager/rtpsource.c b/gst/rtpmanager/rtpsource.c
index 4fae901e..a40d974f 100644
--- a/gst/rtpmanager/rtpsource.c
+++ b/gst/rtpmanager/rtpsource.c
@@ -1140,7 +1140,9 @@ rtp_source_send_rtp (RTPSource * src, GstBuffer * buffer, guint64 ntpnstime)
* get the correct SSRC from the session manager before pushing anything. */
buffer = gst_buffer_make_writable (buffer);
- GST_WARNING ("updating SSRC from %08x to %08x, fix the payloader", ssrc,
+ /* FIXME, we don't want to warn yet because we can't inform any payloader
+ * of the changes SSRC yet because we don't implement pad-alloc. */
+ GST_LOG ("updating SSRC from %08x to %08x, fix the payloader", ssrc,
src->ssrc);
gst_rtp_buffer_set_ssrc (buffer, src->ssrc);
}