Skip to content

Commit

Permalink
removed debug line
Browse files Browse the repository at this point in the history
  • Loading branch information
syedhali committed Jul 13, 2015
1 parent a35bb9a commit 10b0075
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ - (void) fft:(EZAudioFFT *)fft
__weak typeof (self) weakSelf = self;
dispatch_async(dispatch_get_main_queue(), ^{
weakSelf.maxFrequencyLabel.stringValue = [NSString stringWithFormat:@"Highest Note: %@,\nFrequency: %.2f", noteName, maxFrequency];
[EZAudioUtilities noteNameStringForFrequency:[fft maxFrequency] includeOctave:YES];
[weakSelf.audioPlotFreq updateBuffer:fftData withBufferSize:(UInt32)bufferSize];
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ - (void) fft:(EZAudioFFT *)fft
__weak typeof (self) weakSelf = self;
dispatch_async(dispatch_get_main_queue(), ^{
weakSelf.maxFrequencyLabel.text = [NSString stringWithFormat:@"Highest Note: %@,\nFrequency: %.2f", noteName, maxFrequency];
[EZAudioUtilities noteNameStringForFrequency:[fft maxFrequency] includeOctave:YES];
[weakSelf.audioPlotFreq updateBuffer:fftData withBufferSize:(UInt32)bufferSize];
});
}
Expand Down

0 comments on commit 10b0075

Please sign in to comment.