diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2013-02-12 15:40:26 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2013-02-12 15:40:26 +0000 |
| commit | a1f385f90cc82e6cf8e3424cc122d3f4e0482796 (patch) | |
| tree | 2d7e797de967abd11b3e6225c4af0c3604265ee4 /src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp | |
| parent | 2a9593b20a26865f4f04ec8f68a48fc5f4ebbf2c (diff) | |
| download | qmmp-a1f385f90cc82e6cf8e3424cc122d3f4e0482796.tar.gz qmmp-a1f385f90cc82e6cf8e3424cc122d3f4e0482796.tar.bz2 qmmp-a1f385f90cc82e6cf8e3424cc122d3f4e0482796.zip | |
ffmpeg plugin: added libavutil version to about dialog
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3235 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp')
| -rw-r--r-- | src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp b/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp index 52bf3e3b7..bd2e600ec 100644 --- a/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp +++ b/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp @@ -25,6 +25,7 @@ extern "C"{ #include <libavformat/avformat.h> #include <libavcodec/avcodec.h> #include <libavutil/dict.h> +#include <libavutil/avutil.h> } #include "ffmpegmetadatamodel.h" @@ -228,15 +229,20 @@ void DecoderFFmpegFactory::showSettings(QWidget *parent) void DecoderFFmpegFactory::showAbout(QWidget *parent) { QMessageBox::about (parent, tr("About FFmpeg Audio Plugin"), - tr("Qmmp FFmpeg Audio Plugin")+"\n"+ - QString(tr("Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6")) + tr("Compiled against:") + "\n"+ + QString("libavformat-%1.%2.%3\n" + "libavcodec-%4.%5.%6\n" + "libavutil-%7.%8.%9") .arg(LIBAVFORMAT_VERSION_MAJOR) .arg(LIBAVFORMAT_VERSION_MINOR) .arg(LIBAVFORMAT_VERSION_MICRO) .arg(LIBAVCODEC_VERSION_MAJOR) .arg(LIBAVCODEC_VERSION_MINOR) - .arg(LIBAVCODEC_VERSION_MICRO)+"\n"+ + .arg(LIBAVCODEC_VERSION_MICRO) + .arg(LIBAVUTIL_VERSION_MAJOR) + .arg(LIBAVUTIL_VERSION_MINOR) + .arg(LIBAVUTIL_VERSION_MICRO) +"\n"+ tr("Written by: Ilya Kotov <forkotov02@hotmail.ru>")); } |
