diff --git a/README.md b/README.md index 067e8d79b..bc41f21ac 100644 --- a/README.md +++ b/README.md @@ -31,13 +31,12 @@ To build Strawberry from source you need the following installed on your system: * protobuf and development packages * boost development headers -* The following Qt5 components are required with additional development packages: - -- Qt5Core, Qt5Widgets, Qt5Network, Qt5Sql, Qt5Xml, Qt5OpenGL, Qt5Concurrent, Qt5Test, 5X11Extras, Qt5WebKit, Qt5WebKitWidget and Qt5DBus. +* The following Qt5 components are required with additional development packages: Qt5Core, Qt5Widgets, Qt5Network, Qt5Sql, Qt5Xml, Qt5OpenGL, Qt5Concurrent, Qt5Test, 5X11Extras, Qt5WebKit, Qt5WebKitWidget and Qt5DBus. * ALSA and libasound2 with development files * SQLite3 with development files * libchromaprint with development files +* TagLib 1.8 or higher with development files * libglu with development files Either GStreamer, Xine or VLC engine is required, but only GStreamer is fully implemented so far. diff --git a/src/engine/gstenginepipeline.cpp b/src/engine/gstenginepipeline.cpp index 229cff93e..360626efa 100644 --- a/src/engine/gstenginepipeline.cpp +++ b/src/engine/gstenginepipeline.cpp @@ -335,11 +335,6 @@ bool GstEnginePipeline::InitAudioBin() { gst_element_link_many(rgvolume_, rglimiter_, audioconvert2_, tee, nullptr); } - // Link the analyzer output of the tee and force 16 bit caps - //GstCaps* caps16 = gst_caps_new_simple("audio/x-raw", "format", G_TYPE_STRING, "S16LE", NULL); - //gst_element_link_filtered(probe_queue, probe_converter, caps16); - //gst_caps_unref(caps16); - // Don't force 16 bit. gst_element_link(probe_queue, probe_converter); @@ -347,7 +342,6 @@ bool GstEnginePipeline::InitAudioBin() { else gst_element_link_many(audio_queue, volume_, audioscale_, convert, nullptr); // Let the audio output of the tee autonegotiate the bit depth and format. - //GstCaps *caps = gst_caps_new_simple("audio/x-raw", "format", G_TYPE_STRING, "F32LE", NULL); GstCaps *caps = gst_caps_new_empty_simple("audio/x-raw"); gst_element_link_filtered(convert, audiosink_, caps);