当前位置: 首页>>代码示例>>PHP>>正文


PHP Zend_Media_Iso14496_FullBox::_writeData方法代码示例

本文整理汇总了PHP中Zend_Media_Iso14496_FullBox::_writeData方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Media_Iso14496_FullBox::_writeData方法的具体用法?PHP Zend_Media_Iso14496_FullBox::_writeData怎么用?PHP Zend_Media_Iso14496_FullBox::_writeData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend_Media_Iso14496_FullBox的用法示例。


在下文中一共展示了Zend_Media_Iso14496_FullBox::_writeData方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     $writer->writeString8($this->_name, 1)->write($this->_location);
 }
开发者ID:adam-fonseca,项目名称:RuneUI,代码行数:11,代码来源:Urn.php

示例2: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     $writer->writeUInt24BE($this->_defaultEncryption)->writeUInt8($this->_defaultIVSize)->write($this->_defaultKID);
 }
开发者ID:google-code-backups,项目名称:php-reader,代码行数:11,代码来源:Tenc.php

示例3: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     $writer->write($this->_location);
 }
开发者ID:lokamaya,项目名称:zend-mp3,代码行数:11,代码来源:Url.php

示例4: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     $writer->writeUInt32BE($entryCount = count($this->_chunkOffsetTable));
     for ($i = 1; $i <= $entryCount; $i++) {
         $writer->writeUInt32BE($this->_chunkOffsetTable[$i]);
     }
 }
开发者ID:lokamaya,项目名称:zend-mp3,代码行数:14,代码来源:Stco.php

示例5: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     if ($this->getVersion() == 1) {
         $writer->writeInt64BE($this->_fragmentDuration);
     } else {
         $writer->writeUInt32BE($this->_fragmentDuration);
     }
 }
开发者ID:andreiamfg,项目名称:MobileWebHybrid,代码行数:15,代码来源:Mehd.php

示例6: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     if ($this->getVersion() == 1) {
         $writer->writeInt64BE($this->_creationTime)->writeInt64BE($this->_modificationTime)->writeUInt32BE($this->_trackId)->writeUInt32BE(0)->writeInt64BE($this->_duration);
     } else {
         $writer->writeUInt32BE($this->_creationTime)->writeUInt32BE($this->_modificationTime)->writeUInt32BE($this->_trackId)->writeUInt32BE(0)->writeUInt32BE($this->_duration);
     }
     @(list(, $volumeDecimals) = explode('.', (double) $this->_volume));
     $writer->write(str_pad('', 8, ""))->writeInt16BE($this->_layer)->writeInt16BE($this->_alternateGroup)->writeUInt16BE(floor($this->_volume) << 8 | $volumeDecimals)->write(str_pad('', 2, ""));
     for ($i = 0; $i < 9; $i++) {
         $writer->writeUInt32BE($this->_matrix[$i]);
     }
     @(list(, $widthDecimals) = explode('.', (double) $this->_width));
     @(list(, $heightDecimals) = explode('.', (double) $this->_height));
     $writer->writeUInt32BE(floor($this->_width) << 16 | $widthDecimals)->writeUInt32BE(floor($this->_height) << 16 | $heightDecimals);
 }
开发者ID:lokamaya,项目名称:zend-mp3,代码行数:23,代码来源:Tkhd.php

示例7: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     $writer->writeUInt32BE($entryCount = count($this->_entries));
     for ($i = 0; $i < $entryCount; $i++) {
         if ($this->getVersion() == 1) {
             $writer->writeInt64BE($this->_entries[$i]['segmentDuration'])->writeInt64BE($this->_entries[$i]['mediaTime']);
         } else {
             $writer->writeUInt32BE($this->_entries[$i]['segmentDuration'])->writeInt32BE($this->_entries[$i]['mediaTime']);
         }
         @(list($mediaRateInteger, $mediaRateFraction) = explode('.', (double) $this->_entries[$i]['mediaRate']));
         $writer->writeInt16BE($mediaRateInteger)->writeInt16BE($mediaRateFraction);
     }
 }
开发者ID:jreinert,项目名称:RuneUI,代码行数:20,代码来源:Elst.php

示例8: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     for ($i = 0; $i < count($this->_timeToSampleTable); $i++) {
         $writer->writeUInt32BE($this->_progressiveDownloadInfo[$i]['rate'])->writeUInt32BE($this->_progressiveDownloadInfo[$i]['initialDelay']);
     }
 }
开发者ID:andreiamfg,项目名称:MobileWebHybrid,代码行数:13,代码来源:Pdin.php

示例9: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     $writer->writeUInt32BE($entryCount = count($this->_timeToSampleTable));
     for ($i = 1; $i <= $entryCount; $i++) {
         $writer->writeUInt32BE($this->_timeToSampleTable[$i]['sampleCount'])->writeUInt32BE($this->_timeToSampleTable[$i]['sampleDelta']);
     }
 }
开发者ID:lokamaya,项目名称:zend-mp3,代码行数:14,代码来源:Stts.php

示例10: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     if ($this->getVersion() == 1) {
         $writer->writeInt64BE($this->_creationTime)->writeInt64BE($this->_modificationTime)->writeUInt32BE($this->_timescale)->writeInt64BE($this->_duration);
     } else {
         $writer->writeUInt32BE($this->_creationTime)->writeUInt32BE($this->_modificationTime)->writeUInt32BE($this->_timescale)->writeUInt32BE($this->_duration);
     }
     $writer->writeUInt16BE(ord($this->_language[0]) - 0x60 << 10 | ord($this->_language[1]) - 0x60 << 5 | ord($this->_language[2]) - 0x60)->write(str_pad('', 2, ""));
 }
开发者ID:andreiamfg,项目名称:MobileWebHybrid,代码行数:16,代码来源:Mdhd.php

示例11: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     $writer->writeUInt32BE($this->_trackId)->writeUInt32BE($this->_defaultSampleDescriptionIndex)->writeUInt32BE($this->_defaultSampleDuration)->writeUInt32BE($this->_defaultSampleSize)->writeUInt32BE($this->_defaultSampleFlags);
 }
开发者ID:andreiamfg,项目名称:MobileWebHybrid,代码行数:11,代码来源:Trex.php

示例12: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     $writer->writeUInt32BE($this->_parentSize);
 }
开发者ID:lokamaya,项目名称:zend-mp3,代码行数:11,代码来源:Mfro.php

示例13: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     $writer->writeUInt32BE($entryCount = count($this->_sampleToChunkTable));
     for ($i = 1; $i <= $entryCount; $i++) {
         $writer->writeUInt32BE($this->_sampleToChunkTable[$i]['firstChunk'])->writeUInt32BE($this->_sampleToChunkTable[$i]['samplesPerChunk'])->writeUInt32BE($this->_sampleToChunkTable[$i]['sampleDescriptionIndex']);
     }
 }
开发者ID:google-code-backups,项目名称:php-reader,代码行数:14,代码来源:Stsc.php

示例14: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     $writer->writeUInt32BE($this->_groupingType);
     $writer->writeUInt32BE($entryCount = count($this->_sampleToGroupTable));
     for ($i = 1; $i <= $entryCount; $i++) {
         $writer->writeUInt32BE($this->_sampleToGroupTable[$i]['sampleCount'])->writeUInt32BE($this->_sampleToGroupTable[$i]['groupDescriptionIndex']);
     }
 }
开发者ID:andreiamfg,项目名称:MobileWebHybrid,代码行数:15,代码来源:Sbgp.php

示例15: _writeData

 /**
  * Writes the box data.
  *
  * @param Zend_Io_Writer $writer The writer object.
  * @return void
  */
 protected function _writeData($writer)
 {
     parent::_writeData($writer);
     $writer->writeUInt32BE($this->_sequenceNumber);
 }
开发者ID:lokamaya,项目名称:zend-mp3,代码行数:11,代码来源:Mfhd.php


注:本文中的Zend_Media_Iso14496_FullBox::_writeData方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。