mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 06:26:00 +00:00
[AUDIO-BRINGUP]
- Silence traces svn path=/branches/audio-bringup/; revision=49975
This commit is contained in:
parent
4cf9ead133
commit
2b777abf96
4 changed files with 17 additions and 19 deletions
|
@ -1056,9 +1056,9 @@ MMixerAddMixerSourceLines(
|
|||
AllPinsCount = 0;
|
||||
MMixerGetAllUpOrDownstreamPinsFromNodeIndex(MixerContext, Topology, LineTerminator, TRUE, &AllPinsCount, AllPins);
|
||||
|
||||
DPRINT1("LineTerminator %lu\n", LineTerminator);
|
||||
DPRINT1("PinCount %lu\n", AllPinsCount);
|
||||
DPRINT1("AllNodesCount %lu\n", AllNodesCount);
|
||||
DPRINT("LineTerminator %lu\n", LineTerminator);
|
||||
DPRINT("PinCount %lu\n", AllPinsCount);
|
||||
DPRINT("AllNodesCount %lu\n", AllNodesCount);
|
||||
|
||||
/* now construct the source lines which are attached to the destination line */
|
||||
Index = AllPinsCount;
|
||||
|
@ -1268,7 +1268,7 @@ MMixerHandlePhysicalConnection(
|
|||
return MM_STATUS_UNSUCCESSFUL;
|
||||
}
|
||||
|
||||
DPRINT1("Name %S, Pin %lu bInput %lu\n", OutConnection->SymbolicLinkName, OutConnection->Pin, bInput);
|
||||
DPRINT("Name %S, Pin %lu bInput %lu\n", OutConnection->SymbolicLinkName, OutConnection->Pin, bInput);
|
||||
|
||||
/* sanity check */
|
||||
ASSERT(MixerData->MixerInfo == NULL || MixerData->MixerInfo == MixerInfo);
|
||||
|
@ -1551,7 +1551,7 @@ MMixerHandleAlternativeMixers(
|
|||
ULONG DestinationLineID, LineTerminator;
|
||||
LPMIXERLINE_EXT DstLine;
|
||||
|
||||
DPRINT1("DeviceName %S\n", MixerData->DeviceName);
|
||||
DPRINT("DeviceName %S\n", MixerData->DeviceName);
|
||||
|
||||
/* get topology pin count */
|
||||
MMixerGetTopologyPinCount(Topology, &PinCount);
|
||||
|
|
|
@ -146,16 +146,15 @@ MMixerGetLineInfo(
|
|||
}
|
||||
|
||||
if (MixerLine->cbStruct != sizeof(MIXERLINEW))
|
||||
{
|
||||
DPRINT1("MixerLine Expected %lu but got %lu\n", sizeof(MIXERLINEW), MixerLine->cbStruct);
|
||||
return MM_STATUS_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
{
|
||||
DPRINT1("MixerLine Expected %lu but got %lu\n", sizeof(MIXERLINEW), MixerLine->cbStruct);
|
||||
return MM_STATUS_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
/* clear hmixer from flags */
|
||||
Flags &=~MIXER_OBJECTF_HMIXER;
|
||||
|
||||
DPRINT1("MMixerGetLineInfo MixerId %lu Flags %lu\n", MixerId, Flags);
|
||||
DPRINT("MMixerGetLineInfo MixerId %lu Flags %lu\n", MixerId, Flags);
|
||||
|
||||
if (Flags == MIXER_GETLINEINFOF_DESTINATION)
|
||||
{
|
||||
|
@ -511,7 +510,7 @@ MMixerSetControlDetails(
|
|||
return MM_STATUS_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
DPRINT1("MMixerSetControlDetails ControlType %lx MixerControlName %S MixerLineName %S NodeID %lu\n", MixerControl->Control.dwControlType, MixerControl->Control.szName, MixerLine->Line.szName, NodeId);
|
||||
DPRINT("MMixerSetControlDetails ControlType %lx MixerControlName %S MixerLineName %S NodeID %lu\n", MixerControl->Control.dwControlType, MixerControl->Control.szName, MixerLine->Line.szName, NodeId);
|
||||
switch(MixerControl->Control.dwControlType)
|
||||
{
|
||||
case MIXERCONTROL_CONTROLTYPE_MUTE:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue