winmm: Report waveIn devices' component type as Microphone.

This commit is contained in:
Andrew Eikum 2012-03-27 11:11:11 -05:00 committed by Alexandre Julliard
parent 6a6e1bd50e
commit 447b045825
1 changed files with 2 additions and 2 deletions

View File

@ -3671,7 +3671,7 @@ static UINT WINMM_GetSourceLineInfo(WINMM_MMDevice *mmdevice, UINT mmdev_index,
memcpy(info->Target.szPname, mmdevice->out_caps.szPname,
sizeof(info->Target.szPname));
}else{
info->dwComponentType = MIXERLINE_COMPONENTTYPE_SRC_LINE;
info->dwComponentType = MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE;
info->Target.dwType = MIXERLINE_TARGETTYPE_UNDEFINED;
info->Target.szPname[0] = '\0';
}
@ -3740,7 +3740,7 @@ static UINT WINMM_GetComponentTypeLineInfo(WINMM_MMDevice *mmdevice,
return WINMM_GetDestinationLineInfo(mmdevice, mmdev_index, info, flags);
}
if(info->dwComponentType == MIXERLINE_COMPONENTTYPE_SRC_LINE){
if(info->dwComponentType == MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE){
if(is_out)
return MIXERR_INVALLINE;
info->dwSource = 0;