diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-12-19 21:03:26 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-12-19 21:03:26 +0000 |
| commit | e2ea9649d46670bfaecf1fa16adde6e213604497 (patch) | |
| tree | 15b1e75b7a9c167d549b010c8296d67aa49feb77 /src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp | |
| parent | 64e0bfa3e7c648ba3d6eba5b21ca0a927e5e5b92 (diff) | |
| download | qmmp-e2ea9649d46670bfaecf1fa16adde6e213604497.tar.gz qmmp-e2ea9649d46670bfaecf1fa16adde6e213604497.tar.bz2 qmmp-e2ea9649d46670bfaecf1fa16adde6e213604497.zip | |
fixed ffmpeg plugin build
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@695 90c681e8-e032-0410-971d-27865f9a5e38
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>")); } |
