----------------------------------------------------------------------
()
| 1601 | |
| 1602 | //---------------------------------------------------------------------- |
| 1603 | public function createBitStream() |
| 1604 | { |
| 1605 | $total = 0; |
| 1606 | |
| 1607 | foreach($this->items as $item) { |
| 1608 | $bits = $item->encodeBitStream($this->version); |
| 1609 | |
| 1610 | if($bits < 0) |
| 1611 | return -1; |
| 1612 | |
| 1613 | $total += $bits; |
| 1614 | } |
| 1615 | |
| 1616 | return $total; |
| 1617 | } |
| 1618 | |
| 1619 | //---------------------------------------------------------------------- |
| 1620 | public function convertData() |
no test coverage detected