Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/clinic/
Daudioop.c.h439 double lfactor, double rfactor);
447 double lfactor; in audioop_tomono() local
451 &fragment, &width, &lfactor, &rfactor)) { in audioop_tomono()
454 return_value = audioop_tomono_impl(module, &fragment, width, lfactor, rfactor); in audioop_tomono()
476 double lfactor, double rfactor);
484 double lfactor; in audioop_tostereo() local
488 &fragment, &width, &lfactor, &rfactor)) { in audioop_tostereo()
491 return_value = audioop_tostereo_impl(module, &fragment, width, lfactor, rfactor); in audioop_tostereo()
/external/python/cpython2/Doc/library/
Daudioop.rst211 .. function:: tomono(fragment, width, lfactor, rfactor)
214 *lfactor* and the right channel by *rfactor* before adding the two channels to
218 .. function:: tostereo(fragment, width, lfactor, rfactor)
222 are multiplied by *lfactor* and right channel samples by *rfactor*.
236 def mul_stereo(sample, width, lfactor, rfactor):
239 lsample = audioop.mul(lsample, width, lfactor)
/external/python/cpython3/Doc/library/
Daudioop.rst219 .. function:: tomono(fragment, width, lfactor, rfactor)
222 *lfactor* and the right channel by *rfactor* before adding the two channels to
226 .. function:: tostereo(fragment, width, lfactor, rfactor)
230 are multiplied by *lfactor* and right channel samples by *rfactor*.
244 def mul_stereo(sample, width, lfactor, rfactor):
247 lsample = audioop.mul(lsample, width, lfactor)
/external/python/cpython3/Modules/
Daudioop.c954 double lfactor, double rfactor) in audioop_tomono_impl() argument
982 double val = val1 * lfactor + val2 * rfactor; in audioop_tomono_impl()
1003 double lfactor, double rfactor) in audioop_tostereo_impl() argument
1030 int val1 = fbound(val * lfactor, minval, maxval); in audioop_tostereo_impl()