Home | History | Annotate | Download | only in audio

Lines Matching refs:vol

36 #define VOL(a, b) ((a) * (b))
38 #define VOL(a, b) ((a) * (b)) >> 32
41 #define VOL(a, b) a
112 (struct st_sample *dst, const void *src, int samples, struct mixeng_volume *vol)
117 if (vol->mute) {
122 (void) vol;
125 out->l = VOL (glue (conv_, ET) (*in++), vol->l);
126 out->r = VOL (glue (conv_, ET) (*in++), vol->r);
132 (struct st_sample *dst, const void *src, int samples, struct mixeng_volume *vol)
137 if (vol->mute) {
142 (void) vol;
145 out->l = VOL (glue (conv_, ET) (in[0]), vol->l);
177 #undef VOL