| 642 | } |
| 643 | |
| 644 | void RiffVideo::StreamName(uint64_t size_) const { |
| 645 | // This element contains a name for the stream. That stream name should only use plain ASCII, especially not UTF-8. |
| 646 | io_->seekOrThrow(io_->tell() + size_, BasicIo::beg, ErrorCode::kerFailedToReadImageData); |
| 647 | } |
| 648 | |
| 649 | void RiffVideo::readInfoListChunk(uint64_t size_) { |
| 650 | uint64_t current_size = DWORD; |
nothing calls this directly
no test coverage detected