File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Sources/CSFBAudioEngine/Player Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments