pcm_total() public method

public pcm_total ( int i ) : long
i int
return long
        /// <summary>Supports opening an Ogg Vorbis file</summary>
        public OggFileReader(string oggFileName)
        {
            m_vorbisFile = new VorbisFile(oggFileName);
            info = m_vorbisFile.getInfo();

            // TODO: 8 is hard coded!! need to change it dynamically by reading tags
            waveFormat = new WaveFormat(info[0].rate, 8, info[0].channels);
            pcm_total = m_vorbisFile.pcm_total(-1);

            timeSpan = m_vorbisFile.time_total(-1); // Timespan in seconds
        }