mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
rtpsource: fix warning message
https://bugzilla.gnome.org/show_bug.cgi?id=780105
This commit is contained in:
parent
0747b56f8e
commit
9ffef7ecd5
1 changed files with 1 additions and 1 deletions
|
@ -1280,7 +1280,7 @@ rtp_source_send_rtp (RTPSource * src, RTPPacketInfo * pinfo)
|
||||||
return GST_FLOW_OK;
|
return GST_FLOW_OK;
|
||||||
|
|
||||||
if (src->pt_set && src->pt != pinfo->pt) {
|
if (src->pt_set && src->pt != pinfo->pt) {
|
||||||
GST_WARNING ("Changing pt to %u for SSRC %u", src->ssrc, pinfo->pt);
|
GST_WARNING ("Changing pt from %u to %u for SSRC %u", src->pt, pinfo->pt, src->ssrc);
|
||||||
}
|
}
|
||||||
|
|
||||||
src->pt = pinfo->pt;
|
src->pt = pinfo->pt;
|
||||||
|
|
Loading…
Reference in a new issue