mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
adaptivedemux: Fix bitrate printed in debug
The download bitrate is already in bits per second, no need to multiply it by 8 again when printing it for debug.
This commit is contained in:
parent
691b5968e1
commit
1f2bc4a684
1 changed files with 1 additions and 2 deletions
|
@ -2026,8 +2026,7 @@ gst_adaptive_demux_stream_update_current_bitrate (GstAdaptiveDemux * demux,
|
|||
|
||||
stream->current_download_rate *= demux->bitrate_limit;
|
||||
GST_DEBUG_OBJECT (demux, "Bitrate after bitrate limit (%0.2f): %"
|
||||
G_GUINT64_FORMAT, demux->bitrate_limit,
|
||||
stream->current_download_rate * 8);
|
||||
G_GUINT64_FORMAT, demux->bitrate_limit, stream->current_download_rate);
|
||||
|
||||
#if 0
|
||||
/* Debugging code, modulate the bitrate every few fragments */
|
||||
|
|
Loading…
Reference in a new issue