mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 05:28:48 +00:00
mssdemux: Add missing object param to GST_DEBUG|INFO_OBJECT calls
This commit is contained in:
parent
2219a3a1cc
commit
28beb2ebd7
1 changed files with 2 additions and 2 deletions
|
@ -959,13 +959,13 @@ gst_mss_demux_reconfigure (GstMssDemux * mssdemux)
|
||||||
new_bitrate = MIN (mssdemux->connection_speed, new_bitrate);
|
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);
|
gst_mss_demux_stop_tasks (mssdemux, TRUE);
|
||||||
if (gst_mss_manifest_change_bitrate (mssdemux->manifest, new_bitrate)) {
|
if (gst_mss_manifest_change_bitrate (mssdemux->manifest, new_bitrate)) {
|
||||||
GstClockTime newseg_ts = GST_CLOCK_TIME_NONE;
|
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");
|
GST_DEBUG_OBJECT (mssdemux, "Creating new pad group");
|
||||||
/* if we changed the bitrate, we need to add new pads */
|
/* if we changed the bitrate, we need to add new pads */
|
||||||
|
|
Loading…
Reference in a new issue