HomeSort by relevance Sort by last modified time
    Searched refs:rightVol (Results 1 - 2 of 2) sorted by null

  /external/python/cpython2/Modules/
ossaudiodev.c 713 int channel, volume, leftVol, rightVol;
716 if (!PyArg_ParseTuple(args, "i(ii):set", &channel, &leftVol, &rightVol))
724 if (leftVol < 0 || rightVol < 0 || leftVol > 100 || rightVol > 100) {
729 volume = (rightVol << 8) | leftVol;
  /external/python/cpython3/Modules/
ossaudiodev.c 816 int channel, volume, leftVol, rightVol;
822 if (!PyArg_ParseTuple(args, "i(ii):set", &channel, &leftVol, &rightVol))
830 if (leftVol < 0 || rightVol < 0 || leftVol > 100 || rightVol > 100) {
835 volume = (rightVol << 8) | leftVol;
    [all...]

Completed in 6737 milliseconds