@@ -407,8 +407,9 @@ Return the value of sample index from the fragment.
407407[clinic start generated code]*/
408408
409409static PyObject *
410- audioop_getsample_impl (PyModuleDef * module , Py_buffer * fragment , int width , Py_ssize_t index )
411- /*[clinic end generated code: output=f4482497e6f6e78f input=88edbe2871393549]*/
410+ audioop_getsample_impl (PyModuleDef * module , Py_buffer * fragment , int width ,
411+ Py_ssize_t index )
412+ /*[clinic end generated code: output=3995e189fdc8ec16 input=88edbe2871393549]*/
412413{
413414 int val ;
414415
@@ -593,8 +594,9 @@ Try to match reference as well as possible to a portion of fragment.
593594[clinic start generated code]*/
594595
595596static PyObject *
596- audioop_findfit_impl (PyModuleDef * module , Py_buffer * fragment , Py_buffer * reference )
597- /*[clinic end generated code: output=505fd04d4244db31 input=62c305605e183c9a]*/
597+ audioop_findfit_impl (PyModuleDef * module , Py_buffer * fragment ,
598+ Py_buffer * reference )
599+ /*[clinic end generated code: output=609eedf5d823d6dd input=62c305605e183c9a]*/
598600{
599601 const short * cp1 , * cp2 ;
600602 Py_ssize_t len1 , len2 ;
@@ -661,8 +663,9 @@ Return a factor F such that rms(add(fragment, mul(reference, -F))) is minimal.
661663[clinic start generated code]*/
662664
663665static PyObject *
664- audioop_findfactor_impl (PyModuleDef * module , Py_buffer * fragment , Py_buffer * reference )
665- /*[clinic end generated code: output=ddf35a1e57575ce4 input=816680301d012b21]*/
666+ audioop_findfactor_impl (PyModuleDef * module , Py_buffer * fragment ,
667+ Py_buffer * reference )
668+ /*[clinic end generated code: output=5566a8c55de54f99 input=816680301d012b21]*/
666669{
667670 const short * cp1 , * cp2 ;
668671 Py_ssize_t len ;
@@ -702,8 +705,9 @@ Search fragment for a slice of specified number of samples with maximum energy.
702705[clinic start generated code]*/
703706
704707static PyObject *
705- audioop_findmax_impl (PyModuleDef * module , Py_buffer * fragment , Py_ssize_t length )
706- /*[clinic end generated code: output=21d0c2a1e5655134 input=2f304801ed42383c]*/
708+ audioop_findmax_impl (PyModuleDef * module , Py_buffer * fragment ,
709+ Py_ssize_t length )
710+ /*[clinic end generated code: output=01fe796fad2573bb input=2f304801ed42383c]*/
707711{
708712 const short * cp1 ;
709713 Py_ssize_t len1 ;
@@ -896,8 +900,9 @@ Return a fragment that has all samples in the original fragment multiplied by th
896900[clinic start generated code]*/
897901
898902static PyObject *
899- audioop_mul_impl (PyModuleDef * module , Py_buffer * fragment , int width , double factor )
900- /*[clinic end generated code: output=a697ebbd5852d38f input=c726667baa157d3c]*/
903+ audioop_mul_impl (PyModuleDef * module , Py_buffer * fragment , int width ,
904+ double factor )
905+ /*[clinic end generated code: output=1c7c31191ac86b10 input=c726667baa157d3c]*/
901906{
902907 signed char * ncp ;
903908 Py_ssize_t i ;
@@ -937,8 +942,9 @@ Convert a stereo fragment to a mono fragment.
937942[clinic start generated code]*/
938943
939944static PyObject *
940- audioop_tomono_impl (PyModuleDef * module , Py_buffer * fragment , int width , double lfactor , double rfactor )
941- /*[clinic end generated code: output=436e7710521661dd input=c4ec949b3f4dddfa]*/
945+ audioop_tomono_impl (PyModuleDef * module , Py_buffer * fragment , int width ,
946+ double lfactor , double rfactor )
947+ /*[clinic end generated code: output=553f547c5e29e3b6 input=c4ec949b3f4dddfa]*/
942948{
943949 signed char * cp , * ncp ;
944950 Py_ssize_t len , i ;
@@ -985,8 +991,9 @@ Generate a stereo fragment from a mono fragment.
985991[clinic start generated code]*/
986992
987993static PyObject *
988- audioop_tostereo_impl (PyModuleDef * module , Py_buffer * fragment , int width , double lfactor , double rfactor )
989- /*[clinic end generated code: output=6ff50681c87f4c1c input=27b6395ebfdff37a]*/
994+ audioop_tostereo_impl (PyModuleDef * module , Py_buffer * fragment , int width ,
995+ double lfactor , double rfactor )
996+ /*[clinic end generated code: output=697bb6ba41e9dd2c input=27b6395ebfdff37a]*/
990997{
991998 signed char * ncp ;
992999 Py_ssize_t i ;
@@ -1032,8 +1039,9 @@ Return a fragment which is the addition of the two samples passed as parameters.
10321039[clinic start generated code]*/
10331040
10341041static PyObject *
1035- audioop_add_impl (PyModuleDef * module , Py_buffer * fragment1 , Py_buffer * fragment2 , int width )
1036- /*[clinic end generated code: output=f9218bf9ea75c3f1 input=4a8d4bae4c1605c7]*/
1042+ audioop_add_impl (PyModuleDef * module , Py_buffer * fragment1 ,
1043+ Py_buffer * fragment2 , int width )
1044+ /*[clinic end generated code: output=fe6c12f143e0b027 input=4a8d4bae4c1605c7]*/
10371045{
10381046 signed char * ncp ;
10391047 Py_ssize_t i ;
@@ -1090,8 +1098,9 @@ Return a fragment that is the original fragment with a bias added to each sample
10901098[clinic start generated code]*/
10911099
10921100static PyObject *
1093- audioop_bias_impl (PyModuleDef * module , Py_buffer * fragment , int width , int bias )
1094- /*[clinic end generated code: output=8ec80b3f5d510a51 input=2b5cce5c3bb4838c]*/
1101+ audioop_bias_impl (PyModuleDef * module , Py_buffer * fragment , int width ,
1102+ int bias )
1103+ /*[clinic end generated code: output=ac1f4dda20a01c26 input=2b5cce5c3bb4838c]*/
10951104{
10961105 signed char * ncp ;
10971106 Py_ssize_t i ;
@@ -1217,8 +1226,9 @@ Convert samples between 1-, 2-, 3- and 4-byte formats.
12171226[clinic start generated code]*/
12181227
12191228static PyObject *
1220- audioop_lin2lin_impl (PyModuleDef * module , Py_buffer * fragment , int width , int newwidth )
1221- /*[clinic end generated code: output=3f9468a74472a93e input=5ce08c8aa2f24d96]*/
1229+ audioop_lin2lin_impl (PyModuleDef * module , Py_buffer * fragment , int width ,
1230+ int newwidth )
1231+ /*[clinic end generated code: output=cb6ca950d1df9898 input=5ce08c8aa2f24d96]*/
12221232{
12231233 unsigned char * ncp ;
12241234 Py_ssize_t i , j ;
@@ -1274,8 +1284,10 @@ Convert the frame rate of the input fragment.
12741284[clinic start generated code]*/
12751285
12761286static PyObject *
1277- audioop_ratecv_impl (PyModuleDef * module , Py_buffer * fragment , int width , int nchannels , int inrate , int outrate , PyObject * state , int weightA , int weightB )
1278- /*[clinic end generated code: output=5585dddc4b5ff236 input=aff3acdc94476191]*/
1287+ audioop_ratecv_impl (PyModuleDef * module , Py_buffer * fragment , int width ,
1288+ int nchannels , int inrate , int outrate , PyObject * state ,
1289+ int weightA , int weightB )
1290+ /*[clinic end generated code: output=59e1787bfa49b9d9 input=aff3acdc94476191]*/
12791291{
12801292 char * cp , * ncp ;
12811293 Py_ssize_t len ;
@@ -1601,8 +1613,9 @@ Convert samples to 4 bit Intel/DVI ADPCM encoding.
16011613[clinic start generated code]*/
16021614
16031615static PyObject *
1604- audioop_lin2adpcm_impl (PyModuleDef * module , Py_buffer * fragment , int width , PyObject * state )
1605- /*[clinic end generated code: output=4654c29d2731fafe input=12919d549b90c90a]*/
1616+ audioop_lin2adpcm_impl (PyModuleDef * module , Py_buffer * fragment , int width ,
1617+ PyObject * state )
1618+ /*[clinic end generated code: output=93f0996f592b5ce5 input=12919d549b90c90a]*/
16061619{
16071620 signed char * ncp ;
16081621 Py_ssize_t i ;
@@ -1723,8 +1736,9 @@ Decode an Intel/DVI ADPCM coded fragment to a linear fragment.
17231736[clinic start generated code]*/
17241737
17251738static PyObject *
1726- audioop_adpcm2lin_impl (PyModuleDef * module , Py_buffer * fragment , int width , PyObject * state )
1727- /*[clinic end generated code: output=371965cdcc0aa69b input=f5221144f5ca9ef0]*/
1739+ audioop_adpcm2lin_impl (PyModuleDef * module , Py_buffer * fragment , int width ,
1740+ PyObject * state )
1741+ /*[clinic end generated code: output=236cf6dc2c829181 input=f5221144f5ca9ef0]*/
17281742{
17291743 signed char * cp ;
17301744 signed char * ncp ;
0 commit comments