aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/mpeg/decodermpegfactory.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-12-29 20:41:43 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-12-29 20:41:43 +0000
commitbb3d30d8bf39075b19e72c7dcf871cd17f0c2581 (patch)
treef5b451da360b45b329cd178334245f00cf191640 /src/plugins/Input/mpeg/decodermpegfactory.cpp
parent0347366082328593b9981fa59ec7e4d6c0febb6b (diff)
downloadqmmp-bb3d30d8bf39075b19e72c7dcf871cd17f0c2581.tar.gz
qmmp-bb3d30d8bf39075b19e72c7dcf871cd17f0c2581.tar.bz2
qmmp-bb3d30d8bf39075b19e72c7dcf871cd17f0c2581.zip
mpeg: fixed about dialog
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7810 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/mpeg/decodermpegfactory.cpp')
-rw-r--r--src/plugins/Input/mpeg/decodermpegfactory.cpp17
1 files changed, 13 insertions, 4 deletions
diff --git a/src/plugins/Input/mpeg/decodermpegfactory.cpp b/src/plugins/Input/mpeg/decodermpegfactory.cpp
index 5b08a94df..2281c018d 100644
--- a/src/plugins/Input/mpeg/decodermpegfactory.cpp
+++ b/src/plugins/Input/mpeg/decodermpegfactory.cpp
@@ -292,11 +292,20 @@ void DecoderMPEGFactory::showSettings(QWidget *parent)
void DecoderMPEGFactory::showAbout(QWidget *parent)
{
QMessageBox::about (parent, tr("About MPEG Audio Plugin"),
- tr("Qmmp MPEG Audio Plugin")+"\n"+
- tr("Compiled against libmad version:")+" "+
- QString("%1.%2.%3%4").arg(MAD_VERSION_MAJOR)
+ tr("MPEG 1.0/2.0/2.5 layer 1/2/3 audio decoder")+"\n"+
+ tr("Compiled against:") + "\n" +
+#ifdef WITH_MAD
+ QString("libmad-%1.%2.%3%4")
+ .arg(MAD_VERSION_MAJOR)
.arg(MAD_VERSION_MINOR)
- .arg(MAD_VERSION_PATCH).arg(MAD_VERSION_EXTRA)+"\n"+
+ .arg(MAD_VERSION_PATCH)
+ .arg(MAD_VERSION_EXTRA) + "\n" +
+#endif
+#ifdef WITH_MAD
+ tr("mpg123, API version: %1")
+ .arg(MPG123_API_VERSION) + "\n" +
+#endif
+
tr("Written by: Ilya Kotov <forkotov02@ya.ru>")+"\n"+
tr("Source code based on mq3 and madplay projects")
);