Click here to Skip to main content
15,879,326 members
Articles / Desktop Programming / MFC
Article

Simple Mixer Control Wrapper

Rate me:
Please Sign up or sign in to vote.
4.54/5 (12 votes)
9 Jan 2000 214.7K   2.6K   42   38
A small audio mixer control wrapper
  • Download source files - 2.7 Kb
  • This is small and useful C++ class which can encapsulate any windows multimedia mixer control.

    I wrote a simple class CAlexfMixer to wrap any multimedia mixer control. You can manipulate the Master Volume, Mute or someone elses mixer control with this class, as long as the control support these operations. You can also retrieve information such as the Peak Meter.

    Let's look at class definition:

    class CAlexfMixer
    {
    protected:
      HMIXER m_HMixer;
      INT m_iMixerControlID;
      MMRESULT mmr;
      DWORD m_dwChannels;
      BOOL m_bSuccess;
      void ZeroAll();
    public:
      BOOL IsOk() {return m_bSuccess;};
      BOOL On();
      BOOL Off();
      DWORD GetControlValue();
      BOOL SetControlValue(DWORD dw);
      CAlexfMixer(DWORD DstType, DWORD SrcType, DWORD ControlType);
      CAlexfMixer(HWND hwnd, DWORD DstType, DWORD SrcType, DWORD ControlType);
      virtual ~CAlexfMixer();
    };

    The class has two constructors - with and without the callback window.

    The class has member IsOk to check whether the specified control can be manipulated, and member functions to get and set the control's state.

    How it works

    Example 1. Master Volume Control.

    CAlexfMixer mixer(m_hWnd, MIXERLINE_COMPONENTTYPE_DST_SPEAKERS,
                      NO_SOURCE, MIXERCONTROL_CONTROLTYPE_VOLUME);
    if (!mixer.IsOk()) 
       return;
    
    mixer.SetControlValue(500);

    First we create an object associated with the Master Volume meter control. The third parameter NO_SOURCE is a constant defined in the header file. It means that the control does not have a source line, only a destination line.

    Second we check if is this type of control available or not.

    Finally, we set the volume to 500.

    Example 2. Master Mute.

    CAlexfMixer mixer(MIXERLINE_COMPONENTTYPE_DST_SPEAKERS,
                      NO_SOURCE, MIXERCONTROL_CONTROLTYPE_MUTE );
    mixer.Off();

    Here we create an object associated with Master Mute control, and turn it off.

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here


    Written By
    Web Developer SEO
    Russian Federation Russian Federation
    AlexF's Blog in Russian
    Owner Spy competition analysis
    Rating Burner Rating of blogs

    Comments and Discussions

     
    GeneralNEW VERSION Pin
    gurtaran21-Apr-06 15:43
    gurtaran21-Apr-06 15:43 
    GeneralMute or Pause Sounds from other Applications Pin
    Suntai7-Feb-06 2:04
    Suntai7-Feb-06 2:04 
    Generalmodify change fault code Pin
    JS Lee1-May-05 19:25
    JS Lee1-May-05 19:25 
    GeneralForget My Email,Sorry! Pin
    peposi30-Aug-04 22:12
    peposi30-Aug-04 22:12 
    GeneralI Can not Download you code! Pin
    peposi30-Aug-04 22:01
    peposi30-Aug-04 22:01 
    GeneralPeak Meter not working Pin
    tunafish2419-Nov-03 7:38
    tunafish2419-Nov-03 7:38 
    GeneralRe: Peak Meter not working Pin
    AkikoAkikoChan17-Oct-04 17:44
    AkikoAkikoChan17-Oct-04 17:44 
    GeneralControlling mic loudness Pin
    In-Chul, Yang24-Jul-03 17:07
    In-Chul, Yang24-Jul-03 17:07 
    GeneralRe: Controlling mic loudness Pin
    FBKK12-Sep-06 22:57
    FBKK12-Sep-06 22:57 
    QuestionSolved balance problem? Pin
    geert jacobs8-May-03 22:39
    geert jacobs8-May-03 22:39 
    AnswerRe: Solved balance problem? Pin
    geert jacobs8-May-03 22:57
    geert jacobs8-May-03 22:57 
    GeneralRe: Solved balance problem? Pin
    AkikoAkikoChan17-Oct-04 17:42
    AkikoAkikoChan17-Oct-04 17:42 
    AnswerRe: Solved balance problem? [modified] Pin
    ultraVBCoder25-Jun-06 17:26
    ultraVBCoder25-Jun-06 17:26 
    GeneralCallback handling Pin
    rjo290928-Apr-03 18:43
    rjo290928-Apr-03 18:43 
    Questionhow to close Aux? Pin
    TangQin24-Feb-03 20:44
    TangQin24-Feb-03 20:44 
    AnswerRe: how to close Aux? Pin
    TangQin24-Feb-03 21:06
    TangQin24-Feb-03 21:06 
    GeneralUnmute does not work. Pin
    Jobe14-Jan-03 4:08
    Jobe14-Jan-03 4:08 
    GeneralRe: Unmute does not work. Pin
    Jobe14-Jan-03 5:11
    Jobe14-Jan-03 5:11 
    GeneralRe: Unmute does not work to wave too Pin
    Burgao24-Dec-04 8:32
    Burgao24-Dec-04 8:32 
    GeneralRe: Unmute does not work to wave too Pin
    sabit23-Jun-06 18:10
    sabit23-Jun-06 18:10 
    Generalexcuse me Pin
    NeverGrief21-Nov-02 6:37
    NeverGrief21-Nov-02 6:37 
    GeneralQuestion about using this class Pin
    Member 70847920-Aug-02 3:22
    Member 70847920-Aug-02 3:22 
    QuestionAbout Recording Control? Pin
    Anonymous8-Aug-02 20:26
    Anonymous8-Aug-02 20:26 
    AnswerRe: About Recording Control? Pin
    Anonymous11-Aug-02 5:43
    Anonymous11-Aug-02 5:43 
    Generalmix several wav fils Pin
    6-Jan-02 9:55
    suss6-Jan-02 9:55 

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.