mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
rtph265pay: Use GST_WARNING_OBJECT() instead of GST_WARNING()
https://bugzilla.gnome.org/show_bug.cgi?id=753228
This commit is contained in:
parent
585e042fca
commit
5b2ddfb90c
1 changed files with 2 additions and 2 deletions
|
@ -874,7 +874,7 @@ gst_rtp_h265_pay_send_vps_sps_pps (GstRTPBasePayload * basepayload,
|
|||
/* Not critical here; but throw a warning */
|
||||
if (ret != GST_FLOW_OK) {
|
||||
sent_all_vps_sps_pps = FALSE;
|
||||
GST_WARNING ("Problem pushing VPS");
|
||||
GST_WARNING_OBJECT (basepayload, "Problem pushing VPS");
|
||||
}
|
||||
}
|
||||
for (i = 0; i < rtph265pay->sps->len; i++) {
|
||||
|
@ -888,7 +888,7 @@ gst_rtp_h265_pay_send_vps_sps_pps (GstRTPBasePayload * basepayload,
|
|||
/* Not critical here; but throw a warning */
|
||||
if (ret != GST_FLOW_OK) {
|
||||
sent_all_vps_sps_pps = FALSE;
|
||||
GST_WARNING ("Problem pushing SPS");
|
||||
GST_WARNING_OBJECT (basepayload, "Problem pushing SPS");
|
||||
}
|
||||
}
|
||||
for (i = 0; i < rtph265pay->pps->len; i++) {
|
||||
|
|
Loading…
Reference in a new issue