當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_Media_Iso14496_FullBox::getHeapSize方法代碼示例

本文整理匯總了PHP中Zend_Media_Iso14496_FullBox::getHeapSize方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Media_Iso14496_FullBox::getHeapSize方法的具體用法?PHP Zend_Media_Iso14496_FullBox::getHeapSize怎麽用?PHP Zend_Media_Iso14496_FullBox::getHeapSize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend_Media_Iso14496_FullBox的用法示例。


在下文中一共展示了Zend_Media_Iso14496_FullBox::getHeapSize方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + ($this->getVersion() == 1 ? 32 : 20) + 60;
 }
開發者ID:lokamaya,項目名稱:zend-mp3,代碼行數:9,代碼來源:Tkhd.php

示例2: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + 4 + count($this->_entries) * ($this->getVersion() == 1 ? 20 : 12);
 }
開發者ID:jreinert,項目名稱:RuneUI,代碼行數:9,代碼來源:Elst.php

示例3: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + strlen($this->_location);
 }
開發者ID:lokamaya,項目名稱:zend-mp3,代碼行數:9,代碼來源:Url.php

示例4: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + 4 + strlen($this->_value);
 }
開發者ID:andreiamfg,項目名稱:MobileWebHybrid,代碼行數:9,代碼來源:Ilst.php

示例5: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + ($this->getVersion() == 1 ? 8 : 4);
 }
開發者ID:andreiamfg,項目名稱:MobileWebHybrid,代碼行數:9,代碼來源:Mehd.php

示例6: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + 20;
 }
開發者ID:google-code-backups,項目名稱:php-reader,代碼行數:9,代碼來源:Tenc.php

示例7: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + 3 + strlen($this->_notice);
 }
開發者ID:lokamaya,項目名稱:zend-mp3,代碼行數:9,代碼來源:Cprt.php

示例8: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + 4 + count($this->_chunkOffsetTable) * 4;
 }
開發者ID:lokamaya,項目名稱:zend-mp3,代碼行數:9,代碼來源:Stco.php

示例9: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + count($this->_progressiveDownloadInfo) * 8;
 }
開發者ID:andreiamfg,項目名稱:MobileWebHybrid,代碼行數:9,代碼來源:Pdin.php

示例10: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + 4 + count($this->_timeToSampleTable) * 8;
 }
開發者ID:lokamaya,項目名稱:zend-mp3,代碼行數:9,代碼來源:Stts.php

示例11: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + 4 + count($this->_sampleToChunkTable) * 12;
 }
開發者ID:google-code-backups,項目名稱:php-reader,代碼行數:9,代碼來源:Stsc.php

示例12: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + 8 + count($this->_sampleToGroupTable) * 8;
 }
開發者ID:andreiamfg,項目名稱:MobileWebHybrid,代碼行數:9,代碼來源:Sbgp.php

示例13: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + 8 + ($this->_sampleSize == 0 ? count($this->_sampleSizeTable) * 4 : 0);
 }
開發者ID:adam-fonseca,項目名稱:RuneUI,代碼行數:9,代碼來源:Stsz.php

示例14: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + $this->getSize() - 12;
 }
開發者ID:andreiamfg,項目名稱:MobileWebHybrid,代碼行數:9,代碼來源:Stsd.php

示例15: getHeapSize

 /**
  * Returns the box heap size in bytes.
  *
  * @return integer
  */
 public function getHeapSize()
 {
     return parent::getHeapSize() + ($this->getVersion() == 1 ? 28 : 16) + 80;
 }
開發者ID:lokamaya,項目名稱:zend-mp3,代碼行數:9,代碼來源:Mvhd.php


注:本文中的Zend_Media_Iso14496_FullBox::getHeapSize方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。