SYSVAD - Changing Speaker friendly Name

  • Thread starter Thread starter NathanMAd
  • Start date Start date
N

NathanMAd

Guest
Hi,

I want to change my speaker and microphone friendly name. I could able to change microphone name. But not able to change speaker name. Below are my changes . Anything else to be done?

[INF]

MicInCustomNameGUID = "{58B9099B-5868-4587-AD2C-64B360C3FAF9}"
MicInCustomName = "Nathan Microphone"
SpeakerCustomNameGUID = "{C5416E92-A62F-4AC3-80EA-A3BBF79D7A92}"
SpeakerCustomName = "Nathan Speaker"


[speakertoptable.h]

DEFINE_GUID(SPEAKER_CUSTOM_NAME,
0xC5416E92, 0xA62F, 0x4AC3, 0x80, 0xEA, 0xA3, 0xBB, 0xF7, 0x9D, 0x7A, 0x92);

//=============================================================================
static
PCPIN_DESCRIPTOR SpeakerTopoMiniportPins[] =
{
// KSPIN_TOPO_WAVEOUT_SOURCE
{
0,
0,
0, // InstanceCount
NULL, // AutomationTable
{ // KsPinDescriptor
0, // InterfacesCount
NULL, // Interfaces
0, // MediumsCount
NULL, // Mediums
SIZEOF_ARRAY(SpeakerTopoPinDataRangePointersBridge),// DataRangesCount
SpeakerTopoPinDataRangePointersBridge, // DataRanges
KSPIN_DATAFLOW_IN, // DataFlow
KSPIN_COMMUNICATION_NONE, // Communication
&KSCATEGORY_AUDIO, // Category
&SPEAKER_CUSTOM_NAME, // Name
0 // Reserved
}
},
// KSPIN_TOPO_LINEOUT_DEST
{
0,
0,
0, // InstanceCount
NULL, // AutomationTable
{ // KsPinDescriptor
0, // InterfacesCount
NULL, // Interfaces
0, // MediumsCount
NULL, // Mediums
SIZEOF_ARRAY(SpeakerTopoPinDataRangePointersBridge),// DataRangesCount
SpeakerTopoPinDataRangePointersBridge, // DataRanges
KSPIN_DATAFLOW_OUT, // DataFlow
KSPIN_COMMUNICATION_NONE, // Communication
&KSNODETYPE_SPEAKER, // Category
&SPEAKER_CUSTOM_NAME, // Name
0 // Reserved
}
}
};

Continue reading...
 

Similar threads

S
Replies
0
Views
114
ShawnYang1990
S
S
Replies
0
Views
36
shlikewater
S
Back
Top