| 360 | public: |
| 361 | TestableVideoCacheThread* tcb; |
| 362 | InterruptingCache(int64_t maxb, TestableVideoCacheThread* t) |
| 363 | : CacheMemory(maxb), tcb(t) {} |
| 364 | void Add(std::shared_ptr<openshot::Frame> frame) override { |
| 365 | int64_t idx = frame->number; // use public member 'number' |
| 366 | CacheMemory::Add(frame); |
nothing calls this directly
no outgoing calls
no test coverage detected