diff options
Diffstat (limited to 'src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp')
| -rw-r--r-- | src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp b/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp index e7e68537e..9a3dfcce5 100644 --- a/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp +++ b/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp @@ -138,7 +138,10 @@ void DecoderFFmpegFactory::showSettings(QWidget *parent) void DecoderFFmpegFactory::showAbout(QWidget *parent) { QMessageBox::about (parent, tr("About FFmpeg Audio Plugin"), + tr("Qmmp FFmpeg Audio Plugin")+"\n"+ +#if LIBAVFORMAT_VERSION_INT >= ((52<<16)+(17<<8)+0) +#if LIBAVCODEC_VERSION_INT >= ((51<<16)+(60<<8)+0) QString(tr("Compiled against libavformat-%1.%2.%3 and libavcodec-%4.%5.%6")) .arg(LIBAVFORMAT_VERSION_MAJOR) .arg(LIBAVFORMAT_VERSION_MINOR) @@ -146,6 +149,8 @@ void DecoderFFmpegFactory::showAbout(QWidget *parent) .arg(LIBAVCODEC_VERSION_MAJOR) .arg(LIBAVCODEC_VERSION_MINOR) .arg(LIBAVCODEC_VERSION_MICRO)+"\n"+ +#endif +#endif tr("Writen by: Ilya Kotov <forkotov02@hotmail.ru>")); } |
