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 ava 2 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 raw audio data public class AudioData { public AudioData() {} private byte[] bytes; public byte[] getBytes() { return bytes; } public void setBytes(byte[] bytes) { this.bytes = bytes; } }