* Parse the time at the given location. */
| 540 | * Parse the time at the given location. |
| 541 | */ |
| 542 | virtual int64_t parseTime(const unsigned char* ptr) const override { |
| 543 | // sign extend from 32 bits |
| 544 | return static_cast<int32_t>(decode32(ptr)); |
| 545 | } |
| 546 | |
| 547 | virtual std::string parseFutureString(const unsigned char*, uint64_t, uint64_t) const override { |
| 548 | return ""; |
no test coverage detected