| 21 | |
| 22 | namespace pag { |
| 23 | bool IsFrameInStaticRange(Frame targetFrame, std::vector<TimeRange>& staticTimeRanges) { |
| 24 | for (const auto& timeRange : staticTimeRanges) { |
| 25 | if (timeRange.contains(targetFrame)) { |
| 26 | return true; |
| 27 | } |
| 28 | } |
| 29 | return false; |
| 30 | } |
| 31 | |
| 32 | VideoInfoManager::VideoInfoManager(std::shared_ptr<PAGComposition> pagComposition) |
| 33 | : pagComposition(pagComposition) { |
no test coverage detected