當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。