| 181 | std::string Name() override { return "TimelineConstantAudioReader"; } |
| 182 | void Open() override { is_open = true; } |
| 183 | void Close() override { is_open = false; } |
| 184 | |
| 185 | std::shared_ptr<openshot::Frame> GetFrame(int64_t number) override { |
| 186 | const int sample_count = Frame::GetSamplesPerFrame(number, info.fps, info.sample_rate, info.channels); |
nothing calls this directly
no outgoing calls
no test coverage detected