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:
@@ -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;
|
||||
}
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user