From 28beb2ebd7d7669ab58c047d16b36f45e03e4087 Mon Sep 17 00:00:00 2001 From: "Andre Moreira Magalhaes (andrunko)" Date: Tue, 5 Feb 2013 03:27:22 -0200 Subject: [PATCH] mssdemux: Add missing object param to GST_DEBUG|INFO_OBJECT calls --- ext/smoothstreaming/gstmssdemux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/smoothstreaming/gstmssdemux.c b/ext/smoothstreaming/gstmssdemux.c index cb9840119a..d5558c1697 100644 --- a/ext/smoothstreaming/gstmssdemux.c +++ b/ext/smoothstreaming/gstmssdemux.c @@ -959,13 +959,13 @@ gst_mss_demux_reconfigure (GstMssDemux * mssdemux) new_bitrate = MIN (mssdemux->connection_speed, new_bitrate); } - GST_DEBUG_OBJECT ("Current suggested bitrate: %llu", new_bitrate); + GST_DEBUG_OBJECT (mssdemux, "Current suggested bitrate: %llu", new_bitrate); gst_mss_demux_stop_tasks (mssdemux, TRUE); if (gst_mss_manifest_change_bitrate (mssdemux->manifest, new_bitrate)) { GstClockTime newseg_ts = GST_CLOCK_TIME_NONE; - GST_INFO_OBJECT ("Switching to bitrate %llu", new_bitrate); + GST_INFO_OBJECT (mssdemux, "Switching to bitrate %llu", new_bitrate); GST_DEBUG_OBJECT (mssdemux, "Creating new pad group"); /* if we changed the bitrate, we need to add new pads */