| 71 | }; |
| 72 | |
| 73 | std::shared_ptr<ImageCodec> JpegCodec::MakeFrom(const std::string& filePath) { |
| 74 | return MakeFromData(filePath, nullptr); |
| 75 | } |
| 76 | |
| 77 | std::shared_ptr<ImageCodec> JpegCodec::MakeFrom(std::shared_ptr<Data> imageBytes) { |
| 78 | return MakeFromData("", std::move(imageBytes)); |
nothing calls this directly
no outgoing calls
no test coverage detected