mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
16 lines
585 B
C#
16 lines
585 B
C#
namespace CUETools.Codecs.LossyWAV
|
|
{
|
|
struct analysis_rec
|
|
{
|
|
public double fft_underlap_length;
|
|
public int end_overlap_length, central_block_start, half_number_of_blocks, actual_analysis_blocks_start, analysis_blocks;
|
|
public double bin_width, bin_time;
|
|
public int lo_bins, hi_bins, max_bins, num_bins;
|
|
public int[] spreading_averages_int;
|
|
public float[] spreading_averages_rem;
|
|
public float[] spreading_averages_rec;
|
|
public float[] skewing_function;
|
|
public byte[] threshold_index;
|
|
}
|
|
}
|