Add write support for iTunes/iPod and ID3v2 extensions for ISO 14496

git-svn-id: http://php-reader.googlecode.com/svn/trunk@92 51a70ab9-7547-0410-9469-37e369ee0574
This commit is contained in:
svollbehr
2008-05-10 13:43:14 +00:00
parent 01ba3eacdb
commit a97d59bf89
70 changed files with 1060 additions and 312 deletions

View File

@@ -87,14 +87,17 @@ final class ISO14496_Box_SDTP extends ISO14496_Box_Full
*
* @param Reader $reader The reader object.
*/
public function __construct($reader)
public function __construct($reader, &$options = array())
{
parent::__construct($reader);
parent::__construct($reader, $options);
for ($i = 0; $this->_reader->getOffset() <
$this->_offset + $this->_size; $i++)
$data = $this->_reader->read
($this->getOffset() + $this->getSize() - $this->_reader->getOffset());
$dataSize = strlen($data);
for ($i = 1; $i <= $dataSize; $i++)
$this->_sampleDependencyTypeTable[$i] = array
("sampleDependsOn" => (($tmp = $this->_reader->readInt8()) >> 4) & 0x3,
("sampleDependsOn" => (($tmp = Transform::fromInt8
($data[$i - 1])) >> 4) & 0x3,
"sampleIsDependedOn" => ($tmp >> 2) & 0x3,
"sampleHasRedundancy" => $tmp & 0x3);
}