vlc/vlc-2.0 | branch: master | Rafaël Carré <[email protected]> | Sun Jan 29 04:14:20 2012 -0500| [474e7ac066a8d8078b80ea4295b36ae67af8912b] | committer: Jean-Baptiste Kempf
avcodec: don't include non existing header (cherry picked from commit b3a6617f9d6a0ddff58ec72871b02dbf98fb4f37) Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=474e7ac066a8d8078b80ea4295b36ae67af8912b --- modules/codec/avcodec/audio.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/modules/codec/avcodec/audio.c b/modules/codec/avcodec/audio.c index 548ff3c..dbe2bed 100644 --- a/modules/codec/avcodec/audio.c +++ b/modules/codec/avcodec/audio.c @@ -41,7 +41,9 @@ # include <avcodec.h> #endif -#include "libavutil/audioconvert.h" +#if LIBAVUTIL_VERSION_INT >= ((52<<16)+(38<<8)+0) +# include "libavutil/audioconvert.h" +#endif #include "avcodec.h" _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
