From 3354d7c0cf61c42e9a4ba9be61b108559a61d1a1 Mon Sep 17 00:00:00 2001 From: svollbehr Date: Thu, 7 Jul 2011 09:14:41 +0000 Subject: [PATCH] Fix readGUID bug git-svn-id: http://php-reader.googlecode.com/svn/trunk@254 51a70ab9-7547-0410-9469-37e369ee0574 --- src/Zend/Media/Asf/Object/StreamProperties.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Zend/Media/Asf/Object/StreamProperties.php b/src/Zend/Media/Asf/Object/StreamProperties.php index b341efa..c69e62a 100644 --- a/src/Zend/Media/Asf/Object/StreamProperties.php +++ b/src/Zend/Media/Asf/Object/StreamProperties.php @@ -163,12 +163,12 @@ final class Zend_Media_Asf_Object_StreamProperties extends Zend_Media_Asf_Object // break intentionally omitted case self::BINARY_MEDIA: $this->_typeSpecificData = array - ('majorMediaType' => $this->_reader->getGUID(), - 'mediaSubtype' => $this->_reader->getGUID(), + ('majorMediaType' => $this->_reader->readGUID(), + 'mediaSubtype' => $this->_reader->readGUID(), 'fixedSizeSamples' => $this->_reader->readUInt32LE(), 'temporalCompression' => $this->_reader->readUInt32LE(), 'sampleSize' => $this->_reader->readUInt32LE(), - 'formatType' => $this->_reader->getGUID()); + 'formatType' => $this->_reader->readGUID()); $formatDataSize = $this->_reader->readUInt32LE(); $this->_typeSpecificData['formatData'] = $this->_reader->read($formatDataSize);