Back to project page AndroidRecording.
The source code is released under:
Apache License
If you think the Android project AndroidRecording listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Modified by Steelkiwi Development, Julia Zudikova *//* w w w .j av a2 s. c o m*/ /** * Copyright 2011, Felix Palmer * * Licensed under the MIT license: * http://creativecommons.org/licenses/MIT/ */ package com.skd.androidrecording.visualizer; // Data class to explicitly indicate that these bytes are the FFT of audio data public class FFTData { public FFTData(){} private byte[] bytes; public byte[] getBytes() { return bytes; } public void setBytes(byte[] bytes) { this.bytes = bytes; } }