mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
rtpjitterbuffer: fix debug message on pt mismatch
This commit is contained in:
parent
33e595b41c
commit
6cb51bd8cf
1 changed files with 1 additions and 1 deletions
|
@ -1416,7 +1416,7 @@ gst_jitter_buffer_sink_parse_caps (GstRtpJitterBuffer * jitterbuffer,
|
|||
if (gst_structure_get_int (caps_struct, "payload", &payload) && pt != -1
|
||||
&& payload != pt) {
|
||||
GST_ERROR_OBJECT (jitterbuffer,
|
||||
"Got caps with wrong payload type (got %d, expected %d)", payload, pt);
|
||||
"Got caps with wrong payload type (got %d, expected %d)", pt, payload);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue