Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/OpenAudio_ArduinoLibrary/commit/42b5fda1eb0b24c2d0c72de8231207bbe22191b6?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
AudioConvert_F32.h
@ -24,7 +24,7 @@ class AudioConvert_I16toF32 : public AudioStream_F32 //receive Int and transmits
}
}
//convert to float
//convert to float
convertAudio_I16toF32 ( int_block , float_block , AUDIO_BLOCK_SAMPLES ) ;
convertAudio_I16toF32 ( int_block , float_block , float_block - > length ) ;
//transmit the audio and return it to the system
//transmit the audio and return it to the system
AudioStream_F32 : : transmit ( float_block , 0 ) ;
AudioStream_F32 : : transmit ( float_block , 0 ) ;
@ -65,7 +65,7 @@ class AudioConvert_F32toI16 : public AudioStream_F32 //receive Float and transmi
}
}
//convert back to int16
//convert back to int16
convertAudio_F32toI16 ( float_block , int_block , AUDIO_BLOCK_SAMPLES ) ;
convertAudio_F32toI16 ( float_block , int_block , float_block - > length ) ;
//return audio to the system
//return audio to the system
AudioStream : : transmit ( int_block ) ;
AudioStream : : transmit ( int_block ) ;