| 97 | } |
| 98 | |
| 99 | int32_t readFirstMbInSlice (uint8_t* pSliceNalPtr) { |
| 100 | int32_t curBit = 0; |
| 101 | int32_t firstMBInSlice = bsGetUe (pSliceNalPtr + 1, curBit); |
| 102 | return firstMBInSlice; |
| 103 | } |
| 104 | |
| 105 | int32_t readPicture (uint8_t* pBuf, const int32_t& iFileSize, const int32_t& bufPos, uint8_t*& pSpsBuf, |
| 106 | int32_t& sps_byte_count) { |
no test coverage detected