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