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