예제 #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