Files
cuetools.net/CUETools.Codecs.LossyWAV/channel_rec.cs

13 lines
330 B
C#
Raw Normal View History

namespace CUETools.Codecs.LossyWAV
{
struct channel_rec
{
public double this_codec_block_rms;
public double this_codec_block_bits;
public short maximum_bits_to_remove;
public short bits_to_remove;
public short bits_lost;
public short clipped_samples;
}
}