mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
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
This commit is contained in:
parent
63636b1290
commit
3482b47666
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue