mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
rtph264pay: Use GST_WARNING_OBJECT() instead of GST_WARNING()
This commit is contained in:
parent
ceaf90f027
commit
978903cd87
1 changed files with 2 additions and 2 deletions
|
@ -736,7 +736,7 @@ gst_rtp_h264_pay_send_sps_pps (GstRTPBasePayload * basepayload,
|
|||
/* Not critical here; but throw a warning */
|
||||
if (ret != GST_FLOW_OK) {
|
||||
sent_all_sps_pps = FALSE;
|
||||
GST_WARNING ("Problem pushing SPS");
|
||||
GST_WARNING_OBJECT (basepayload, "Problem pushing SPS");
|
||||
}
|
||||
}
|
||||
for (i = 0; i < rtph264pay->pps->len; i++) {
|
||||
|
@ -750,7 +750,7 @@ gst_rtp_h264_pay_send_sps_pps (GstRTPBasePayload * basepayload,
|
|||
/* Not critical here; but throw a warning */
|
||||
if (ret != GST_FLOW_OK) {
|
||||
sent_all_sps_pps = FALSE;
|
||||
GST_WARNING ("Problem pushing PPS");
|
||||
GST_WARNING_OBJECT (basepayload, "Problem pushing PPS");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue