summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis de Bethencourt <luis@debethencourt.com>2015-08-15 11:41:40 +0100
committerLuis de Bethencourt <luis@debethencourt.com>2015-08-15 11:41:43 +0100
commit5b2ddfb90cadf5d634be1c1b4759a703f5f9e6dd (patch)
treea71b48acab9b6a67a306201503734a5cd7849c56
parent585e042fca1536e8fe1c5f47672fdc01e946419d (diff)
downloadgstreamer-plugins-bad-5b2ddfb90cadf5d634be1c1b4759a703f5f9e6dd.tar.gz
rtph265pay: Use GST_WARNING_OBJECT() instead of GST_WARNING()
https://bugzilla.gnome.org/show_bug.cgi?id=753228
-rw-r--r--gst/rtp/gstrtph265pay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/rtp/gstrtph265pay.c b/gst/rtp/gstrtph265pay.c
index 1ed17f88f..549deb8d9 100644
--- a/gst/rtp/gstrtph265pay.c
+++ b/gst/rtp/gstrtph265pay.c
@@ -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++) {