changeset 31089:459227551819

Use the system liba52 headers when internal liba52 is disabled, fixes: libmpdemux/muxer_mpeg.c:2121: warning: implicit declaration of function 'a52_syncinfo'
author diego
date Sun, 09 May 2010 12:28:15 +0000
parents fb0f2042a60b
children 1aece15222b5
files libmpdemux/muxer_mpeg.c
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/muxer_mpeg.c	Sun May 09 11:20:15 2010 +0000
+++ b/libmpdemux/muxer_mpeg.c	Sun May 09 12:28:15 2010 +0000
@@ -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