From ae5bd442b79d44b0925e0f9b0e77c3ed74483838 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sat, 20 Dec 2008 11:46:30 +0000 Subject: ffmpeg fixes git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@696 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp') diff --git a/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp b/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp index 9a3dfcce5..e47187b84 100644 --- a/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp +++ b/src/plugins/Input/ffmpeg/decoderffmpegfactory.cpp @@ -140,8 +140,7 @@ 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) +#if (LIBAVFORMAT_VERSION_INT >= ((52<<16)+(17<<8)+0)) && (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) @@ -149,7 +148,6 @@ 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 ")); } -- cgit v1.2.3-13-gbd6f