rtpsource: fix warning message

https://bugzilla.gnome.org/show_bug.cgi?id=780105
This commit is contained in:
Miguel París Díaz 2017-03-16 14:58:45 +01:00 committed by Sebastian Dröge
parent 0747b56f8e
commit 9ffef7ecd5

View file

@ -1280,7 +1280,7 @@ rtp_source_send_rtp (RTPSource * src, RTPPacketInfo * pinfo)
return GST_FLOW_OK;
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;