Click here to Skip to main content
15,883,901 members
Articles / Programming Languages / C#

Using OpenTK/OpenAL to Develop Cross Platform DIS VOIP Application

Rate me:
Please Sign up or sign in to vote.
4.79/5 (8 votes)
15 Mar 2010BSD10 min read 44.8K   1.7K   24  
Application allows voice communications (VOIP) utilizing the Distributed Interactive Simulation protocol (IEEE 1278.1)
namespace LumiSoft.Net.Media.Codec.Audio
{
    using System;
    using System.Collections.Generic;
    using System.Text;

    /// <summary>
    /// This class is base calss for audio codecs.
    /// </summary>
    public abstract class AudioCodec : Codec
    {
        #region Properties

        /// <summary>
        /// Gets number of bits per sample.
        /// </summary>
        public abstract int BitsPerSample
        {
            get;
        }

        /// <summary>
        /// Gets sample number of samples in second(hz). 
        /// </summary>
        public abstract int SampleRate
        {
            get;
        }

        #endregion Properties
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The BSD License


Written By
Software Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions