Skip to content

Commit cd27fa7

Browse files
committed
Remove check for enabled streams in AudioMonitor::process method
1 parent c294255 commit cd27fa7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Source/Processors/AudioMonitor/AudioMonitor.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,7 @@ void AudioMonitor::process (AudioBuffer<float>& buffer)
304304
{
305305
for (auto stream : dataStreams)
306306
{
307-
if (stream->getStreamId() == selectedStream
308-
&& (*stream)["enable_stream"])
307+
if (stream->getStreamId() == selectedStream)
309308
{
310309
auto streamSettings = settings[selectedStream];
311310
AudioSampleBuffer* overflowBuffer;

0 commit comments

Comments
 (0)