コード例 #1
0
ファイル: Encoder.py プロジェクト: GINK03/shedskin
 def __init__(self, inputStream, outputStream, options):
     Common.__init__(self, inputStream, outputStream, options)
     self.rcBuffer = 0
     self.rcRange = 0x7fffffff
     self.xFFRunLength = 0
     self.lastOutputByte = 0
     self.delay = False
     self.carry = False
コード例 #2
0
ファイル: Encoder.py プロジェクト: yws/shedskin
 def __init__(self, inputStream, outputStream, options):
     Common.__init__(self, inputStream, outputStream, options)
     self.rcBuffer = 0
     self.rcRange = 0x7fffffff
     self.xFFRunLength = 0
     self.lastOutputByte = 0
     self.delay = False
     self.carry = False
コード例 #3
0
ファイル: Decoder.py プロジェクト: GINK03/shedskin
 def __init__(self, inputStream, outputStream, options):
     Common.__init__(self, inputStream, outputStream, options)
     self.started = False
     self.nextHighBit = 0
     self.rcBuffer = 0
     self.rcRange = 0
コード例 #4
0
 def __init__(self, inputStream, outputStream, options):
     Common.__init__(self, inputStream, outputStream, options)
     self.started = False
     self.nextHighBit = 0
     self.rcBuffer = 0
     self.rcRange = 0