Lines Matching refs:pinfo
74 snd_seq_port_info_t pinfo;
77 memset(&pinfo, 0, sizeof(pinfo));
79 strncpy(pinfo.name, name, sizeof(pinfo.name) - 1);
80 pinfo.capability = caps;
81 pinfo.type = type;
82 pinfo.midi_channels = 16;
83 pinfo.midi_voices = 64; /* XXX */
84 pinfo.synth_voices = 0; /* XXX */
86 result = snd_seq_create_port(seq, &pinfo);
90 return pinfo.addr.port;