Fix readGUID bug

git-svn-id: http://php-reader.googlecode.com/svn/trunk@254 51a70ab9-7547-0410-9469-37e369ee0574
This commit is contained in:
svollbehr
2011-07-07 09:14:41 +00:00
parent e411507e3d
commit 3354d7c0cf

View File

@@ -163,12 +163,12 @@ final class Zend_Media_Asf_Object_StreamProperties extends Zend_Media_Asf_Object
// break intentionally omitted // break intentionally omitted
case self::BINARY_MEDIA: case self::BINARY_MEDIA:
$this->_typeSpecificData = array $this->_typeSpecificData = array
('majorMediaType' => $this->_reader->getGUID(), ('majorMediaType' => $this->_reader->readGUID(),
'mediaSubtype' => $this->_reader->getGUID(), 'mediaSubtype' => $this->_reader->readGUID(),
'fixedSizeSamples' => $this->_reader->readUInt32LE(), 'fixedSizeSamples' => $this->_reader->readUInt32LE(),
'temporalCompression' => $this->_reader->readUInt32LE(), 'temporalCompression' => $this->_reader->readUInt32LE(),
'sampleSize' => $this->_reader->readUInt32LE(), 'sampleSize' => $this->_reader->readUInt32LE(),
'formatType' => $this->_reader->getGUID()); 'formatType' => $this->_reader->readGUID());
$formatDataSize = $this->_reader->readUInt32LE(); $formatDataSize = $this->_reader->readUInt32LE();
$this->_typeSpecificData['formatData'] = $this->_typeSpecificData['formatData'] =
$this->_reader->read($formatDataSize); $this->_reader->read($formatDataSize);