[xiph-commits] r17140 - trunk/cronus/src/com/meviatronic/zeus/pollux

mike at svn.xiph.org mike at svn.xiph.org
Sun Apr 11 09:37:16 PDT 2010


Author: mike
Date: 2010-04-11 09:37:16 -0700 (Sun, 11 Apr 2010)
New Revision: 17140

Modified:
   trunk/cronus/src/com/meviatronic/zeus/pollux/TheoraDecoder.java
Log:
Added getYCbCrData and made display public to make Pollux ready for PSNR Test.

Modified: trunk/cronus/src/com/meviatronic/zeus/pollux/TheoraDecoder.java
===================================================================
--- trunk/cronus/src/com/meviatronic/zeus/pollux/TheoraDecoder.java	2010-04-11 16:34:17 UTC (rev 17139)
+++ trunk/cronus/src/com/meviatronic/zeus/pollux/TheoraDecoder.java	2010-04-11 16:37:16 UTC (rev 17140)
@@ -2236,7 +2236,7 @@
 		}
 	}
 
-	boolean display() {
+	public boolean display() {
 		if (ncbs == 0 || externFrameCount == internFrameCount) {
 			return false;
 		}
@@ -2256,8 +2256,11 @@
 		externFrameCount = internFrameCount;
 		return true;
 	}
-
 	
+	public final short[][] getYCbCrData() {
+		return ref;
+	}
+	
 	/**
 	 * Frees all system resources, which are bounded to this object.
 	 */



More information about the commits mailing list