Click here to Skip to main content
15,867,860 members
Articles / Desktop Programming / Windows Forms

BSEtunes

Rate me:
Please Sign up or sign in to vote.
4.67/5 (11 votes)
24 Apr 2010CPOL4 min read 64.2K   4.3K   58  
BSEtunes is a MySQL based, full manageable, networkable single or multiuser jukebox application
using System;
using System.Collections.Generic;
using System.Text;

using BSE.Platten.Common;

namespace BSE.Platten.Ripper
{
    /// <summary>
    /// Contains the properties of the MP3ConfigurationData class.
    /// </summary>
    public class MP3ConfigurationData : IConfigurationData
    {
        #region FieldsPrivate

        private uint m_iBitRateMpeg1 = 192;
        private bool m_bCopyrightBit;
        private bool m_bCRCCheckSum;
        private bool m_bOriginalBit = true;
        private bool m_bPrivateBit;
        private MpegMode m_eMpegMode = MpegMode.Stereo;

        #endregion

        #region Properties

        public uint BitRateMpeg1
        {
            get { return this.m_iBitRateMpeg1; }
            set { this.m_iBitRateMpeg1 = value; }
        }

        public bool CopyrightBit
        {
            get { return this.m_bCopyrightBit; }
            set { this.m_bCopyrightBit = value; }
        }

        public bool CRCCheckSum
        {
            get { return this.m_bCRCCheckSum; }
            set { this.m_bCRCCheckSum = value; }
        }

        public bool OriginalBit
        {
            get { return this.m_bOriginalBit; }
            set { this.m_bOriginalBit = value; }
        }

        public bool PrivateBit
        {
            get { return this.m_bPrivateBit; }
            set { this.m_bPrivateBit = value; }
        }

        public MpegMode MpegMode
        {
            get { return this.m_eMpegMode; }
            set { this.m_eMpegMode = value; }
        }

        #endregion
    }
}

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 Code Project Open License (CPOL)


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

Comments and Discussions