mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
player: Logging fix for updated audio info
Bitrate was logged a second time instead of the max_bitrate.
This commit is contained in:
parent
3891bf2695
commit
b5af1b9f2e
1 changed files with 1 additions and 1 deletions
|
@ -2265,7 +2265,7 @@ gst_player_audio_info_update (GstPlayer * self,
|
|||
|
||||
GST_DEBUG_OBJECT (self, "language=%s rate=%d channels=%d bitrate=%d "
|
||||
"max_bitrate=%d", info->language, info->sample_rate, info->channels,
|
||||
info->bitrate, info->bitrate);
|
||||
info->bitrate, info->max_bitrate);
|
||||
}
|
||||
|
||||
static GstPlayerStreamInfo *
|
||||
|
|
Loading…
Reference in a new issue