| 157 | Nearest, |
| 158 | Linear, |
| 159 | }; |
| 160 | |
| 161 | struct Interpolate1dConfig { |
| 162 | int64_t output_frames = 0; |
| 163 | Interpolate1dMode mode = Interpolate1dMode::Nearest; |
| 164 | }; |
| 165 | |
| 166 | class Interpolate1dModule { |
| 167 | public: |
| 168 | explicit Interpolate1dModule(Interpolate1dConfig config); |
| 169 | |
| 170 | const Interpolate1dConfig & config() const noexcept; |
no outgoing calls
no test coverage detected