[MPlayer-cvslog] r23658 - in trunk: libmpcodecs/ad_hwac3.c libmpcodecs/ad_liba52.c mpbswap.h

reimar subversion at mplayerhq.hu
Sun Jun 24 17:25:32 CEST 2007


Author: reimar
Date: Sun Jun 24 17:25:32 2007
New Revision: 23658

Log:
Make sure we always have a swab() prototype when we use it,
even if we use our osdep/swab.c emulation


Modified:
   trunk/libmpcodecs/ad_hwac3.c
   trunk/libmpcodecs/ad_liba52.c
   trunk/mpbswap.h

Modified: trunk/libmpcodecs/ad_hwac3.c
==============================================================================
--- trunk/libmpcodecs/ad_hwac3.c	(original)
+++ trunk/libmpcodecs/ad_hwac3.c	Sun Jun 24 17:25:32 2007
@@ -15,6 +15,7 @@
 
 #include "mp_msg.h"
 #include "help_mp.h"
+#include "mpbswap.h"
 
 #include "ad_internal.h"
 

Modified: trunk/libmpcodecs/ad_liba52.c
==============================================================================
--- trunk/libmpcodecs/ad_liba52.c	(original)
+++ trunk/libmpcodecs/ad_liba52.c	Sun Jun 24 17:25:32 2007
@@ -8,6 +8,7 @@
 
 #include "mp_msg.h"
 #include "help_mp.h"
+#include "mpbswap.h"
 
 #include "ad_internal.h"
 

Modified: trunk/mpbswap.h
==============================================================================
--- trunk/mpbswap.h	(original)
+++ trunk/mpbswap.h	Sun Jun 24 17:25:32 2007
@@ -2,5 +2,6 @@
 #define MPBSWAP_H
 
 #include "libavutil/bswap.h"
+void swab(const void *from, void *to, ssize_t n);
 
 #endif /* MPBSWAP_H */



More information about the MPlayer-cvslog mailing list