1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 16:58:29 +00:00

Tweaked some settings and fixed comments in the AudioAnalyzerExample

This commit is contained in:
Darth Affe 2015-10-24 19:49:05 +02:00
parent 6ed251a484
commit e169d7448e
3 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@
* # #
* ###################################################################################################################
*
* > Note < This code is refactored and all parts not used inb this tutorial are removed.
* > Note < This code is refactored and all parts not used in this tutorial are removed.
*/
using System;
@ -32,8 +32,8 @@ namespace Example_AudioAnalyzer_full.TakeAsIs
private float[] _freqVolScalar = new float[BAR_COUNT];
private float[] _barValues = new float[BAR_COUNT];
private int _sampleFrequency = 48000;
private int _maximumFrequency = 21000;
private int _minimumFrequency = 0;
private int _maximumFrequency = 16384;
private int _minimumFrequency = 32;
private int _maximumFrequencyIndex;
private int _minimumFrequencyIndex;
private int _deviceNumber;

View File

@ -8,7 +8,7 @@
* # #
* ###################################################################################################################
*
* > Note < This code is refactored and all parts not used inb this tutorial are removed.
* > Note < This code is refactored and all parts not used in this tutorial are removed.
*/
using System;

View File

@ -8,7 +8,7 @@
* # #
* ###################################################################################################################
*
* > Note < This code is refactored and all parts not used inb this tutorial are removed.
* > Note < This code is refactored and all parts not used in this tutorial are removed.
*/
using System;