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
+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;
}