javazoom.jl.decoder.LayerIDecoder.SubbandLayer1Stereo.read_sampledata C# (CSharp) Method

read_sampledata() public method

*
public read_sampledata ( Bitstream stream ) : bool
stream Bitstream
return bool
            public override bool read_sampledata(Bitstream stream)
            {
                bool returnvalue = base.read_sampledata(stream);
                if (channel2_allocation != 0)
                {
                    channel2_sample = (float) (stream.get_bits(channel2_samplelength));
                }
                return (returnvalue);
            }