| 9 | namespace op { |
| 10 | |
| 11 | class LoadVideo : public KeyTransformOp { |
| 12 | public: |
| 13 | LoadVideo( |
| 14 | const std::string& ikey, |
| 15 | const std::string& prefix = "", |
| 16 | bool info = false, |
| 17 | bool from_memory = false, |
| 18 | const std::string& okey = ""); |
| 19 | |
| 20 | virtual std::shared_ptr<Array> apply_key( |
| 21 | const std::shared_ptr<const Array>& src) const override; |
| 22 | |
| 23 | private: |
| 24 | std::string prefix_; |
| 25 | bool info_; |
| 26 | bool from_memory_; |
| 27 | }; |
| 28 | |
| 29 | } // namespace op |
| 30 | } // namespace data |
nothing calls this directly
no outgoing calls
no test coverage detected