----------------------------------------------------------------------
()
| 697 | |
| 698 | //---------------------------------------------------------------------- |
| 699 | public function getBitStream() |
| 700 | { |
| 701 | |
| 702 | $bstream = $this->mergeBitStream(); |
| 703 | |
| 704 | if($bstream == null) { |
| 705 | return null; |
| 706 | } |
| 707 | |
| 708 | $ret = $this->appendPaddingBit($bstream); |
| 709 | if($ret < 0) { |
| 710 | return null; |
| 711 | } |
| 712 | |
| 713 | return $bstream; |
| 714 | } |
| 715 | |
| 716 | //---------------------------------------------------------------------- |
| 717 | public function getByteStream() |
no test coverage detected