From c4846a56c05b68da8156f8d7da9d7e4174182140 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 4 Jul 2022 22:27:08 +0100 Subject: [PATCH] Reenable audiofile seeking on wasm, which works now Signed-off-by: falkTX --- source/native-plugins/audio-base.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/source/native-plugins/audio-base.hpp b/source/native-plugins/audio-base.hpp index d7b8166ae..589be1113 100644 --- a/source/native-plugins/audio-base.hpp +++ b/source/native-plugins/audio-base.hpp @@ -18,7 +18,6 @@ #ifndef AUDIO_BASE_HPP_INCLUDED #define AUDIO_BASE_HPP_INCLUDED -#include "CarlaThread.hpp" #include "CarlaMathUtils.hpp" extern "C" { @@ -345,11 +344,6 @@ public: ad_dump_nfo(99, &fFileNfo); - #ifdef CARLA_OS_WASM - // FIXME pool handling with seeking and partial reads is failing - fFileNfo.can_seek = 0; - #endif - // Fix for misinformation using libsndfile if (fFileNfo.frames % fFileNfo.channels) --fFileNfo.frames;