| 84 | } |
| 85 | |
| 86 | BmffImage::BmffImage(BasicIo::UniquePtr io, bool /* create */, size_t max_box_depth) : |
| 87 | Image(ImageType::bmff, mdExif | mdIptc | mdXmp, std::move(io)), max_box_depth_(max_box_depth) { |
| 88 | } // BmffImage::BmffImage |
| 89 | |
| 90 | std::string BmffImage::toAscii(uint32_t n) { |
| 91 | const auto p = reinterpret_cast<const char*>(&n); |
nothing calls this directly
no outgoing calls
no test coverage detected