@@ -306,34 +306,6 @@ def test_audio_worklet_tone_generator(self):
306
306
def test_audio_worklet_modularize (self ):
307
307
self .btest ('webaudio/audioworklet.c' , expected = '0' , args = ['-sAUDIO_WORKLET' , '-sWASM_WORKERS' , '-sMINIMAL_RUNTIME' , '-sMODULARIZE' ])
308
308
309
- # Tests an AudioWorklet with multiple stereo inputs mixing in the processor to a single stereo output (4kB stack)
310
- def test_audio_worklet_stereo_io (self ):
311
- os .mkdir ('audio_files' )
312
- shutil .copy (test_file ('webaudio/audio_files/emscripten-beat.mp3' ), 'audio_files/' )
313
- shutil .copy (test_file ('webaudio/audio_files/emscripten-bass.mp3' ), 'audio_files/' )
314
- self .btest_exit ('webaudio/audioworklet_in_out_stereo.c' , args = ['-sAUDIO_WORKLET' , '-sWASM_WORKERS' ])
315
-
316
- # Tests an AudioWorklet with multiple stereo inputs copying in the processor to multiple stereo outputs (6kB stack)
317
- def test_audio_worklet_2x_stereo_io (self ):
318
- os .mkdir ('audio_files' )
319
- shutil .copy (test_file ('webaudio/audio_files/emscripten-beat.mp3' ), 'audio_files/' )
320
- shutil .copy (test_file ('webaudio/audio_files/emscripten-bass.mp3' ), 'audio_files/' )
321
- self .btest_exit ('webaudio/audioworklet_2x_in_out_stereo.c' , args = ['-sAUDIO_WORKLET' , '-sWASM_WORKERS' ])
322
-
323
- # Tests an AudioWorklet with multiple mono inputs mixing in the processor to a single mono output (2kB stack)
324
- def test_audio_worklet_mono_io (self ):
325
- os .mkdir ('audio_files' )
326
- shutil .copy (test_file ('webaudio/audio_files/emscripten-beat-mono.mp3' ), 'audio_files/' )
327
- shutil .copy (test_file ('webaudio/audio_files/emscripten-bass-mono.mp3' ), 'audio_files/' )
328
- self .btest_exit ('webaudio/audioworklet_in_out_mono.c' , args = ['-sAUDIO_WORKLET' , '-sWASM_WORKERS' ])
329
-
330
- # Tests an AudioWorklet with multiple mono inputs copying in the processor to L+R stereo outputs (3kB stack)
331
- def test_audio_worklet_2x_hard_pan_io (self ):
332
- os .mkdir ('audio_files' )
333
- shutil .copy (test_file ('webaudio/audio_files/emscripten-beat-mono.mp3' ), 'audio_files/' )
334
- shutil .copy (test_file ('webaudio/audio_files/emscripten-bass-mono.mp3' ), 'audio_files/' )
335
- self .btest_exit ('webaudio/audioworklet_2x_in_hard_pan.c' , args = ['-sAUDIO_WORKLET' , '-sWASM_WORKERS' ])
336
-
337
309
338
310
class interactive64 (interactive ):
339
311
def setUp (self ):
0 commit comments