From 9c4cba3a57b18aec9c4ec2c40b79bcdf3a02ad35 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Sun, 29 Jan 2017 22:31:21 +0100 Subject: [PATCH] streaminfo2: add comment because of broken libcoolstream2 output Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/891bc71f9d834fa72427fbcb10a8dec153d49653 Author: vanhofen Date: 2017-01-29 (Sun, 29 Jan 2017) Origin message was: ------------------ - streaminfo2: add comment because of broken libcoolstream2 output --- src/gui/streaminfo2.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/gui/streaminfo2.cpp b/src/gui/streaminfo2.cpp index 7d9d6e93c..d99ab6818 100644 --- a/src/gui/streaminfo2.cpp +++ b/src/gui/streaminfo2.cpp @@ -620,12 +620,17 @@ void CStreamInfo2::paint_techinfo(int xpos, int ypos) average_bitrate_pos = ypos += iheight; //AUDIOTYPE ypos += iheight; - int type, layer, freq, mode, lbitrate; - audioDecoder->getAudioInfo(type, layer, freq, lbitrate, mode); snprintf(buf, sizeof(buf), "%s:", g_Locale->getText (LOCALE_STREAMINFO_AUDIOTYPE)); g_Font[font_info]->RenderString (xpos, ypos, box_width, buf, COL_MENUCONTENT_TEXT); + int type, layer, freq, mode, lbitrate; + /* + audioDecoder->getAudioInfo() seems broken in libcoolstream2. + ddmode is always 1 ("CH1/CH2"). + */ + audioDecoder->getAudioInfo(type, layer, freq, lbitrate, mode); + if (type == AUDIO_FMT_MPEG) { const char *mpegmodes[] =