Skip to content

Commit bc60d83

Browse files
committed
Fix typo
1 parent 88d70d4 commit bc60d83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/CSFBAudioEngine/Player/AudioPlayer.mm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ void AVAudioSessionInterruptionNotificationCallback(CFNotificationCenterRef cent
169169
// would result in playback order A, AA, B
170170

171171
if(InternalDecoderQueueIsEmpty()) {
172-
// Enqueue the decoder on mPlayerNode if the decoder's processing format is supported
172+
// Enqueue the decoder on playerNode_ if the decoder's processing format is supported
173173
if(playerNode_->_node->SupportsFormat(decoder.processingFormat)) {
174174
flags_.fetch_or(static_cast<unsigned int>(Flags::havePendingDecoder), std::memory_order_acq_rel);
175175
const auto result = playerNode_->_node->EnqueueDecoder(decoder, false, error);
@@ -183,7 +183,7 @@ void AVAudioSessionInterruptionNotificationCallback(CFNotificationCenterRef cent
183183
if(!playerNode_->_node->CurrentDecoder())
184184
return configureForAndEnqueueDecoder(false);
185185

186-
// mPlayerNode has a current decoder; fall through and push the decoder to the internal queue
186+
// playerNode_ has a current decoder; fall through and push the decoder to the internal queue
187187
}
188188

189189
// Otherwise push the decoder to the internal queue

0 commit comments

Comments
 (0)