Recurity.Swf.Mp3SoundData.Parse C# (CSharp) Method

Parse() public method

public Parse ( Stream input ) : void
input Stream
return void
        public void Parse(Stream input)
        {
            BinaryReader br = new BinaryReader(input);

            this._seekSamples = br.ReadInt16();

            _mp3FrameBuffer = new byte[input.Length - input.Position];
            input.Read(_mp3FrameBuffer, 0, _mp3FrameBuffer.Length);
        }
Mp3SoundData