[MPlayer-cvslog] r31146 - trunk/libmpdemux/muxer_mpeg.c

diego subversion at mplayerhq.hu
Sun May 9 14:28:15 CEST 2010


Author: diego
Date: Sun May  9 14:28:15 2010
New Revision: 31146

Log:
Use the system liba52 headers when internal liba52 is disabled, fixes:
libmpdemux/muxer_mpeg.c:2121: warning: implicit declaration of function 'a52_syncinfo'

Modified:
   trunk/libmpdemux/muxer_mpeg.c

Modified: trunk/libmpdemux/muxer_mpeg.c
==============================================================================
--- trunk/libmpdemux/muxer_mpeg.c	Sun May  9 13:20:15 2010	(r31145)
+++ trunk/libmpdemux/muxer_mpeg.c	Sun May  9 14:28:15 2010	(r31146)
@@ -38,7 +38,12 @@
 #include "aac_hdr.h"
 #include "mpeg_hdr.h"
 #include "mp3_hdr.h"
+
+#ifdef CONFIG_LIBA52
+#include <a52dec/a52.h>
+#else
 #include "liba52/a52.h"
+#endif
 
 #define PACK_HEADER_START_CODE 0x01ba
 #define SYSTEM_HEADER_START_CODE 0x01bb


More information about the MPlayer-cvslog mailing list