| 43 | class JPGDecoder : public Decoder { |
| 44 | public: |
| 45 | void Setup(const DecoderConf& conf) override { |
| 46 | image_dim_order_ = conf.image_dim_order(); |
| 47 | } |
| 48 | std::vector<Tensor> Decode(std::string value) override; |
| 49 | |
| 50 | const std::string image_dim_order() const { return image_dim_order_; } |
nothing calls this directly
no test coverage detected