Click here to Skip to main content
Click here to Skip to main content

Volume Manipulation Classes

By , 16 Nov 1999
 

Introduction

Many times my applications required audio volume manipulation. To make the volume-enabled application development easier, I decided to create a few C++ classes that would allow me to easily regulate and track the changes of such volume controls as Output Master Volume, WaveOut Volume and Input (WaveIn) Volume. Here I provide such classes that share a common interface (defined in IVolume.h):

  • bool IsAvailable() - Says whether the volume controlling is possible.
  • void Enable() - Enables the line of the volume control.
  • void Disable() - Disables the line of the volume control.
  • DWORD GetVolumeMetric() - Retrieves the granularity of volume.
  • DWORD GetMinimalVolume() - Retrieves the minimal volume that can be set.
  • DWORD GetMaximalVolume() - Retrieves the maximal volume that can be set.
  • DWORD GetCurrentVolume() - Retrieves the current volume.
  • void SetCurrentVolume( DWORD dwValue ) - Sets the volume.

And the last function allows to register a user-implemented callback that will be called as a notification of volume changes:

void RegisterNotificationSink( PONMICVOULUMECHANGE, DWORD )

This interface is implemented by CVolumeOutMaster (VolumeOutMaster.h/cpp), CVolumeOutWave (VolumeOutWave.h/cpp) and CVolumeInXXX (VolumeInXXX.h/cpp) classes. The usage of the classes is very simple:

In your StdAfx.h, include "mmSystem.h" and make sure you link to the "winmm.lib" (#pragma comment(lib, "winmm.lib")). Then, if you are going to use Output Mater volume control, include "VolumeOutMaster.h", say, to the StdAfx.h.

The IVolume.h, VolumeInXXX.h, VolumeInXXX.cpp are to be inserted as your project files.

...
void CALLBACK MasterVolumeChanged( DWORD dwCurrentVolume, DWORD dwUserValue );
...
// Volume control Initialization
IVolume* pMasterVolume = (IVolume*)new CVolumeOutMaster();
if ( !pMasterVolume || !pMasterVolume->IsAvailable() )
{
    // handle error
}
pMasterVolume->Enable();
pMasterVolume->RegisterNotificationSink( MasterVolumeChanged, dwAnyUserValue );
...
pMasterVolume->SetCurrentVolume( dwVolumeToSet );
...
DWORD dwCurrentVolume = pMasterVolume->SetCurrentVolume();
...
void CALLBACK MasterVolumeChanged( DWORD dwCurrentVolume, DWORD dwUserValue )
{
   // handle the volume change
}
...

Very simple, isn't it? Yet, the CVolumeInXXX class requires more explanation. In order to manipulate the Input volume, the source line index is to be passed to the constructor. Confused? Please, be not. CVolumeInXXX class provides a static function to enumerate those lines:

bool EnumerateInputLines( PINPUTLINEPROC, DWORD dwUserValue );

This allows you to manipulate the volume of any WaveIn-based lines. Say, you want to manipulate the microphone volume:

...
bool CALLBACK EnumInputLineProc( UINT uLineIndex, 
              MIXERLINE* pLineInfo, DWORD dwUserValue );
...
// Initialization
UINT uMicrophoneLineIndex = (UINT)-1;
if ( !CVolumeInXXX::EnumerateInputLines( EnumInputLineProc, 
                           (DWORD)&uMicrophoneLineIndex ) )
{
   // handle error
}
if ( uMicrophoneLineIndex == (UINT)-1 )
{
        // Error: mic volume'ing is not available.
}
IVolume* pMicrophoneVolume = 
         (IVolume*)new CVolumeInXXX( uMicrophoneLineIndex );
if ( !pMicrophoneVolume || !pMicrophoneVolume->IsAvailable() )
{
   // handle error
}
// Go on and use pMicrophoneVolume to manipulate the volume
...
bool CALLBACK EnumInputLineProc( UINT uLineIndex, 
              MIXERLINE* pLineInfo, DWORD dwUserValue )
{
    if ( pLineInfo->dwComponentType == 
             MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE )
    {
        *((UINT*)dwUserValue) = uLineIndex;
        return false;
    }
    return true;
}
...

Be aware, that for performance reasons it is better to have a single instance of a given class per application. So don't rush to create lots of CVolumeInXXX objects, better share the only one through your code.

Conclusion

The proposed classes do not encapsulate all the abilities exposed by the mixers. However, working with a mixer just to add a pretty simple functionality is quite boring. That's why, as I think, the proposed classes might be of some help to you.

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

About the Author

Alex Chmut
Web Developer
Ukraine Ukraine
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
SuggestionWindows 7 volume control samplememberM A V15 Dec '12 - 1:05 
Dear colleagues!
 
Searching the Internet found the relatively easy to understand and implement sample in volume manipulating under Windows 7:
 
http://blogs.msdn.com/b/larryosterman/archive/2007/03/06/how-do-i-change-the-master-volume-in-windows-vista.aspx[^]
 

Artem
QuestionLicense?memberLuisVilla16 Feb '12 - 4:48 
Hi, Alex- What is the license on this code? Some people I know are looking into distributing it for commercial purposes. Thanks!
AnswerRe: License?memberAlex Chmut16 Feb '12 - 10:15 
You can use it as you want, - it is a dev-shared experience.
GeneralControlling master volume in Win7 - IAudioEndpointVolume - Working sample code in MSDNmemberkormoe15 Jan '12 - 5:39 
here:
http://msdn.microsoft.com/en-us/library/bb331828.aspx[^]
Simple and works fine..
 
also found peak meter sample:
http://msdn.microsoft.com/en-us/library/bb736029.aspx[^]
 
I tested both examples and worked fine with win7 64bit
GeneralVolume Control in Windows7memberMember 264083617 Aug '10 - 20:41 
This article works fine for application level volume control in windows 7 but I need Master volume control in windows 7? any help
GeneralMaking compatiblememberBazKhan18 Jan '09 - 22:49 
I'm working on an application which was written in VB using MCI.OCX and winmm.dll library. It runs on Windows 98 successfully but cause problems on Windows XP. Do you know how I can make the application compatible for Windows XP?

 
Always looking for seniors help and guidance.

QuestionWindows Vista Anyone???member{bill}1 Sep '08 - 9:41 
I have been using this library under XP for years with great success. Thanks Alex. I have recently become aware that the volume control doesn't set the volume when running under Window Vista. I know that they rewrote the entire sound system in Vista, but all the calls look like they are working when you examine the results under a debugger.
 
Anyhow, has nyone been able to get this to go under Vista? If not, I would be interested in what code libraries people are using under vista to control volume. I need to control the volume for both the CD and wave devices independantly.
 
In order to support setting the balance, I also changed the SetVolume method to this (which has been working under XP for years):
 
void CVolumeOutWave::SetCurrentVolume( DWORD dwRightValue, DWORD dwLeftValue )
{
if ( !m_bAvailable || (dwRightValue<m_dwMinimalVolume) || (dwRightValue>m_dwMaximalVolume) ||
(dwLeftValue<m_dwMinimalVolume) || (dwLeftValue>m_dwMaximalVolume) )
return;
MIXERCONTROLDETAILS_UNSIGNED* aDetails = (MIXERCONTROLDETAILS_UNSIGNED*)malloc(m_nChannelCount*sizeof(MIXERCONTROLDETAILS_UNSIGNED));
if ( !aDetails )
return;
for ( int i = 0; i < m_nChannelCount; i++ )
{
if (i < (m_nChannelCount / 2))
{
aDetails[i].dwValue = dwLeftValue;
}
else
{
aDetails[i].dwValue = dwRightValue;
}
}
MIXERCONTROLDETAILS ControlDetails;
memset( &ControlDetails, 0, sizeof(MIXERCONTROLDETAILS) );
ControlDetails.cbStruct = sizeof(MIXERCONTROLDETAILS);
ControlDetails.dwControlID = m_dwVolumeControlID;
ControlDetails.cChannels = m_nChannelCount;
ControlDetails.cMultipleItems = 0;
ControlDetails.cbDetails = sizeof(MIXERCONTROLDETAILS_UNSIGNED);
ControlDetails.paDetails = &aDetails[0];
MMRESULT mmResult = mixerSetControlDetails( (HMIXEROBJ)m_dwMixerHandle, &ControlDetails, MIXER_SETCONTROLDETAILSF_VALUE );
free( aDetails );
if ( mmResult != MMSYSERR_NOERROR )
{
TRACE(".WaveOutputVolume: FAILURE: Could not set volume(%d) mmResult=%d\n", dwRightValue, dwLeftValue, mmResult );
}
}
AnswerRe: Windows Vista Anyone???memberSteven Dong9 Nov '08 - 4:37 
I have same question!
QuestionCallback Functionmemberpeene9 Aug '07 - 5:46 
How to use the callback function to update a control like a text field in a dialog? I am a beginner and hope somebody can help.

Questionhow can i control the sound of left and right speakermemberrajneshmalik1 Aug '07 - 21:49 
Confused | :confused: hi
how can i control the sound of left and right speaker by vc++/mfc.Actually i want to send different sound at same time on left and right speaker.
 
if anybody reply me i will obliged
 
hi

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 17 Nov 1999
Article Copyright 1999 by Alex Chmut
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid