Home
last modified time | relevance | path

Searched refs:chn_setvolume_matrix (Results 1 – 2 of 2) sorted by relevance

/freebsd-11-stable/sys/dev/sound/pcm/
HDchannel.h270 int chn_setvolume_matrix(struct pcm_channel *c, int vc, int vt, int val);
301 #define CHN_SETVOLUME(...) chn_setvolume_matrix(__VA_ARGS__)
HDchannel.c1305 ret = chn_setvolume_matrix(c, SND_VOL_C_MASTER, SND_CHN_T_FL, left); in chn_setvolume()
1306 ret |= chn_setvolume_matrix(c, SND_VOL_C_MASTER, SND_CHN_T_FR, in chn_setvolume()
1322 ret |= chn_setvolume_matrix(c, vc, i, left); in chn_setvolume_multi()
1324 ret |= chn_setvolume_matrix(c, vc, i, right) << 8; in chn_setvolume_multi()
1326 ret |= chn_setvolume_matrix(c, vc, i, center) << 16; in chn_setvolume_multi()
1333 chn_setvolume_matrix(struct pcm_channel *c, int vc, int vt, int val) in chn_setvolume_matrix() function