Hide the little helper class that came over with the JPGEncoder inside the JPGEncoder file.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@585 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Robin Barooah
2008-07-30 00:13:31 +00:00
parent 5dd60e0d45
commit 84be5a1da6
2 changed files with 10 additions and 16 deletions
-15
View File
@@ -1,15 +0,0 @@
/**
* Forked from code from com.adobe.images.BitString.as in as3corelib under the license contained
* in that file to produce a derivative work.
*
* see:
* http://code.google.com/p/as3corelib/source/browse/trunk/src/com/adobe/images/BitString.as?r=25
*/
package com.threerings.flash
{
public class BitString
{
public var len:int = 0;
public var val:int = 0;
}
}
+10 -1
View File
@@ -20,7 +20,7 @@ import flash.utils.*;
* can be accessed via getJpeg.
*/
public class JPGEncoder
{
{
// Static table initialization
private var ZigZag:Array = [
@@ -701,3 +701,12 @@ public class JPGEncoder
protected var _pixelGranularity :int;
}
}
/**
* Helper class originally separate
*/
class BitString
{
public var len:int = 0;
public var val:int = 0;
}