| 276 | } |
| 277 | |
| 278 | std::string PAGDecoder::generateCacheKey(std::shared_ptr<PAGComposition> composition) { |
| 279 | return cacheKeyGeneratorFun == nullptr ? DefaultCacheKeyGeneratorFunc(this, composition) |
| 280 | : cacheKeyGeneratorFun(this, composition); |
| 281 | } |
| 282 | |
| 283 | std::shared_ptr<PAGComposition> PAGDecoder::getComposition() { |
| 284 | if (container->numChildren() == 1) { |
nothing calls this directly
no test coverage detected