| 539 | using namespace Exiv2::Internal; |
| 540 | |
| 541 | QuickTimeVideo::QuickTimeVideo(BasicIo::UniquePtr io, size_t max_recursion_depth) : |
| 542 | Image(ImageType::qtime, mdNone, std::move(io)), |
| 543 | mvhdTimeScale_(1), |
| 544 | mdhdTimeScale_(1), |
| 545 | currentStream_(Null), |
| 546 | max_recursion_depth_(max_recursion_depth) { |
| 547 | } // QuickTimeVideo::QuickTimeVideo |
| 548 | |
| 549 | std::string QuickTimeVideo::mimeType() const { |
| 550 | return "video/quicktime"; |
nothing calls this directly
no outgoing calls
no test coverage detected