Home | History | Annotate | Download | only in itf

Lines Matching refs:deviceID

22 static SLresult IDeviceVolume_GetVolumeScale(SLDeviceVolumeItf self, SLuint32 deviceID,
27 switch (deviceID) {
49 static SLresult IDeviceVolume_SetVolume(SLDeviceVolumeItf self, SLuint32 deviceID, SLint32 volume)
53 switch (deviceID) {
57 deviceID = SL_DEFAULTDEVICEID_AUDIOOUTPUT;
64 thiz->mVolume[~deviceID] = volume;
78 static SLresult IDeviceVolume_GetVolume(SLDeviceVolumeItf self, SLuint32 deviceID, SLint32 *pVolume)
85 switch (deviceID) {
89 deviceID = SL_DEFAULTDEVICEID_AUDIOOUTPUT;
96 SLint32 volume = thiz->mVolume[~deviceID];