----------------------------------------------------------------------
()
| 1710 | |
| 1711 | //---------------------------------------------------------------------- |
| 1712 | public function getBitStream() |
| 1713 | { |
| 1714 | |
| 1715 | $bstream = $this->mergeBitStream(); |
| 1716 | |
| 1717 | if($bstream == null) { |
| 1718 | return null; |
| 1719 | } |
| 1720 | |
| 1721 | $ret = $this->appendPaddingBit($bstream); |
| 1722 | if($ret < 0) { |
| 1723 | return null; |
| 1724 | } |
| 1725 | |
| 1726 | return $bstream; |
| 1727 | } |
| 1728 | |
| 1729 | //---------------------------------------------------------------------- |
| 1730 | public function getByteStream() |
no test coverage detected