[xiph-commits] r17574 - in trunk/theora/lib: . x86
tterribe at svn.xiph.org
tterribe at svn.xiph.org
Thu Oct 28 17:32:55 PDT 2010
Author: tterribe
Date: 2010-10-28 17:32:55 -0700 (Thu, 28 Oct 2010)
New Revision: 17574
Modified:
trunk/theora/lib/collect.c
trunk/theora/lib/x86/sse2idct.c
Log:
Two minor fixes.
sse2idct.c was needlessly including x86enc.h when it is part of the decoder.
collect.c had a trailing space.
Modified: trunk/theora/lib/collect.c
===================================================================
--- trunk/theora/lib/collect.c 2010-10-27 14:53:59 UTC (rev 17573)
+++ trunk/theora/lib/collect.c 2010-10-29 00:32:55 UTC (rev 17574)
@@ -556,7 +556,7 @@
samples in each bin to overcome the constant OC_ZWEIGHT factor.
This encourages sampling under-populated bins and prevents a single large
sample early on from discouraging coding in that bin ever again.*/
- for(pli=0;pli<3;pli++){
+ for(pli=0;pli<3;pli++){
for(qti=0;qti<2;qti++){
for(qi=0;qi<OC_LOGQ_BINS;qi++){
for(si=0;si<OC_SAD_BINS;si++){
Modified: trunk/theora/lib/x86/sse2idct.c
===================================================================
--- trunk/theora/lib/x86/sse2idct.c 2010-10-27 14:53:59 UTC (rev 17573)
+++ trunk/theora/lib/x86/sse2idct.c 2010-10-29 00:32:55 UTC (rev 17574)
@@ -16,7 +16,7 @@
********************************************************************/
/*SSE2 acceleration of Theora's iDCT.*/
-#include "x86enc.h"
+#include "x86int.h"
#include "sse2trans.h"
#include "../dct.h"
More information about the commits
mailing list