| 49 | class FrameCache { |
| 50 | public: |
| 51 | explicit FrameCache(std::size_t max_bytes) : max_bytes_(max_bytes) {} |
| 52 | |
| 53 | // Returns pointer to decompressed bytes for the frame keyed by frame_index. |
| 54 | // The pointer is valid until the next get() that triggers eviction; callers |
nothing calls this directly
no outgoing calls
no test coverage detected