Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Dossaudiodev.c713 int channel, volume, leftVol, rightVol; in oss_mixer_set() local
716 if (!PyArg_ParseTuple(args, "i(ii):set", &channel, &leftVol, &rightVol)) in oss_mixer_set()
724 if (leftVol < 0 || rightVol < 0 || leftVol > 100 || rightVol > 100) { in oss_mixer_set()
729 volume = (rightVol << 8) | leftVol; in oss_mixer_set()