From 3921b7170673525a45bbfbc0abc93b401e29f794 Mon Sep 17 00:00:00 2001 From: diego Date: Sun, 9 May 2010 12:28:15 +0000 Subject: Use the system liba52 headers when internal liba52 is disabled, fixes: libmpdemux/muxer_mpeg.c:2121: warning: implicit declaration of function 'a52_syncinfo' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31146 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/muxer_mpeg.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libmpdemux/muxer_mpeg.c b/libmpdemux/muxer_mpeg.c index 7dcbeed784..868c20da43 100644 --- a/libmpdemux/muxer_mpeg.c +++ b/libmpdemux/muxer_mpeg.c @@ -38,7 +38,12 @@ #include "aac_hdr.h" #include "mpeg_hdr.h" #include "mp3_hdr.h" + +#ifdef CONFIG_LIBA52 +#include +#else #include "liba52/a52.h" +#endif #define PACK_HEADER_START_CODE 0x01ba #define SYSTEM_HEADER_START_CODE 0x01bb -- cgit v1.2.3