| 390 | } // RiffVideo::readMetadata |
| 391 | |
| 392 | RiffVideo::HeaderReader::HeaderReader(const BasicIo::UniquePtr& io) { |
| 393 | Internal::enforce(io->size() > io->tell() + DWORD + DWORD, Exiv2::ErrorCode::kerCorruptedMetadata); |
| 394 | id_ = readStringTag(io); |
| 395 | size_ = readDWORDTag(io); |
| 396 | } |
| 397 | |
| 398 | bool RiffVideo::equal(const std::string& str1, const std::string& str2) { |
| 399 | if (str1.size() != str2.size()) |
nothing calls this directly
no test coverage detected