aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/pheelicks/visualizer/FFTData.java
blob: 66aac740aa712edd17d27c4743a53ae1d0814cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * Copyright 2011, Felix Palmer
 *
 * Licensed under the MIT license:
 * http://creativecommons.org/licenses/MIT/
 */

package com.pheelicks.visualizer;

// Data class to explicitly indicate that these bytes are the FFT of audio data
public class FFTData
{
    public FFTData(byte[] bytes)
    {
        this.bytes = bytes;
    }

    public byte[] bytes;
}