| 105 | } |
| 106 | |
| 107 | bool VideoDecoderFactory::HasExternalSoftwareDecoder() { |
| 108 | std::lock_guard<std::mutex> autoLock(factoryLocker); |
| 109 | return GetSoftwareDecoderFactory() != nullptr; |
| 110 | } |
| 111 | |
| 112 | void VideoDecoderFactory::NotifyHardwareVideoDecoderReleased() { |
| 113 | globalHardwareDecoderCount--; |
nothing calls this directly
no test coverage detected