Example #1
0
 def readFourCCAsString(self):
     return ByteUtils.decodeFourCC(self.read(4), self.isLittleEndian)
Example #2
0
 def readFourCCAsString(self):
     return ByteUtils.decodeFourCC(self.read(4), self.isLittleEndian)
Example #3
0
 def writeFourCC(self, fourCC):
     if StringUtils.isStringType(fourCC):
         fourCC = ByteUtils.getAsFourCC(fourCC, self.isLittleEndian)
     self.writeUint32(fourCC)
Example #4
0
 def writeFourCC(self, fourCC):
     if StringUtils.isStringType(fourCC):
         fourCC = ByteUtils.getAsFourCC(fourCC, self.isLittleEndian)
     self.writeUint32(fourCC)