[xiph-commits] r15397 - in trunk/theora: lib/enc/x86_32 lib/enc/x86_64 win32/xmingw32

tterribe at svn.xiph.org tterribe at svn.xiph.org
Mon Oct 13 19:06:25 PDT 2008


Author: tterribe
Date: 2008-10-13 19:06:24 -0700 (Mon, 13 Oct 2008)
New Revision: 15397

Modified:
   trunk/theora/lib/enc/x86_32/dct_decode_mmx.c
   trunk/theora/lib/enc/x86_64/dct_decode_mmx.c
   trunk/theora/lib/enc/x86_64/dsp_mmx.c
   trunk/theora/lib/enc/x86_64/dsp_mmxext.c
   trunk/theora/lib/enc/x86_64/fdct_mmx.c
   trunk/theora/lib/enc/x86_64/idct_mmx.c
   trunk/theora/lib/enc/x86_64/recon_mmx.c
   trunk/theora/win32/xmingw32/Makefile
Log:
Minor build fixes for mingw32 cross-compilation.


Modified: trunk/theora/lib/enc/x86_32/dct_decode_mmx.c
===================================================================
--- trunk/theora/lib/enc/x86_32/dct_decode_mmx.c	2008-10-13 19:14:26 UTC (rev 15396)
+++ trunk/theora/lib/enc/x86_32/dct_decode_mmx.c	2008-10-14 02:06:24 UTC (rev 15397)
@@ -17,7 +17,7 @@
 
 #include <stdlib.h>
 
-#include "codec_internal.h"
+#include "../codec_internal.h"
 
 #if defined(USE_ASM)
 

Modified: trunk/theora/lib/enc/x86_64/dct_decode_mmx.c
===================================================================
--- trunk/theora/lib/enc/x86_64/dct_decode_mmx.c	2008-10-13 19:14:26 UTC (rev 15396)
+++ trunk/theora/lib/enc/x86_64/dct_decode_mmx.c	2008-10-14 02:06:24 UTC (rev 15397)
@@ -17,7 +17,7 @@
 
 #include <stdlib.h>
 
-#include "codec_internal.h"
+#include "../codec_internal.h"
 
 #if defined(USE_ASM)
 

Modified: trunk/theora/lib/enc/x86_64/dsp_mmx.c
===================================================================
--- trunk/theora/lib/enc/x86_64/dsp_mmx.c	2008-10-13 19:14:26 UTC (rev 15396)
+++ trunk/theora/lib/enc/x86_64/dsp_mmx.c	2008-10-14 02:06:24 UTC (rev 15397)
@@ -17,8 +17,8 @@
 
 #include <stdlib.h>
 
-#include "codec_internal.h"
-#include "dsp.h"
+#include "../codec_internal.h"
+#include "../dsp.h"
 
 #if defined(USE_ASM)
 

Modified: trunk/theora/lib/enc/x86_64/dsp_mmxext.c
===================================================================
--- trunk/theora/lib/enc/x86_64/dsp_mmxext.c	2008-10-13 19:14:26 UTC (rev 15396)
+++ trunk/theora/lib/enc/x86_64/dsp_mmxext.c	2008-10-14 02:06:24 UTC (rev 15397)
@@ -17,8 +17,8 @@
 
 #include <stdlib.h>
 
-#include "codec_internal.h"
-#include "dsp.h"
+#include "../codec_internal.h"
+#include "../dsp.h"
 
 #if defined(USE_ASM)
 

Modified: trunk/theora/lib/enc/x86_64/fdct_mmx.c
===================================================================
--- trunk/theora/lib/enc/x86_64/fdct_mmx.c	2008-10-13 19:14:26 UTC (rev 15396)
+++ trunk/theora/lib/enc/x86_64/fdct_mmx.c	2008-10-14 02:06:24 UTC (rev 15397)
@@ -14,8 +14,8 @@
 /* $Id$ */
 
 #include "theora/theora.h"
-#include "codec_internal.h"
-#include "dsp.h"
+#include "../codec_internal.h"
+#include "../dsp.h"
 
 #if defined(USE_ASM)
 

Modified: trunk/theora/lib/enc/x86_64/idct_mmx.c
===================================================================
--- trunk/theora/lib/enc/x86_64/idct_mmx.c	2008-10-13 19:14:26 UTC (rev 15396)
+++ trunk/theora/lib/enc/x86_64/idct_mmx.c	2008-10-14 02:06:24 UTC (rev 15397)
@@ -15,7 +15,7 @@
 
  ********************************************************************/
 
-#include "codec_internal.h"
+#include "../codec_internal.h"
 
 #if defined(USE_ASM)
 

Modified: trunk/theora/lib/enc/x86_64/recon_mmx.c
===================================================================
--- trunk/theora/lib/enc/x86_64/recon_mmx.c	2008-10-13 19:14:26 UTC (rev 15396)
+++ trunk/theora/lib/enc/x86_64/recon_mmx.c	2008-10-14 02:06:24 UTC (rev 15397)
@@ -15,7 +15,7 @@
 
  ********************************************************************/
 
-#include "codec_internal.h"
+#include "../codec_internal.h"
 
 #if defined(USE_ASM)
 

Modified: trunk/theora/win32/xmingw32/Makefile
===================================================================
--- trunk/theora/win32/xmingw32/Makefile	2008-10-13 19:14:26 UTC (rev 15396)
+++ trunk/theora/win32/xmingw32/Makefile	2008-10-14 02:06:24 UTC (rev 15397)
@@ -78,7 +78,7 @@
 
 LIBTHEORADEC_CSOURCES = \
 dec/apiwrapper.c \
-dec/bitwise.c \
+dec/bitpack.c \
 dec/decapiwrapper.c \
 dec/decinfo.c \
 dec/decode.c \



More information about the commits mailing list