similar to: Compiling opus with emscripten: malloc_hook

Displaying 20 results from an estimated 300 matches similar to: "Compiling opus with emscripten: malloc_hook"

2015 May 05
0
Compiling opus with emscripten: malloc_hook
On Tue, May 5, 2015 at 10:05 AM, Hraban Luyat <hraban at 0brg.net> wrote: > gets me quite far, but it hangs on the use of __malloc_hook in the tests: [...] > As a work-around, I just %s/__malloc_hook/malloc_hook/g. I don't need > the tests for emscripten so I don't care if this is correct or not. > > But does anyone know of a proper fix that could find its way back
2014 Jun 13
1
port Opus to Javascript using Emscripten
Hi there, We are interested in adopting Opus into our web based application for speech recording. I'm wondering if there is a plan to port Opus encoder and decoder to Javascript using Emscripten in the near future? Best Regards, Rachel Wu ETS.org ________________________________ This e-mail and any files transmitted with it may contain privileged or confidential information. It is solely
2019 Feb 20
2
Compile R to WebAssembly / Emscripten?
Has anyone attempted to compile R (probably without any OS bindings) to WebAssembly / Emscripten? If so, how far did you get? (would be crazy awesome if you could get all the way to a ggplot bitmap output). If not, is this a waste of time or is there some daylight to doing this? [[alternative HTML version deleted]]
2011 Dec 16
0
[LLVMdev] Emscripten: LLVM => JavaScript
On Thu, Dec 15, 2011 at 4:10 PM, Alon Zakai <azakai at mozilla.com> wrote: > On that topic, I see there is an LLVM users page, > > http://llvm.org/Users.html > > - what is the procedure for suggesting adding a project to > there? Send a patch to llvm-commits. > The third issue I want to raise is regarding closer > integration with LLVM. Right now, Emscripten uses
2019 Feb 20
0
Compile R to WebAssembly / Emscripten?
This was some time ago: https://stat.ethz.ch/pipermail/r-devel/2013-May/066724.html So probably not hopeless, but I would think it is a lot of work. Gabor On Wed, Feb 20, 2019 at 8:17 AM Todd Wilder <wildert at gmail.com> wrote: > > Has anyone attempted to compile R (probably without any OS bindings) to > WebAssembly / Emscripten? If so, how far did you get? (would be crazy >
2019 Feb 26
1
Compile R to WebAssembly / Emscripten?
As I recall, the major blocker is that R links against a number of other things (notably BLAS, pcre, etc) so while technically possible (?) I suppose, the universe of things you'd have to compile over and then get working is much larger than just the R internals. I think most people who consider this (including me years ago, as well as the poster of Gabor's message to rdevel) hit that
2014 Dec 31
0
port Opus to Javascript using Emscripten
> No one has done any work on an encoder in JS that I know of Just in case there is still someone looking for an opus encoder; the opusenc tool is now available on https://github.com/Rillke/opusenc.js Demo and project website: https://blog.rillke.com/opusenc.js/ -- Rillke -------------- next part -------------- An HTML attachment was scrubbed... URL:
2013 Jul 18
0
[LLVMdev] Try Emscripten in the browser
Here is a little toy I made in a couple days http://kompile.org/ -- Thanks, Brian Herman college.nfshost.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130717/adae5167/attachment.html>
2011 Dec 16
2
[LLVMdev] Emscripten: LLVM => JavaScript
Hi everyone, I wanted to mention a project using LLVM: Emscripten. Emscripten is an open source LLVM to JavaScript compiler, http://emscripten.org https://github.com/kripken/emscripten/ There are various demos linked to on the wiki (the first link), of various large C/C++ codebases compiled to JS and running on the web, like Python, Bullet, Poppler, etc. Emscripten is not a
2011 Dec 17
0
[LLVMdev] Emscripten: LLVM => JavaScript
On Fri, Dec 16, 2011 at 7:14 PM, Alon Zakai <azakai at mozilla.com> wrote: > > > ----- Original Message ----- >> From: "Eli Friedman" <eli.friedman at gmail.com> >> To: "Alon Zakai" <azakai at mozilla.com> >> Cc: llvmdev at cs.uiuc.edu >> Sent: Thursday, December 15, 2011 7:02:34 PM >> Subject: Re: [LLVMdev] Emscripten:
2011 Dec 17
3
[LLVMdev] Emscripten: LLVM => JavaScript
----- Original Message ----- > From: "Eli Friedman" <eli.friedman at gmail.com> > To: "Alon Zakai" <azakai at mozilla.com> > Cc: llvmdev at cs.uiuc.edu > Sent: Thursday, December 15, 2011 7:02:34 PM > Subject: Re: [LLVMdev] Emscripten: LLVM => JavaScript > On Thu, Dec 15, 2011 at 4:10 PM, Alon Zakai <azakai at mozilla.com> > wrote: >
2016 Jul 14
0
[PATCH 2/5] Optimize fixed-point celt_fir_c() for ARM NEON
Create the fixed-point intrinsics optimization celt_fir_neon() for ARM NEON. Create test tests/test_unit_optimization to unit test the optimization. --- .gitignore | 1 + Makefile.am | 39 ++++- celt/arm/arm_celt_map.c | 17 +++ celt/arm/celt_lpc_arm.h | 65 ++++++++ celt/arm/celt_lpc_neon_intr.c
2017 Oct 19
1
Test opus
Please report this failure and include 'make check SEED=0 fails tests/test_opus_api.c at line 1387 for libopus 1.1' and any relevant details about your system. Linux SBC-A62 3.14.28-a62-00001-gbed2e52 #31 SMP PREEMPT Thu Apr 21 12:54:03 CEST 2016 armv7l armv7l armv7l GNU/Linux Matteo Piersantelli Sales Manager <http://www.am-microsystems.com/> Mobile
2014 Jun 04
3
opus_multistream_encode_float not working in libopus 1.1
> > This is as expected. The build system is trying to get a git revision > string out of the source tree to compile in for reference. If you're > building from a downloaded source .zip, there won't be any git > information available and it will fall back to the hard-coded release > string. That's why the error isn't fatal to the build. Ok, this seems
2013 Dec 02
2
creating opus encoder and decoder executable on Windows
Hi all: How do I create opus encoder and decoder executable on Windows using MS Visual Studio 2010? What I'm doing is the following: 1. I downloaded the codebase on my local drive using: $ git clone git://git.opus-codec.org/opus.git 2. Then I go to D:\opus\win32\VS2010 and open the opus.sln using MS Visual Studio 2010. 3. Then I build the solution opus. I get 3 executable at
2017 Jul 05
0
opus 1.2.1 errors
Hello! You have errors there: silk_warped_autocorrelation_FLP MAX_SHAPE_LPC_ORDER was changed from 16 to 24, so array initialization is incorrect test_opus_api opus_encoder_ctl( enc, OPUS_SET_EXPERT_FRAME_DURATION ... ) returned status is incorrect. Best regards, Dmitriy -------------- next part -------------- An HTML attachment was scrubbed... URL:
2015 Aug 03
0
[PATCH 00/10] Patched cleaning up Opus x86 intrinsics configury
Thanks to Jean-Marc and Tim explaining 'git rebase -i' to me, I've factored my reorganization of the Opus Intrinsics configury into a number of hopefully more comprehensible (and thus more reviewable) pieces. This applies to the current tip of Opus Master in git. Viswanath's Ne10 changes require some slight modification to apply on top of these patches, but nothing major.
2017 Feb 08
0
make check error (opus 1.1.4)
Hi, On Sat, Jan 28, 2017 at 2:04 AM, Raghavan, Karthik < karthikr at qti.qualcomm.com> wrote: > Hi > > > > I am not sure if this issue has been resolved, but on the latest opus > 1.1.4, > > · I downloaded the tarball, > > · ran ./configure followed by > > · make and then > > · make check > > > > Can you
2017 Jan 28
2
make check error (opus 1.1.4)
Hi I am not sure if this issue has been resolved, but on the latest opus 1.1.4, * I downloaded the tarball, * ran ./configure followed by * make and then * make check Can you please help? Thank you make[3]: Entering directory `/prj/avspw/karthikr/Development/BFamily/Broadcast/SDM845/Opus/opus-1.1.4/doc' doxygen Warning: ignoring unsupported tag
2013 Dec 02
0
creating opus encoder and decoder executable on Windows
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><title></title> <META http-equiv=Content-Type content="text/html; charset=windows-1251"> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- body { margin: 5px 5px 5px 5px;