| 98 | } |
| 99 | |
| 100 | void SwitcherData::checkAudioSwitchFallback(OBSWeakSource &scene, |
| 101 | OBSWeakSource &transition) |
| 102 | { |
| 103 | if (audioFallback.duration.DurationReached()) { |
| 104 | scene = audioFallback.getScene(); |
| 105 | transition = audioFallback.transition; |
| 106 | |
| 107 | if (VerboseLoggingEnabled()) { |
| 108 | audioFallback.logMatch(); |
| 109 | } |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | bool SwitcherData::checkAudioSwitch(OBSWeakSource &scene, |
| 114 | OBSWeakSource &transition) |
nothing calls this directly
no test coverage detected